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

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

--
-- Table structure for table `wp9s_actionscheduler_actions`
--

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

--
-- Dumping data for table `wp9s_actionscheduler_actions`
--

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

--
-- Table structure for table `wp9s_actionscheduler_claims`
--

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

--
-- Dumping data for table `wp9s_actionscheduler_claims`
--

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

--
-- Table structure for table `wp9s_actionscheduler_groups`
--

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

--
-- Dumping data for table `wp9s_actionscheduler_groups`
--

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

--
-- Table structure for table `wp9s_actionscheduler_logs`
--

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

--
-- Dumping data for table `wp9s_actionscheduler_logs`
--

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

--
-- Table structure for table `wp9s_commentmeta`
--

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

--
-- Dumping data for table `wp9s_commentmeta`
--

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

--
-- Table structure for table `wp9s_comments`
--

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

--
-- Dumping data for table `wp9s_comments`
--

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

--
-- Table structure for table `wp9s_eg_grids`
--

DROP TABLE IF EXISTS `wp9s_eg_grids`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp9s_eg_grids` (
  `id` mediumint(6) NOT NULL AUTO_INCREMENT,
  `name` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `handle` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `postparams` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `params` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `layers` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `settings` text COLLATE utf8mb4_unicode_520_ci,
  `last_modified` datetime DEFAULT NULL,
  UNIQUE KEY `id` (`id`),
  UNIQUE KEY `handle` (`handle`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9s_eg_grids`
--

LOCK TABLES `wp9s_eg_grids` WRITE;
/*!40000 ALTER TABLE `wp9s_eg_grids` DISABLE KEYS */;
INSERT INTO `wp9s_eg_grids` VALUES (1,'home grid 1','home grid 1','{\"source-type\":\"custom\",\"post_types\":\"post\",\"post_category\":\"\",\"category-relation\":\"OR\",\"additional-query\":\"\",\"selected_pages\":\"\",\"max_entries\":\"-1\",\"max_entries_preview\":\"20\",\"stream-source-type\":\"instagram\",\"youtube-api\":\"\",\"youtube-channel-id\":\"\",\"youtube-type-source\":\"channel\",\"youtube-playlist\":\"\",\"youtube-playlist-select\":\"\",\"youtube-thumb-size\":\"default\",\"youtube-full-size\":\"default\",\"youtube-count\":\"12\",\"youtube-transient-sec\":\"86400\",\"vimeo-type-source\":\"user\",\"vimeo-username\":\"\",\"vimeo-groupname\":\"\",\"vimeo-albumid\":\"\",\"vimeo-channelname\":\"\",\"vimeo-thumb-size\":\"thumbnail_small\",\"vimeo-count\":\"12\",\"vimeo-transient-sec\":\"86400\",\"instagram-token-source\":\"account\",\"instagram-connected-to\":\"\",\"instagram-api-key\":\"\",\"instagram-count\":\"12\",\"instagram-transient-sec\":\"86400\",\"flickr-api-key\":\"\",\"flickr-type\":\"publicphotos\",\"flickr-user-url\":\"\",\"flickr-photoset\":\"\",\"flickr-photoset-select\":\"\",\"flickr-gallery-url\":\"\",\"flickr-group-url\":\"\",\"flickr-thumb-size\":\"Small 320\",\"flickr-full-size\":\"Medium 800\",\"flickr-count\":\"12\",\"flickr-transient-sec\":\"86400\",\"facebook-access-token\":\"\",\"facebook-page-url\":\"\",\"facebook-type-source\":\"timeline\",\"facebook-album\":\"\",\"facebook-album-select\":\"\",\"facebook-count\":\"12\",\"facebook-transient-sec\":\"86400\",\"twitter-consumer-key\":\"\",\"twitter-consumer-secret\":\"\",\"twitter-access-token\":\"\",\"twitter-access-secret\":\"\",\"twitter-user-id\":\"\",\"twitter-image-only\":\"true\",\"twitter-include-retweets\":\"on\",\"twitter-exclude-replies\":\"on\",\"twitter-count\":\"12\",\"twitter-transient-sec\":\"86400\",\"behance-api\":\"\",\"behance-user-id\":\"\",\"behance-type\":\"projects\",\"behance-project\":\"\",\"behance-project-select\":\"\",\"behance-projects-thumb-size\":\"202\",\"behance-projects-full-size\":\"202\",\"behance-project-thumb-size\":\"max_1240\",\"behance-project-full-size\":\"disp\",\"behance-count\":\"12\",\"behance-transient-sec\":\"86400\",\"dribbble-api\":\"\",\"media-source-order\":[\"featured-image\"],\"poster-source-order\":[\"featured-image\"],\"image-source-type\":\"full\",\"image-source-type-mobile\":\"full\",\"default-image\":\"\",\"youtube-default-image\":\"\",\"vimeo-default-image\":\"\",\"html-default-image\":\"\"}','{\"layout-sizing\":\"boxed\",\"fullscreen-offset-container\":\"\",\"layout\":\"even\",\"content-push\":\"off\",\"x-ratio\":\"4\",\"y-ratio\":\"3\",\"auto-ratio\":\"true\",\"rtl\":\"off\",\"videoplaybackingrid\":\"on\",\"videoplaybackonhover\":\"off\",\"videocontrolsinline\":\"off\",\"videomuteinline\":\"on\",\"keeplayersovermedia\":\"off\",\"show-even-on-device\":\"0\",\"use-cobbles-pattern\":\"off\",\"columns-advanced\":\"off\",\"columns-height\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"columns-width\":[\"1400\",\"1170\",\"1024\",\"960\",\"778\",\"640\",\"480\"],\"mascontent-height\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"columns\":[\"4\",\"4\",\"4\",\"2\",\"2\",\"2\",\"1\"],\"blank-item-breakpoint\":\"1\",\"rows-unlimited\":\"off\",\"rows\":\"3\",\"enable-rows-mobile\":\"off\",\"rows-mobile\":\"3\",\"pagination-autoplay\":\"off\",\"pagination-autoplay-speed\":\"5000\",\"pagination-touchswipe\":\"off\",\"pagination-dragvertical\":\"on\",\"pagination-swipebuffer\":\"30\",\"load-more\":\"none\",\"load-more-hide\":\"off\",\"load-more-text\":\"Load More\",\"load-more-show-number\":\"on\",\"load-more-start\":\"3\",\"load-more-amount\":\"3\",\"lazy-loading\":\"off\",\"lazy-loading-blur\":\"on\",\"lazy-load-color\":\"#FFFFFF\",\"spacings\":\"10\",\"grid-padding\":[\"0\",\"0\",\"0\",\"0\"],\"main-background-color\":\"transparent\",\"navigation-skin\":\"minimal-light\",\"navigation-preview-bg\":\"dark\",\"0\":\"\",\"entry-skin\":\"1\",\"grid-start-animation\":\"reveal\",\"hide-markup-before-load\":\"on\",\"grid-start-animation-speed\":\"1000\",\"grid-start-animation-delay\":\"100\",\"grid-start-animation-type\":\"item\",\"start-anime-in-viewport\":\"off\",\"start-anime-viewport-buffer\":\"20\",\"grid-animation\":\"fade\",\"grid-animation-speed\":\"1000\",\"grid-animation-delay\":\"1\",\"grid-animation-type\":\"item\",\"grid-item-animation\":\"none\",\"grid-item-animation-zoomin\":\"125\",\"grid-item-animation-zoomout\":\"75\",\"grid-item-animation-fade\":\"75\",\"grid-item-animation-blur\":\"5\",\"grid-item-animation-rotate\":\"30\",\"grid-item-animation-shift\":\"up\",\"grid-item-animation-shift-amount\":\"10\",\"grid-item-animation-other\":\"none\",\"grid-item-other-zoomin\":\"125\",\"grid-item-other-zoomout\":\"75\",\"grid-item-other-fade\":\"75\",\"grid-item-other-blur\":\"5\",\"grid-item-other-rotate\":\"30\",\"grid-item-other-shift\":\"up\",\"grid-item-other-shift-amount\":\"10\",\"top-1-align\":\"center\",\"top-1-margin-bottom\":\"0\",\"top-2-align\":\"center\",\"top-2-margin-bottom\":\"0\",\"bottom-1-align\":\"center\",\"bottom-1-margin-top\":\"0\",\"bottom-2-align\":\"center\",\"bottom-2-margin-top\":\"0\",\"left-margin-left\":\"0\",\"right-margin-right\":\"0\",\"module-spacings\":\"5\",\"pagination-numbers\":\"smart\",\"pagination-scroll\":\"off\",\"pagination-scroll-offset\":\"0\",\"filter-arrows\":\"single\",\"filter-logic\":\"or\",\"add-filters-by\":\"default\",\"filter-start\":\"\",\"filter-deep-link\":\"off\",\"filter-show-on\":\"hover\",\"convert-mobile-filters\":\"off\",\"filter-all-visible\":\"on\",\"filter-all-text\":\"Filter - All\",\"filter-listing\":\"list\",\"filter-dropdown-text\":\"Filter Categories\",\"filter-counter\":\"off\",\"sort-by-text\":\"Sort By \",\"sorting-order-by\":\"date\",\"sorting-order-by-start\":\"none\",\"sorting-order-by-start-meta\":\"\",\"sorting-order-type\":\"ASC\",\"search-text\":\"Search...\",\"lb-source-order\":[\"featured-image\"],\"lightbox-mode\":\"single\",\"lightbox-exclude-media\":\"off\",\"lightbox-deep-link\":\"group\",\"lightbox-videoautoplay\":\"on\",\"lightbox-title\":\"off\",\"lbox-padding\":[\"0\",\"0\",\"0\",\"0\"],\"lightbox-effect-open-close\":\"fade\",\"lightbox-effect-open-close-speed\":\"500\",\"lightbox-effect-next-prev\":\"fade\",\"lightbox-effect-next-prev-speed\":\"500\",\"lightbox-autoplay\":\"off\",\"lbox-playspeed\":\"3000\",\"lightbox-arrows\":\"on\",\"lightbox-loop\":\"on\",\"lightbox-numbers\":\"on\",\"lightbox-mousewheel\":\"off\",\"lb-button-order\":[\"share\",\"thumbs\",\"close\"],\"lightbox-post-content-min-width\":\"75\",\"lightbox-post-content-min-perc\":\"on\",\"lightbox-post-content-max-width\":\"75\",\"lightbox-post-content-max-perc\":\"on\",\"lightbox-post-content-overflow\":\"on\",\"lbox-content_padding\":[\"0\",\"0\",\"0\",\"0\"],\"lightbox-post-spinner\":\"off\",\"lightbox-post-content-img\":\"off\",\"lightbox-post-content-img-position\":\"top\",\"lightbox-post-content-img-width\":\"50\",\"lightbox-post-content-img-margin\":[\"0\",\"0\",\"0\",\"0\"],\"lightbox-post-content-title\":\"off\",\"lightbox-post-content-title-tag\":\"h2\",\"aj-source-order\":[\"post-content\"],\"ajax-container-id\":\"ess-grid-ajax-container-\",\"ajax-container-position\":\"top\",\"ajax-scroll-onload\":\"on\",\"ajax-scrollto-offset\":\"0\",\"ajax-close-button\":\"off\",\"ajax-button-text\":\"Close\",\"ajax-nav-button\":\"off\",\"ajax-button-skin\":\"light\",\"ajax-button-type\":\"type1\",\"ajax-button-inner\":\"false\",\"ajax-button-h-pos\":\"r\",\"ajax-button-v-pos\":\"t\",\"ajax-container-pre\":\"\",\"ajax-container-post\":\"\",\"ajax-container-css\":\"\",\"ajax-callback\":\"\",\"ajax-callback-arg\":\"false\",\"ajax-css-url\":\"\",\"ajax-js-url\":\"\",\"use-spinner\":\"0\",\"spinner-color\":\"#FFFFFF\",\"custom-javascript\":\"\",\"cookie-save-time\":\"30\",\"cookie-save-search\":\"off\",\"cookie-save-filter\":\"off\",\"cookie-save-pagination\":\"off\",\"css-id\":\"\"}','[\"{\\\"custom-type\\\":\\\"image\\\",\\\"custom-image\\\":\\\"4120\\\",\\\"custom-ratio\\\":\\\"1\\\",\\\"cobbles-size\\\":\\\"1:1\\\",\\\"use-skin\\\":\\\"-1\\\",\\\"title\\\":\\\"pinball machines\\\",\\\"post_url\\\":\\\"#\\\",\\\"image-fit\\\":\\\"-1\\\",\\\"image-repeat\\\":\\\"-1\\\",\\\"image-align-horizontal\\\":\\\"-1\\\",\\\"image-align-vertical\\\":\\\"-1\\\"}\",\"{\\\"custom-type\\\":\\\"image\\\",\\\"custom-image\\\":\\\"4365\\\",\\\"custom-ratio\\\":\\\"1\\\",\\\"cobbles-size\\\":\\\"1:1\\\",\\\"use-skin\\\":\\\"-1\\\",\\\"title\\\":\\\"Dart Boards\\\",\\\"image-fit\\\":\\\"-1\\\",\\\"image-repeat\\\":\\\"-1\\\",\\\"image-align-horizontal\\\":\\\"-1\\\",\\\"image-align-vertical\\\":\\\"-1\\\"}\",\"{\\\"custom-type\\\":\\\"image\\\",\\\"custom-image\\\":\\\"4125\\\",\\\"custom-ratio\\\":\\\"1\\\",\\\"cobbles-size\\\":\\\"1:1\\\",\\\"use-skin\\\":\\\"-1\\\",\\\"title\\\":\\\"touch tunes\\\",\\\"image-fit\\\":\\\"-1\\\",\\\"image-repeat\\\":\\\"-1\\\",\\\"image-align-horizontal\\\":\\\"-1\\\",\\\"image-align-vertical\\\":\\\"-1\\\"}\",\"{\\\"custom-type\\\":\\\"image\\\",\\\"custom-image\\\":\\\"4121\\\",\\\"custom-ratio\\\":\\\"1\\\",\\\"cobbles-size\\\":\\\"1:1\\\",\\\"use-skin\\\":\\\"-1\\\",\\\"title\\\":\\\"GAMES\\\",\\\"image-fit\\\":\\\"-1\\\",\\\"image-repeat\\\":\\\"-1\\\",\\\"image-align-horizontal\\\":\\\"-1\\\",\\\"image-align-vertical\\\":\\\"-1\\\"}\",\"{\\\"custom-type\\\":\\\"image\\\",\\\"custom-image\\\":\\\"4122\\\",\\\"custom-ratio\\\":\\\"1\\\",\\\"cobbles-size\\\":\\\"1:1\\\",\\\"use-skin\\\":\\\"-1\\\",\\\"title\\\":\\\"Pool tables\\\",\\\"image-fit\\\":\\\"-1\\\",\\\"image-repeat\\\":\\\"-1\\\",\\\"image-align-horizontal\\\":\\\"-1\\\",\\\"image-align-vertical\\\":\\\"-1\\\"}\",\"{\\\"custom-type\\\":\\\"image\\\",\\\"custom-image\\\":\\\"4372\\\",\\\"custom-ratio\\\":\\\"1\\\",\\\"cobbles-size\\\":\\\"1:1\\\",\\\"use-skin\\\":\\\"-1\\\",\\\"title\\\":\\\"Juke Boxes\\\",\\\"image-fit\\\":\\\"-1\\\",\\\"image-repeat\\\":\\\"-1\\\",\\\"image-align-horizontal\\\":\\\"-1\\\",\\\"image-align-vertical\\\":\\\"-1\\\"}\",\"{\\\"custom-type\\\":\\\"image\\\",\\\"custom-image\\\":\\\"4371\\\",\\\"custom-ratio\\\":\\\"1\\\",\\\"cobbles-size\\\":\\\"1:1\\\",\\\"use-skin\\\":\\\"-1\\\",\\\"title\\\":\\\"ATM\'s\\\",\\\"image-fit\\\":\\\"-1\\\",\\\"image-repeat\\\":\\\"-1\\\",\\\"image-align-horizontal\\\":\\\"-1\\\",\\\"image-align-vertical\\\":\\\"-1\\\"}\",\"{\\\"custom-type\\\":\\\"image\\\",\\\"custom-image\\\":\\\"4383\\\",\\\"custom-ratio\\\":\\\"1\\\",\\\"cobbles-size\\\":\\\"1:1\\\",\\\"use-skin\\\":\\\"-1\\\",\\\"title\\\":\\\"Ski Ball\\\",\\\"image-fit\\\":\\\"-1\\\",\\\"image-repeat\\\":\\\"-1\\\",\\\"image-align-horizontal\\\":\\\"-1\\\",\\\"image-align-vertical\\\":\\\"-1\\\"}\"]',NULL,'2021-04-14 23:26:38');
/*!40000 ALTER TABLE `wp9s_eg_grids` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp9s_eg_item_elements`
--

DROP TABLE IF EXISTS `wp9s_eg_item_elements`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp9s_eg_item_elements` (
  `id` mediumint(6) NOT NULL AUTO_INCREMENT,
  `name` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `handle` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `settings` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  UNIQUE KEY `id` (`id`),
  UNIQUE KEY `handle` (`handle`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9s_eg_item_elements`
--

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

--
-- Table structure for table `wp9s_eg_item_skins`
--

DROP TABLE IF EXISTS `wp9s_eg_item_skins`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp9s_eg_item_skins` (
  `id` mediumint(6) NOT NULL AUTO_INCREMENT,
  `name` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `handle` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `params` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `layers` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `settings` text COLLATE utf8mb4_unicode_520_ci,
  UNIQUE KEY `id` (`id`),
  UNIQUE KEY `name` (`name`),
  UNIQUE KEY `handle` (`handle`)
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9s_eg_item_skins`
--

LOCK TABLES `wp9s_eg_item_skins` WRITE;
/*!40000 ALTER TABLE `wp9s_eg_item_skins` DISABLE KEYS */;
INSERT INTO `wp9s_eg_item_skins` VALUES (1,'Washington','washington','{\"eg-item-skin-element-last-id\":\"11\",\"choose-layout\":\"even\",\"show-content\":\"bottom\",\"content-align\":\"left\",\"image-repeat\":\"no-repeat\",\"image-fit\":\"cover\",\"image-align-horizontal\":\"center\",\"image-align-vertical\":\"center\",\"element-x-ratio\":\"4\",\"element-y-ratio\":\"3\",\"splitted-item\":\"none\",\"cover-type\":\"full\",\"cover-blend-mode\":\"normal\",\"container-background-color\":\"rgba(0, 0, 0, 0.21)\",\"cover-always-visible-desktop\":\"true\",\"cover-always-visible-mobile\":\"true\",\"cover-background-size\":\"cover\",\"cover-background-repeat\":\"no-repeat\",\"cover-background-image\":\"0\",\"cover-background-image-url\":\"\",\"full-bg-color\":\"#3f424a\",\"full-padding\":[\"0\",\"0\",\"0\",\"0\"],\"full-border\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-radius-type\":\"px\",\"full-border-color\":\"transparent\",\"full-border-style\":\"none\",\"full-overflow-hidden\":\"false\",\"content-bg-color\":\"#ffffff\",\"content-padding\":[\"0\",\"0\",\"0\",\"0\"],\"content-border\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-radius-type\":\"px\",\"content-border-color\":\"transparent\",\"content-border-style\":\"double\",\"all-shadow-used\":\"none\",\"content-shadow-color\":\"rgba(0,0,0,1)\",\"content-box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"content-box-shadow-inset\":\"false\",\"content-box-shadow-hover\":\"false\",\"cover-animation-top\":\"fade\",\"cover-animation-duration-top\":\"default\",\"cover-animation-top-type\":\"\",\"cover-animation-delay-top\":\"0\",\"cover-animation-color-top\":\"#FFFFFF\",\"cover-animation-center\":\"fade\",\"cover-animation-duration-center\":\"default\",\"cover-animation-center-type\":\"\",\"cover-animation-delay-center\":\"0\",\"cover-animation-color-center\":\"#FFFFFF\",\"cover-animation-bottom\":\"fade\",\"cover-animation-duration-bottom\":\"default\",\"cover-animation-bottom-type\":\"\",\"cover-animation-delay-bottom\":\"0\",\"cover-animation-color-bottom\":\"#FFFFFF\",\"cover-group-animation\":\"fade\",\"cover-group-animation-duration\":\"default\",\"cover-group-animation-delay\":\"0\",\"media-animation\":\"none\",\"media-animation-duration\":\"default\",\"media-animation-delay\":\"0\",\"media-animation-blur\":\"5\",\"element-hover-image\":\"false\",\"hover-image-animation\":\"fade\",\"hover-image-animation-duration\":\"default\",\"hover-image-animation-delay\":\"0\",\"link-set-to\":\"none\",\"link-link-type\":\"none\",\"link-target\":\"_self\",\"link-url-link\":\"\",\"link-meta-link\":\"\",\"link-javascript-link\":\"\"}','[{\"id\":\"8\",\"order\":\"0\",\"container\":\"c\",\"settings\":{\"background-color\":\"rgba(255,255,255,0.20)\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"solid\",\"shadow-color\":\"rgba(0,0,0,1)\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"hide-on-video\":\"false\",\"enable-hover\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-color-hover\":\"transparent\",\"border-style-hover\":\"solid\",\"background-color-hover\":\"rgba(255,255,255,1)\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\",\"min-height\":\"0\",\"max-height\":\"none\",\"duration\":\"default\",\"letter-spacing\":\"normal\",\"letter-spacing-hover\":\"normal\",\"source-function\":\"link\",\"hideunderheight\":\"0\",\"hidetype\":\"visibility\",\"show-on-lightbox-video\":\"false\",\"link-target\":\"_self\",\"source-text-style-disable\":\"\",\"source-text\":\"LINE-BREAK\"}},{\"id\":\"11\",\"order\":\"0\",\"container\":\"br\",\"settings\":{\"0\":\"Default\",\"source\":\"text\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"enable-hover\":\"on\",\"font-size\":\"13\",\"line-height\":\"30\",\"color\":\"#ffffff\",\"font-weight\":\"800\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"position\":\"relative\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"30\",\"3\":\"0\"},\"padding\":{\"0\":\"3\",\"1\":\"15\",\"2\":\"2\",\"3\":\"15\"},\"background-color\":\"#ff1000\",\"shadow-color\":\"transparent\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"3\",\"1\":\"3\",\"2\":\"3\",\"3\":\"3\"},\"border-radius-unit\":\"px\",\"border-color\":\"#617f52\",\"border-style\":\"solid\",\"font-size-hover\":\"13\",\"line-height-hover\":\"30\",\"color-hover\":\"#ffffff\",\"font-weight-hover\":\"800\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#007aff\",\"shadow-color-hover\":\"transparent\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"3\",\"1\":\"3\",\"2\":\"3\",\"3\":\"3\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#617f52\",\"border-style-hover\":\"solid\",\"hideunder\":\"0\",\"hide-on-video\":\"false\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"transition\":\"flipup\",\"transition-type\":\"\",\"duration\":\"default\",\"delay\":\"0\",\"link-type\":\"none\",\"url-link\":\"\",\"meta-link\":\"\",\"javascript-link\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"font-family\":\"\",\"letter-spacing\":\"normal\",\"margin-unit\":\"px\",\"source-function\":\"link\",\"min-height\":\"0\",\"max-height\":\"none\",\"hideunderheight\":\"0\",\"hidetype\":\"visibility\",\"show-on-lightbox-video\":\"false\",\"link-target\":\"_self\",\"source-text-style-disable\":\"\",\"font-family-hover\":\"\",\"letter-spacing-hover\":\"normal\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"source-text\":\"Learn More\"}},{\"id\":\"3\",\"order\":\"1\",\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"22\",\"line-height\":\"24\",\"color\":\"#ffffff\",\"font-family\":\"Arial, Helvetica, sans-serif\",\"font-weight\":\"700\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"15\",\"0\",\"0\",\"0\"],\"padding\":[\"5\",\"10\",\"5\",\"10\"],\"background-color\":\"rgba(0, 0, 0, 0.33)\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"rgba(0,0,0,1)\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"22\",\"line-height-hover\":\"24\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"Arial, Helvetica, sans-serif\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"uppercase\",\"background-color-hover\":\"rgba(0, 0, 0, 0.33)\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"flipup\",\"delay\":\"10\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"hide-on-video\":\"false\",\"always-visible-desktop\":\"true\",\"always-visible-mobile\":\"true\",\"min-height\":\"0\",\"max-height\":\"none\",\"duration\":\"default\",\"letter-spacing\":\"normal\",\"letter-spacing-hover\":\"normal\",\"source-taxonomy\":\"post_tag\",\"source-function\":\"link\",\"hideunderheight\":\"0\",\"hidetype\":\"visibility\",\"show-on-lightbox-video\":\"false\",\"link-target\":\"_self\",\"source-text-style-disable\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-post\":\"title\"}},{\"id\":\"9\",\"order\":\"2\",\"container\":\"c\",\"settings\":{\"background-color\":\"rgba(255,255,255,0.20)\",\"bg-alpha\":\"100\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"solid\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"hide-on-video\":\"\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-color-hover\":\"transparent\",\"border-style-hover\":\"solid\",\"background-color-hover\":\"rgba(255,255,255,1)\",\"bg-alpha-hover\":\"100\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-text\":\"LINE-BREAK\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\",\"min-height\":\"0\",\"max-height\":\"none\",\"duration\":\"default\",\"letter-spacing\":\"normal\",\"letter-spacing-hover\":\"normal\"}}]',NULL),(2,'Adams','adams','{\"eg-item-skin-element-last-id\":\"8\",\"choose-layout\":\"even\",\"show-content\":\"bottom\",\"content-align\":\"left\",\"element-x-ratio\":\"4\",\"element-y-ratio\":\"3\",\"cover-type\":\"full\",\"container-background-color\":\"rgba(137,175,114,1)\",\"0\":\"Default\",\"element-container-background-color-opacity\":\"100\",\"cover-background-size\":\"cover\",\"cover-background-repeat\":\"no-repeat\",\"cover-background-image\":\"0\",\"cover-background-image-url\":\"\",\"full-bg-color\":\"transparent\",\"full-padding\":[\"0\",\"0\",\"0\",\"0\"],\"full-border\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-color\":\"transparent\",\"full-border-style\":\"none\",\"full-overflow-hidden\":\"false\",\"content-bg-color\":\"#ffffff\",\"content-padding\":[\"0\",\"0\",\"0\",\"0\"],\"content-border\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-color\":\"transparent\",\"content-border-style\":\"double\",\"all-shadow-used\":\"none\",\"content-shadow-color\":\"rgba(0,0,0,1)\",\"content-shadow-alpha\":\"100\",\"content-box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"cover-animation-top-type\":\"\",\"cover-animation-delay-top\":\"0\",\"cover-animation-top\":\"fade\",\"cover-animation-center-type\":\"\",\"cover-animation-delay-center\":\"10\",\"cover-animation-center\":\"flipleft\",\"cover-animation-bottom-type\":\"\",\"cover-animation-delay-bottom\":\"0\",\"cover-animation-bottom\":\"fade\",\"cover-group-animation\":\"none\",\"media-animation\":\"turnout\",\"media-animation-delay\":\"0\"}','[{\"id\":\"0\",\"order\":0,\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"icon\",\"enable-hover\":\"on\",\"font-size\":\"16\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":[\"0\",\"10\",\"0\",\"0\"],\"padding\":[\"17\",\"17\",\"17\",\"17\"],\"background-color\":\"transparent\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"2\",\"2\",\"2\",\"2\"],\"border-radius\":[\"60\",\"60\",\"60\",\"60\"],\"border-radius-unit\":\"px\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"font-size-hover\":\"16\",\"line-height-hover\":\"22\",\"color-hover\":\"#000000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"rgba(255,255,255,1)\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"2\",\"2\",\"2\",\"2\"],\"border-radius-hover\":[\"60\",\"60\",\"60\",\"60\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"hideunder\":\"0\",\"transition\":\"slideright\",\"delay\":\"10\",\"link-type\":\"lightbox\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"css\":\".eg-adams-element-0{}\",\"css-hover\":\".eg-adams-element-0{}\",\"transition-type\":\"\",\"position\":\"relative\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"tag-type\":\"div\",\"align\":\"t_l\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"force-important\":\"true\",\"absolute-unit\":\"px\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-icon\":\"eg-icon-search\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\"}},{\"id\":\"1\",\"order\":1,\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"icon\",\"enable-hover\":\"on\",\"font-size\":\"16\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":[\"0\",\"10\",\"0\",\"0\"],\"padding\":[\"17\",\"17\",\"17\",\"17\"],\"background-color\":\"transparent\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"2\",\"2\",\"2\",\"2\"],\"border-radius\":[\"60\",\"60\",\"60\",\"60\"],\"border-radius-unit\":\"px\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"font-size-hover\":\"16\",\"line-height-hover\":\"22\",\"color-hover\":\"#000000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"rgba(255,255,255,1)\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"2\",\"2\",\"2\",\"2\"],\"border-radius-hover\":[\"60\",\"60\",\"60\",\"60\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"hideunder\":\"0\",\"transition\":\"slideleft\",\"delay\":\"20\",\"link-type\":\"post\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-icon\":\"eg-icon-link\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\"}},null,{\"id\":\"3\",\"order\":4,\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"13\",\"line-height\":\"20\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"700\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"15\",\"0\",\"0\",\"0\"],\"padding\":[\"5\",\"10\",\"5\",\"10\"],\"background-color\":\"rgba(255,255,255,0.15)\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"uppercase\",\"background-color-hover\":\"rgba(255,255,255,0.15)\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"zoomfront\",\"delay\":\"20\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"transition-type\":\"\",\"css\":\".eg-adams-element-3{}\",\"position\":\"relative\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"align\":\"t_l\",\"css-hover\":\".eg-adams-element-3{}\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"force-important\":\"\",\"absolute-unit\":\"px\",\"source-post\":\"title\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\"}},null,{\"id\":\"5\",\"order\":7,\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"13\",\"line-height\":\"20\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"5\",\"10\",\"5\",\"10\"],\"background-color\":\"rgba(255,255,255,0.15)\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"300\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"rgba(255,255,255,0.15)\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"zoomfront\",\"delay\":\"20\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"transition-type\":\"\",\"css\":\".eg-adams-element-5{}\",\"position\":\"relative\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"tag-type\":\"div\",\"align\":\"t_l\",\"css-hover\":\".eg-adams-element-5{}\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"limit-type\":\"words\",\"limit-num\":\"6\",\"force-important\":\"\",\"absolute-unit\":\"px\",\"source-post\":\"excerpt\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\"}},{\"id\":\"7\",\"order\":2,\"container\":\"c\",\"settings\":{\"background-color\":\"rgba(255,255,255,0.20)\",\"bg-alpha\":\"100\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"solid\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"hide-on-video\":\"\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-color-hover\":\"transparent\",\"border-style-hover\":\"solid\",\"background-color-hover\":\"rgba(255,255,255,1)\",\"bg-alpha-hover\":\"100\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-text\":\"LINE-BREAK\",\"always-visible-desktop\":\"true\",\"always-visible-mobile\":\"true\"}},{\"id\":\"8\",\"order\":5,\"container\":\"c\",\"settings\":{\"background-color\":\"rgba(255,255,255,0.20)\",\"bg-alpha\":\"100\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"solid\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"hide-on-video\":\"\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-color-hover\":\"transparent\",\"border-style-hover\":\"solid\",\"background-color-hover\":\"rgba(255,255,255,1)\",\"bg-alpha-hover\":\"100\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-text\":\"LINE-BREAK\",\"always-visible-desktop\":\"true\",\"always-visible-mobile\":\"true\"}}]',NULL),(3,'Jefferson','jefferson','{\"eg-item-skin-element-last-id\":\"8\",\"choose-layout\":\"even\",\"show-content\":\"bottom\",\"content-align\":\"left\",\"element-x-ratio\":\"4\",\"element-y-ratio\":\"3\",\"cover-type\":\"full\",\"container-background-color\":\"rgba(227,58,12,1)\",\"0\":\"Default\",\"element-container-background-color-opacity\":\"100\",\"cover-background-size\":\"cover\",\"cover-background-repeat\":\"no-repeat\",\"cover-background-image\":\"0\",\"cover-background-image-url\":\"\",\"full-bg-color\":\"#ffffff\",\"full-padding\":[\"0\",\"0\",\"0\",\"0\"],\"full-border\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-color\":\"transparent\",\"full-border-style\":\"none\",\"full-overflow-hidden\":\"false\",\"content-bg-color\":\"#ffffff\",\"content-padding\":[\"0\",\"0\",\"0\",\"0\"],\"content-border\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-color\":\"transparent\",\"content-border-style\":\"none\",\"all-shadow-used\":\"none\",\"content-shadow-color\":\"rgba(0,0,0,1)\",\"content-shadow-alpha\":\"100\",\"content-box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"cover-animation-top-type\":\"\",\"cover-animation-delay-top\":\"0\",\"cover-animation-top\":\"fade\",\"cover-animation-center-type\":\"\",\"cover-animation-delay-center\":\"0\",\"cover-animation-center\":\"fliphorizontal\",\"cover-animation-bottom-type\":\"\",\"cover-animation-delay-bottom\":\"0\",\"cover-animation-bottom\":\"fade\",\"cover-group-animation\":\"fade\",\"media-animation\":\"fliphorizontalout\",\"media-animation-delay\":\"0\"}','[{\"id\":\"0\",\"order\":0,\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"icon\",\"enable-hover\":\"on\",\"font-size\":\"16\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":[\"0\",\"10\",\"0\",\"0\"],\"padding\":[\"17\",\"17\",\"17\",\"17\"],\"background-color\":\"rgba(255,255,255,0.15)\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"60\",\"60\",\"60\",\"60\"],\"border-radius-unit\":\"px\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"font-size-hover\":\"16\",\"line-height-hover\":\"22\",\"color-hover\":\"#e33a0c\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"rgba(255,255,255,1)\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"60\",\"60\",\"60\",\"60\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"hideunder\":\"0\",\"transition\":\"slideup\",\"delay\":\"46\",\"link-type\":\"post\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"transition-type\":\"\",\"css\":\"\",\"position\":\"relative\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"tag-type\":\"div\",\"align\":\"t_l\",\"css-hover\":\"\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"force-important\":\"\",\"absolute-unit\":\"px\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-icon\":\"eg-icon-link\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\"}},{\"id\":\"1\",\"order\":1,\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"icon\",\"enable-hover\":\"on\",\"font-size\":\"16\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"17\",\"17\",\"17\",\"17\"],\"background-color\":\"rgba(255,255,255,0.15)\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"60\",\"60\",\"60\",\"60\"],\"border-radius-unit\":\"px\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"font-size-hover\":\"16\",\"line-height-hover\":\"22\",\"color-hover\":\"#e33a0c\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"rgba(255,255,255,1)\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"60\",\"60\",\"60\",\"60\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"hideunder\":\"0\",\"transition\":\"slidedown\",\"delay\":\"50\",\"link-type\":\"lightbox\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-icon\":\"eg-icon-search\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\"}},null,{\"id\":\"3\",\"order\":3,\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"17\",\"line-height\":\"20\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"800\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"10\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"transparent\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"17\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"uppercase\",\"background-color-hover\":\"rgba(255,255,255,0.15)\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"zoomfront\",\"delay\":\"60\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"transition-type\":\"\",\"css\":\"\",\"position\":\"relative\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"align\":\"t_l\",\"css-hover\":\"\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"force-important\":\"\",\"absolute-unit\":\"px\",\"source-post\":\"title\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\"}},null,{\"id\":\"5\",\"order\":6,\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"post\",\"enable-hover\":\"on\",\"font-size\":\"12\",\"line-height\":\"20\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"1\",\"5\",\"1\",\"5\"],\"background-color\":\"rgba(255,255,255,0.15)\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"3\",\"3\",\"3\",\"3\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"12\",\"line-height-hover\":\"20\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"rgba(0,0,0,0.15)\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"3\",\"3\",\"3\",\"3\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"zoomfront\",\"delay\":\"70\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"transition-type\":\"\",\"css\":\"\",\"position\":\"relative\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"tag-type\":\"div\",\"align\":\"t_l\",\"css-hover\":\"\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\"   \",\"limit-type\":\"words\",\"limit-num\":\"10\",\"force-important\":\"\",\"absolute-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"source-post\":\"cat_list\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\"}},{\"id\":\"7\",\"order\":2,\"container\":\"c\",\"settings\":{\"background-color\":\"rgba(255,255,255,0.20)\",\"bg-alpha\":\"100\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"solid\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"hide-on-video\":\"\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-color-hover\":\"transparent\",\"border-style-hover\":\"solid\",\"background-color-hover\":\"rgba(255,255,255,1)\",\"bg-alpha-hover\":\"100\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-text\":\"LINE-BREAK\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\"}},{\"id\":\"8\",\"order\":4,\"container\":\"c\",\"settings\":{\"background-color\":\"rgba(255,255,255,0.20)\",\"bg-alpha\":\"100\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"solid\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"hide-on-video\":\"\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-color-hover\":\"transparent\",\"border-style-hover\":\"solid\",\"background-color-hover\":\"rgba(255,255,255,1)\",\"bg-alpha-hover\":\"100\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-text\":\"LINE-BREAK\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\"}}]',NULL),(4,'Madison','madison','{\"eg-item-skin-element-last-id\":\"7\",\"choose-layout\":\"even\",\"show-content\":\"bottom\",\"content-align\":\"left\",\"element-x-ratio\":\"4\",\"element-y-ratio\":\"3\",\"cover-type\":\"full\",\"container-background-color\":\"rgba(88,92,103,1)\",\"0\":\"Default\",\"element-container-background-color-opacity\":\"100\",\"cover-background-size\":\"cover\",\"cover-background-repeat\":\"no-repeat\",\"cover-background-image\":\"0\",\"cover-background-image-url\":\"\",\"full-bg-color\":\"#585c67\",\"full-padding\":[\"0\",\"0\",\"0\",\"0\"],\"full-border\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-color\":\"transparent\",\"full-border-style\":\"none\",\"full-overflow-hidden\":\"false\",\"content-bg-color\":\"#ffffff\",\"content-padding\":[\"0\",\"0\",\"0\",\"0\"],\"content-border\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-color\":\"transparent\",\"content-border-style\":\"double\",\"all-shadow-used\":\"none\",\"content-shadow-color\":\"rgba(0,0,0,1)\",\"content-shadow-alpha\":\"100\",\"content-box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"cover-animation-top-type\":\"\",\"cover-animation-delay-top\":\"0\",\"cover-animation-top\":\"fade\",\"cover-animation-center-type\":\"\",\"cover-animation-delay-center\":\"0\",\"cover-animation-center\":\"flipvertical\",\"cover-animation-bottom-type\":\"\",\"cover-animation-delay-bottom\":\"0\",\"cover-animation-bottom\":\"fade\",\"cover-group-animation\":\"fade\",\"media-animation\":\"flipverticalout\",\"media-animation-delay\":\"0\"}','[{\"id\":\"0\",\"order\":0,\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"icon\",\"enable-hover\":\"on\",\"font-size\":\"16\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":[\"0\",\"10\",\"0\",\"0\"],\"padding\":[\"19\",\"19\",\"19\",\"19\"],\"background-color\":\"rgba(255,255,255,0.15)\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"60\",\"60\",\"60\",\"60\"],\"border-radius-unit\":\"px\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"font-size-hover\":\"16\",\"line-height-hover\":\"22\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"rgba(0,0,0,0.25)\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"60\",\"60\",\"60\",\"60\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"hideunder\":\"0\",\"transition\":\"zoomfront\",\"delay\":\"50\",\"link-type\":\"lightbox\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"transition-type\":\"\",\"css\":\"\",\"position\":\"relative\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"tag-type\":\"div\",\"align\":\"t_l\",\"css-hover\":\"\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"force-important\":\"\",\"absolute-unit\":\"px\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-icon\":\"eg-icon-search\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\"}},{\"id\":\"1\",\"order\":1,\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"icon\",\"enable-hover\":\"on\",\"font-size\":\"16\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"19\",\"19\",\"19\",\"19\"],\"background-color\":\"rgba(255,255,255,0.15)\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"60\",\"60\",\"60\",\"60\"],\"border-radius-unit\":\"px\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"font-size-hover\":\"16\",\"line-height-hover\":\"22\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"rgba(0,0,0,0.25)\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"60\",\"60\",\"60\",\"60\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"hideunder\":\"0\",\"transition\":\"zoomfront\",\"delay\":\"35\",\"link-type\":\"post\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"transition-type\":\"\",\"css\":\"\",\"position\":\"relative\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"align\":\"t_l\",\"css-hover\":\"\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"force-important\":\"true\",\"absolute-unit\":\"px\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-icon\":\"eg-icon-link\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\"}},null,{\"id\":\"3\",\"order\":4,\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"13\",\"line-height\":\"20\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"700\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"15\",\"0\",\"0\",\"0\"],\"padding\":[\"5\",\"10\",\"5\",\"10\"],\"background-color\":\"rgba(255,255,255,0.15)\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"rgba(255,255,255,0.15)\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"slideup\",\"delay\":\"35\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"source-post\":\"title\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\"}},null,{\"id\":\"5\",\"order\":7,\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"12\",\"line-height\":\"20\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"5\",\"10\",\"5\",\"10\"],\"background-color\":\"rgba(255,255,255,0.15)\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"300\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"rgba(255,255,255,0.15)\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"slidedown\",\"delay\":\"45\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"limit-type\":\"words\",\"limit-num\":\"6\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"source-post\":\"excerpt\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\"}},{\"id\":\"6\",\"order\":2,\"container\":\"c\",\"settings\":{\"background-color\":\"rgba(255,255,255,0.20)\",\"bg-alpha\":\"100\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"solid\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"hide-on-video\":\"\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-color-hover\":\"transparent\",\"border-style-hover\":\"solid\",\"background-color-hover\":\"rgba(255,255,255,1)\",\"bg-alpha-hover\":\"100\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-text\":\"LINE-BREAK\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\"}},{\"id\":\"7\",\"order\":5,\"container\":\"c\",\"settings\":{\"background-color\":\"rgba(255,255,255,0.20)\",\"bg-alpha\":\"100\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"solid\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"hide-on-video\":\"\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-color-hover\":\"transparent\",\"border-style-hover\":\"solid\",\"background-color-hover\":\"rgba(255,255,255,1)\",\"bg-alpha-hover\":\"100\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-text\":\"LINE-BREAK\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\"}}]',NULL),(5,'ESGBlankSkin','esgblankskin','{\"eg-item-skin-element-last-id\":\"0\",\"choose-layout\":\"even\",\"show-content\":\"none\",\"content-align\":\"left\",\"image-repeat\":\"no-repeat\",\"image-fit\":\"cover\",\"image-align-horizontal\":\"center\",\"image-align-vertical\":\"center\",\"element-x-ratio\":\"4\",\"element-y-ratio\":\"3\",\"splitted-item\":\"none\",\"cover-type\":\"full\",\"container-background-color\":\"rgba(0, 0, 0, 0)\",\"cover-always-visible-desktop\":\"false\",\"cover-always-visible-mobile\":\"false\",\"cover-background-size\":\"cover\",\"cover-background-repeat\":\"no-repeat\",\"cover-background-image\":\"0\",\"cover-background-image-url\":\"\",\"full-bg-color\":\"rgba(255, 255, 255, 0)\",\"full-padding\":[\"0\",\"0\",\"0\",\"0\"],\"full-border\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-color\":\"transparent\",\"full-border-style\":\"none\",\"full-overflow-hidden\":\"false\",\"content-bg-color\":\"rgba(255, 255, 255, 0)\",\"content-padding\":[\"0\",\"0\",\"0\",\"0\"],\"content-border\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-color\":\"transparent\",\"content-border-style\":\"none\",\"all-shadow-used\":\"none\",\"content-shadow-color\":\"#000000\",\"content-box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"cover-animation-top-type\":\"\",\"cover-animation-delay-top\":\"0\",\"cover-animation-top\":\"fade\",\"cover-animation-center-type\":\"\",\"cover-animation-delay-center\":\"0\",\"cover-animation-center\":\"none\",\"cover-animation-bottom-type\":\"\",\"cover-animation-delay-bottom\":\"0\",\"cover-animation-bottom\":\"fade\",\"cover-group-animation\":\"none\",\"media-animation\":\"none\",\"media-animation-delay\":\"0\",\"element-hover-image\":\"false\",\"hover-image-animation\":\"fade\",\"hover-image-animation-delay\":\"0\",\"link-set-to\":\"none\",\"link-link-type\":\"none\",\"link-url-link\":\"\",\"link-meta-link\":\"\",\"link-javascript-link\":\"\",\"link-target\":\"_self\"}','[]',NULL);
/*!40000 ALTER TABLE `wp9s_eg_item_skins` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp9s_eg_navigation_skins`
--

DROP TABLE IF EXISTS `wp9s_eg_navigation_skins`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp9s_eg_navigation_skins` (
  `id` mediumint(6) NOT NULL AUTO_INCREMENT,
  `name` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `handle` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `css` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `navversion` varchar(191) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  UNIQUE KEY `id` (`id`),
  UNIQUE KEY `handle` (`handle`)
) ENGINE=MyISAM AUTO_INCREMENT=16 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9s_eg_navigation_skins`
--

LOCK TABLES `wp9s_eg_navigation_skins` WRITE;
/*!40000 ALTER TABLE `wp9s_eg_navigation_skins` DISABLE KEYS */;
INSERT INTO `wp9s_eg_navigation_skins` VALUES (1,'Flat Light','flat-light','/*************************************\n	-	FLAT LIGHT 3.0.0 SKIN -\n*************************************/\n\n.flat-light .navigationbuttons,\n.flat-light .esg-pagination,\n.flat-light .esg-filters {\n	text-transform: uppercase;\n	text-align: center;\n}\n\n.flat-light .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton,\n.flat-light input.eg-search-input,\n.flat-light .esg-filterbutton,\n.flat-light .esg-navigationbutton,\n.flat-light .esg-sortbutton,\n.flat-light .esg-cartbutton,\n.flat-light .esg-filter-wrapper.eg-search-wrapper  .eg-search-clean,\n.flat-light .esg-filter-wrapper.eg-search-wrapper  .eg-search-submit {\n	color: #999;\n	margin-right: 5px;\n	cursor: pointer;\n	position: relative;\n	z-index: 2;\n	padding: 0px 30px;\n	border: 1px solid rgba(0,0,0,0.15);\n	line-height: 40px;\n	border-radius: 5px;\n	font-size: 12px;\n	font-weight: 700;\n	font-family: \"Open Sans\", sans-serif;\n	display: inline-block;\n	background: #fff;\n	margin-bottom: 5px;\n	white-space: nowrap;\n	min-height: 40px;\n	vertical-align: middle;\n}\n\n.flat-light .esg-cartbutton a {\n	color: #999;\n}\n\n.flat-light input.eg-search-input::placeholder {\n	line-height: 40px;\n	vertical-align: middle;\n	color:#999;\n}\n\n.flat-light .esg-navigationbutton {\n	padding: 0px;\n	width:40px;\n}\n\n.flat-light .esg-navigationbutton * {\n	color: #999;\n}\n\n.flat-light .esg-pagination-button:last-child {\n	margin-right: 0;\n}\n\n.flat-light .esg-sortbutton-wrapper,\n.flat-light .esg-cartbutton-wrapper {\n	display: inline-block;\n}\n\n.flat-light .esg-sortbutton-order,\n.flat-light .esg-cartbutton-order {\n	display: inline-block;\n	vertical-align: top;\n	border: 1px solid rgba(0,0,0,0.15);\n	width: 40px;\n	line-height: 40px;\n	border-radius: 5px;\n	font-size: 12px;\n	font-weight: 700;\n	color: #999;\n	cursor: pointer;\n	background: #eee;\n	background: #fff;\n	margin-left: 5px;\n}\n\n.flat-light .esg-cartbutton {\n	color: #999;\n	cursor: default !important;\n}\n\n.flat-light .esg-cartbutton .esgicon-basket {\n	color: #999;\n	font-size: 15px;\n	line-height: 15px;\n	margin-right: 10px;\n}\n\n.flat-light .esg-cartbutton-wrapper {\n	cursor: default !important;\n}\n\n.flat-light .esg-sortbutton,\n.flat-light .esg-cartbutton {\n	display: inline-block;\n	position: relative;\n	cursor: pointer;\n	margin-right: 0px;\n	border-radius: 5px;\n}\n\n.flat-light input.eg-search-input.hovered,\n.flat-light input.eg-search-input:focus,\n.flat-light .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton.hovered,\n.flat-light .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton.hoveredfilter,\n.flat-light .esg-navigationbutton.hovered,\n.flat-light .esg-filterbutton.hovered,\n.flat-light .esg-sortbutton.hovered,\n.flat-light .esg-sortbutton-order.hovered,\n.flat-light .esg-cartbutton-order.hovered,\n.flat-light .esg-filterbutton.selected,\n.flat-light .esg-cartbutton.hovered,\n.flat-light .esg-filter-wrapper.eg-search-wrapper  .eg-search-clean.hovered,\n.flat-light .esg-filter-wrapper.eg-search-wrapper  .eg-search-submit.hovered {\n	color: #000;\n	background: #fff;\n    box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.13);\n}\n\n.flat-light .esg-navigationbutton.hovered * {\n	color: #000;\n}\n\n.flat-light .esg-sortbutton-order.hovered.tp-desc {\n	color: #000;\n}\n\n.flat-light .esg-filter-checked {\n	color: #cbcbcb;\n	background: #cbcbcb;\n	margin-left: 10px;\n	font-size: 9px;\n	font-weight: 300;\n	line-height: 9px;\n	vertical-align: middle;\n}\n\n.flat-light .esg-filterbutton.selected .esg-filter-checked,\n.flat-light .esg-filterbutton.hovered .esg-filter-checked {\n	color: #fff;\n	background: #000;\n}\n\n.flat-light .esg-filter-wrapper.eg-search-wrapper {\n	white-space: nowrap;\n}\n\n.flat-light .esg-filter-wrapper.eg-search-wrapper .eg-search-submit {\n	margin-left: 5px;\n}\n\n.flat-light .esg-filter-wrapper.eg-search-wrapper .eg-search-clean,\n.flat-light .esg-filter-wrapper.eg-search-wrapper .eg-search-submit {\n	width:40px;\n	padding:0px;\n	margin-left: 5px;\n	margin-right:0px;\n}\n\n.flat-light .esg-filter-wrapper.eg-search-wrapper .eg-search-input {\n	width:auto;\n}\n\n.flat-light .esg-dropdown-wrapper {\n	transform: translateZ(10px) translateX(-50%);\n	left: 50%;\n	background:transparent;\n	padding:0px;\n}\n\n.flat-light .esg-dropdown-wrapper .esg-filterbutton {\n	position: relative\n}\n\n.flat-light .esg-selected-filterbutton .eg-icon-down-open {\n	margin-right: -10px;\n	font-size: 12px;\n	color:#999;\n}\n.flat-light .esg-selected-filterbutton.hoveredfilter .eg-icon-down-open,\n.flat-light .esg-selected-filterbutton.hovered .eg-icon-down-open {\n	color:#000;\n}',NULL),(2,'Flat Dark','flat-dark','/********************************\n	-	FLAT DARK 3.0.0 SKIN -\n*********************************/\n\n.flat-dark .navigationbuttons,\n.flat-dark .esg-pagination,\n.flat-dark .esg-filters {\n	text-transform: uppercase;\n	text-align: center;\n}\n\n.flat-dark .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton,\n.flat-dark input.eg-search-input,\n.flat-dark .esg-filterbutton,\n.flat-dark .esg-navigationbutton,\n.flat-dark .esg-sortbutton,\n.flat-dark .esg-cartbutton,\n.flat-dark .esg-filter-wrapper.eg-search-wrapper  .eg-search-clean,\n.flat-dark .esg-filter-wrapper.eg-search-wrapper  .eg-search-submit {\n	color: #fff;\n	margin-right: 5px;\n	cursor: pointer;\n	position: relative;\n	z-index: 2;\n	padding: 1px 30px;\n	border: none;\n	line-height: 38px;\n	border-radius: 5px;\n	font-size: 12px;\n	font-weight: 700;\n	font-family: \"Open Sans\", sans-serif;\n	display: inline-block;\n	background: rgba(0, 0, 0, 0.2);\n	margin-bottom: 5px;\n	white-space: nowrap;\n	min-height: 38px;\n	vertical-align: middle;\n}\n\n.flat-dark .esg-cartbutton a {\n	color:#fff;\n}\n\n.flat-dark input.eg-search-input::placeholder {\n	line-height: 38px;\n	vertical-align: middle;\n	color:#fff;\n}\n\n.flat-dark .esg-navigationbutton {\n	padding: 2px 12px;\n}\n\n.flat-dark .esg-navigationbutton * {\n	color: #fff;\n}\n\n.flat-dark .esg-pagination-button:last-child {\n	margin-right: 0;\n}\n\n.flat-dark .esg-sortbutton-wrapper,\n.flat-dark .esg-cartbutton-wrapper {\n	display: inline-block;\n}\n\n.flat-dark .esg-sortbutton-order,\n.flat-dark .esg-cartbutton-order {\n	display: inline-block;\n	vertical-align: top;\n	border: none;\n	width: 40px;\n	line-height: 40px;\n	border-radius: 5px;\n	font-size: 12px;\n	font-weight: 700;\n	color: #fff;\n	cursor: pointer;\n	background: rgba(0, 0, 0, 0.2);\n	margin-left: 5px;\n}\n\n.flat-dark .esg-cartbutton {\n	color: #fff;\n	cursor: default !important;\n}\n\n.flat-dark .esg-cartbutton .esgicon-basket {\n	color: #fff;\n	font-size: 15px;\n	line-height: 15px;\n	margin-right: 10px;\n}\n\n.flat-dark .esg-cartbutton-wrapper {\n	cursor: default !important;\n}\n\n.flat-dark .esg-sortbutton,\n.flat-dark .esg-cartbutton {\n	display: inline-block;\n	position: relative;\n	cursor: pointer;\n	margin-right: 0px;\n	border-radius: 5px;\n}\n\n.flat-dark input.eg-search-input.hovered,\n.flat-dark input.eg-search-input:focus,\n.flat-dark .esg-navigationbutton.hovered,\n.flat-dark .esg-filterbutton.hovered,\n.flat-dark .esg-sortbutton.hovered,\n.flat-dark .esg-sortbutton-order.hovered,\n.flat-dark .esg-cartbutton-order.hovered,\n.flat-dark .esg-filterbutton.selected,\n.flat-dark .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton.hovered,\n.flat-dark .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton.hoveredfilter,\n.flat-dark .esg-cartbutton.hovered,\n.flat-dark .esg-filter-wrapper.eg-search-wrapper  .eg-search-clean.hovered,\n.flat-dark .esg-filter-wrapper.eg-search-wrapper  .eg-search-submit.hovered {\n	border-color: none;\n	color: #fff;\n	background: rgba(0, 0, 0, 0.5);\n}\n\n.flat-dark .esg-navigationbutton.hovered * {\n	color: #333;\n}\n\n.flat-dark .esg-sortbutton-order.hovered .tp-desc {\n	color: #333;\n}\n\n.flat-dark .esg-filter-checked {\n	color: transparent;\n	background: rgba(0, 0, 0, 0.2);\n	margin-left: 7px;\n	font-size: 9px;\n	font-weight: 300;\n	line-height: 9px;\n	vertical-align: middle;\n}\n\n.flat-dark .esg-filterbutton.selected .esg-filter-checked,\n.flat-dark .esg-filterbutton.hovered .esg-filter-checked {\n	color: #fff;\n	background: rgba(0, 0, 0, 0.2);\n}\n\n.flat-dark .esg-filter-wrapper.eg-search-wrapper {\n	white-space: nowrap;\n}\n\n.flat-dark .esg-filter-wrapper.eg-search-wrapper .eg-search-submit {\n	margin-left: 5px;\n}\n\n.flat-dark .esg-filter-wrapper.eg-search-wrapper .eg-search-clean,\n.flat-dark .esg-filter-wrapper.eg-search-wrapper .eg-search-submit {\n	width:40px;\n	padding:0px;\n	margin-left: 5px;\n	margin-right:0px;\n}\n\n.flat-dark .esg-filter-wrapper.eg-search-wrapper .eg-search-input {\n	width:auto;\n}\n\n.flat-dark .esg-dropdown-wrapper {\n	transform: translateZ(10px) translateX(-50%);\n	left: 50%;\n	background:transparent;\n	padding:0px;\n}\n\n.flat-dark .esg-dropdown-wrapper .esg-filterbutton {\n	position: relative;\n	background:rgba(0,0,0,0.5);\n}\n\n.flat-dark .esg-dropdown-wrapper .esg-filterbutton.selected,\n.flat-dark .esg-dropdown-wrapper .esg-filterbutton.hovered {\n	background:rgba(0,0,0,0.75);\n}\n\n\n.flat-dark .esg-dropdown-wrapper .esg-filterbutton .esg-filter-checked {\n	position: absolute;\n	left: 10px;\n	top: 50%;\n	transform: translateY(-50%);\n	width: 12px;\n	height: 12px;\n	text-align: center;\n	line-height: 12px\n}\n\n.flat-dark .esg-selected-filterbutton .eg-icon-down-open {\n	margin-right:-10px;\n	font-size:12px;\n	color:#fff;\n}',NULL),(3,'Minimal Dark','minimal-dark','/**************************************\n	-	MINIMAL DARK V3.0.0 SKIN    -\n**************************************/\n\n.minimal-dark .navigationbuttons,\n.minimal-dark .esg-pagination,\n.minimal-dark .esg-filters {\n	text-align: center;\n}\n\n.minimal-dark .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton,\n.minimal-dark input.eg-search-input,\n.minimal-dark .esg-filterbutton,\n.minimal-dark .esg-navigationbutton,\n.minimal-dark .esg-sortbutton,\n.minimal-dark .esg-cartbutton,\n.minimal-dark .esg-filter-wrapper.eg-search-wrapper  .eg-search-clean,\n.minimal-dark .esg-filter-wrapper.eg-search-wrapper  .eg-search-submit {\n	color: rgba(255, 255, 255, 1);\n	margin-right: 5px;\n	cursor: pointer;\n	padding: 0px 17px;\n	border: 1px solid rgba(255, 255, 255, 0.1);\n	line-height: 38px;\n	border-radius: 5px;\n	font-size: 12px;\n	font-weight: 600;\n	font-family: \"Open Sans\", sans-serif;\n	display: inline-block;\n	background: transparent;\n	margin-bottom: 5px;\n	white-space: nowrap;\n	min-height: 38px;\n	vertical-align: middle;\n}\n\n.minimal-dark .esg-cartbutton a {\n	color:#fff;\n}\n\n.minimal-dark input.eg-search-input::placeholder {\n	line-height: 38px;\n	vertical-align: middle;\n	color:#fff;\n}\n\n.minimal-dark .esg-navigationbutton * {\n	color: rgba(255, 255, 255, 1);\n}\n\n.minimal-dark .esg-navigationbutton {\n	padding: 0px 11px;\n}\n\n.minimal-dark .esg-pagination-button {\n	padding: 0px 16px;\n}\n\n.minimal-dark .esg-pagination-button:last-child {\n	margin-right: 0;\n}\n\n.minimal-dark .esg-sortbutton-wrapper,\n.minimal-dark .esg-cartbutton-wrapper {\n	display: inline-block;\n}\n\n.minimal-dark .esg-sortbutton-order,\n.minimal-dark .esg-cartbutton-order {\n	display: inline-block;\n	vertical-align: top;\n	border: 1px solid rgba(255, 255, 255, 0.1);\n	width: 40px;\n	line-height: 38px;\n	border-radius: 0px 5px 5px 0px;\n	font-size: 12px;\n	font-weight: 600;\n	color: #fff;\n	cursor: pointer;\n	background: transparent;\n}\n\n.minimal-dark .esg-cartbutton {\n	color: #fff;\n	cursor: default !important;\n}\n\n.minimal-dark .esg-cartbutton .esgicon-basket {\n	color: #fff;\n	font-size: 15px;\n	line-height: 15px;\n	margin-right: 10px;\n}\n\n.minimal-dark .esg-cartbutton-wrapper {\n	cursor: default !important;\n}\n\n.minimal-dark .esg-sortbutton,\n.minimal-dark .esg-cartbutton {\n	display: inline-block;\n	position: relative;\n	cursor: pointer;\n	margin-right: 0px;\n	border-right: none;\n	border-radius: 5px 0px 0px 5px;\n}\n\n.minimal-dark .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton.hovered,\n.minimal-dark .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton.hoveredfilter,\n.minimal-dark .esg-navigationbutton.hovered,\n.minimal-dark .esg-filterbutton.hovered,\n.minimal-dark .esg-sortbutton.hovered,\n.minimal-dark .esg-sortbutton-order.hovered,\n.minimal-dark .esg-cartbutton-order.hovered,\n.minimal-dark .esg-filterbutton.selected,\n.minimal-dark .esg-cartbutton.hovered,\n.minimal-dark .esg-filter-wrapper.eg-search-wrapper  .eg-search-clean.hovered,\n.minimal-dark .esg-filter-wrapper.eg-search-wrapper  .eg-search-submit.hovered {\n	border-color: rgba(255, 255, 255, 0.2);\n	color: #fff;\n	box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.13);\n	background: rgba(255, 255, 255, 0.1);\n}\n\n.minimal-dark .esg-navigationbutton.hovered * {\n	color: #fff;\n}\n\n.minimal-dark .esg-sortbutton-order.hovered .tp-desc {\n	border-color: #fff;\n	border-color: rgba(255, 255, 255, 0.2);\n	color: #fff;\n	box-shadow: 0px -3px 5px 0px rgba(0, 0, 0, 0.13) !important;\n}\n\n.minimal-dark .esg-filter-checked {\n	color: transparent;\n	background: rgba(0, 0, 0, 0.10);\n	font-size: 9px;\n	font-weight: 300;\n	line-height: 9px;\n	vertical-align: middle;\n	margin-left:7px;\n}\n\n.minimal-dark .esg-filter-wrapper.dropdownstyle .esg-filter-checked {\n	margin-left:-22px;\n	margin-right:10px;\n	border:1px solid rgba(255,255,255,.2);\n}\n\n.minimal-dark .esg-filterbutton.selected .esg-filter-checked,\n.minimal-dark .esg-filterbutton.hovered .esg-filter-checked {\n	color: #fff;\n	background: rgba(0, 0, 0, 0.10);\n}\n\n/* */\n.minimal-dark .esg-filter-wrapper.eg-search-wrapper {\n	white-space: nowrap;\n}\n\n\n.minimal-dark .esg-filter-wrapper.eg-search-wrapper .eg-search-clean,\n.minimal-dark .esg-filter-wrapper.eg-search-wrapper .eg-search-submit {\n	width:40px;\n	padding:0px;\n	margin-left:5px;\n	margin-right:0px;\n}\n\n.minimal-dark .esg-filter-wrapper.eg-search-wrapper .eg-search-input {\n	width:auto;\n}\n\n.minimal-dark .esg-dropdown-wrapper {\n	transform: translateZ(10px) translateX(-50%);\n	left: 50%;\n	background:rgba(0,0,0,0.95);\n	border-radius: 5px;\n}\n\n.minimal-dark .esg-dropdown-wrapper .esg-filterbutton {\n	position: relative;\n	border:none;\n	box-shadow: none;\n	text-align: left;\n	color:rgba(255,255,255,0.5);\n	background:transparent;\n	line-height: 25px;\n	min-height: 25px;\n}\n\n.minimal-dark .esg-dropdown-wrapper .esg-filterbutton.hovered,\n.minimal-dark .esg-dropdown-wrapper .esg-filterbutton.selected {\n	color:#fff;\n}\n\n\n.minimal-dark .esg-selected-filterbutton .eg-icon-down-open {\n	margin-right: -10px;\n	color:#fff;\n	font-size:12px;\n}',NULL),(4,'Minimal Light','minimal-light','/*************************************\n	-	MINIMAL LIGHT 3.0.0 SKIN	-\n*************************************/\n\n.minimal-light .navigationbuttons,\n.minimal-light .esg-pagination,\n.minimal-light .esg-filters {\n	text-align: center;\n}\n\n.minimal-light .esg-filter-wrapper.dropdownstyle >.esg-selected-filterbutton,\n.minimal-light input.eg-search-input,\n.minimal-light .esg-filterbutton,\n.minimal-light .esg-navigationbutton,\n.minimal-light .esg-sortbutton,\n.minimal-light .esg-cartbutton a,\n.minimal-light .esg-filter-wrapper.eg-search-wrapper  .eg-search-clean,\n.minimal-light .esg-filter-wrapper.eg-search-wrapper  .eg-search-submit {\n	color: #999;\n	margin-right: 5px;\n	cursor: pointer;\n	padding: 0px 16px;\n	border: 1px solid #e5e5e5;\n	line-height: 38px;\n	border-radius: 5px;\n	font-size: 12px;\n	font-weight: 700;\n	font-family: \"Open Sans\", sans-serif;\n	display: inline-block;\n	background: #fff;\n	margin-bottom: 5px;\n	white-space: nowrap;\n	min-height: 38px;\n	vertical-align: middle;\n}\n\n .minimal-light input.eg-search-input::placeholder {\n	line-height: 38px;\n	vertical-align: middle;\n}\n\n.minimal-light .esg-navigationbutton * {\n	color: #999;\n}\n\n.minimal-light .esg-navigationbutton {\n	padding: 0px 16px;\n}\n\n.minimal-light .esg-pagination-button:last-child {\n	margin-right: 0;\n}\n\n.minimal-light .esg-left,\n.minimal-light .esg-right {\n	padding: 0px 11px;\n}\n\n.minimal-light .esg-sortbutton-wrapper,\n.minimal-light .esg-cartbutton-wrapper {\n	display: inline-block;\n}\n\n.minimal-light .esg-sortbutton-order,\n.minimal-light .esg-cartbutton-order {\n	display: inline-block;\n	vertical-align: top;\n	border: 1px solid #e5e5e5;\n	width: 40px;\n	line-height: 38px;\n	border-radius: 0px 5px 5px 0px;\n	font-size: 12px;\n	font-weight: 700;\n	color: #999;\n	cursor: pointer;\n	background: #fff;\n}\n\n.minimal-light .esg-cartbutton {\n	color: #333;\n	cursor: default !important;\n}\n\n.minimal-light .esg-cartbutton .esgicon-basket {\n	color: #333;\n	font-size: 15px;\n	line-height: 15px;\n	margin-right: 10px;\n}\n\n.minimal-light .esg-cartbutton-wrapper {\n	cursor: default !important;\n}\n\n.minimal-light .esg-sortbutton,\n.minimal-light .esg-cartbutton {\n	display: inline-block;\n	position: relative;\n	cursor: pointer;\n	margin-right: 0px;\n	border-right: none;\n	border-radius: 5px 0px 0px 5px;\n}\n\n.minimal-light input.eg-search-input.hovered,\n.minimal-light input.eg-search-input:focus,\n.minimal-light .esg-navigationbutton.hovered,\n.minimal-light .esg-filterbutton.hovered,\n.minimal-light .esg-sortbutton.hovered,\n.minimal-light .esg-sortbutton-order.hovered,\n.minimal-light .esg-cartbutton.hovered a,\n.minimal-light .esg-filter-wrapper.dropdownstyle >.esg-selected-filterbutton.hovered,\n.minimal-light .esg-filterbutton.selected,\n.minimal-light .esg-filter-wrapper.eg-search-wrapper  .eg-search-clean.hovered,\n.minimal-light .esg-filter-wrapper.eg-search-wrapper  .eg-search-submit.hovered {\n	background-color: #fff;\n	border-color: #bbb;\n	color: #333;\n	box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.13);\n}\n\n.minimal-light .esg-navigationbutton.hovered * {\n	color: #333;\n}\n\n.minimal-light .esg-sortbutton-order.hovered .tp-desc {\n	border-color: #bbb;\n	color: #333;\n	box-shadow: 0px -3px 5px 0px rgba(0, 0, 0, 0.13) !important;\n}\n\n.minimal-light .esg-filter-checked {\n	color: #cbcbcb;\n	background: #cbcbcb;\n	margin-left:10px;\n	font-size: 9px;\n	font-weight: 300;\n	line-height: 9px;\n	vertical-align: middle;\n}\n\n.minimal-light .esg-filter-wrapper.dropdownstyle .esg-filter-checked {\n	margin-left:-22px;\n	margin-right:10px;\n}\n\n.minimal-light .esg-filterbutton.selected .esg-filter-checked,\n.minimal-light .esg-filterbutton.hovered .esg-filter-checked {\n	color: #fff;\n	background: #000;\n}\n\n.minimal-light .esg-filter-wrapper.eg-search-wrapper {\n	white-space: nowrap;\n}\n\n\n\n.minimal-light .esg-filter-wrapper.eg-search-wrapper .eg-search-clean,\n.minimal-light .esg-filter-wrapper.eg-search-wrapper .eg-search-submit {\n	width:40px;\n	padding:0px;\n	margin-left: 5px;\n	margin-right:0px;\n}\n\n.minimal-light .esg-filter-wrapper.eg-search-wrapper .eg-search-input {\n	width:auto;\n}\n\n.minimal-light .esg-dropdown-wrapper {\n	transform: translateZ(10px) translateX(-50%);\n	left:50%;\n	background:rgba(255,255,255,0.95);\n	border-radius: 5px;\n	border: 1px solid #e5e5e5;\n}\n\n.minimal-light .esg-dropdown-wrapper .esg-filterbutton {\n	position: relative;\n	border:none;\n	box-shadow: none;\n	text-align: left;\n	color:#999;\n	background:transparent;\n	line-height: 25px;\n	min-height: 25px;\n}\n\n.minimal-light .esg-dropdown-wrapper .esg-filterbutton.hovered,\n.minimal-light .esg-dropdown-wrapper .esg-filterbutton.selected {\n	color:#333;\n}\n\n.minimal-light .esg-selected-filterbutton .eg-icon-down-open {\n	margin-right:-10px;\n	font-size:12px;\n}\n\n.minimal-light .esg-selected-filterbutton.hovered .eg-icon-down-open {\n	color:#333;\n}',NULL),(5,'Simple Light','simple-light','/*************************************\n	-	SIMPLE LIGHT 3.0.0 SKIN   -\n*************************************/\n\n.simple-light .navigationbuttons,\n.simple-light .esg-pagination,\n.simple-light .esg-filters {\n	text-align: center;\n}\n\n.simple-light .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton,\n.simple-light input.eg-search-input,\n.simple-light .esg-filterbutton,\n.simple-light .esg-navigationbutton,\n.simple-light .esg-sortbutton,\n.simple-light .esg-cartbutton,\n.simple-light .esg-sortbutton-order,\n.simple-light .esg-cartbutton-order,\n.simple-light .esg-filter-wrapper.eg-search-wrapper  .eg-search-clean,\n.simple-light .esg-filter-wrapper.eg-search-wrapper  .eg-search-submit {\n	color: #000;\n	margin-right: 5px;\n	cursor: pointer;\n	padding: 0px 11px;\n	border: 1px solid #e5e5e5;\n	line-height: 30px;\n	font-size: 12px;\n	font-weight: 400;\n	font-family: \"Open Sans\",sans-serif;\n 	display: inline-block;\n	background: #eee;\n	margin-bottom: 5px;\n	white-space: nowrap;\n	min-height: 30px;\n	vertical-align: middle;\n}\n\n.simple-light .esg-cartbutton a {\n	color:#000;\n}\n\n.simple-light input.eg-search-input::placeholder {\n	line-height: 30px;\n	vertical-align: middle;\n	color:#000;\n}\n\n.simple-light .esg-navigationbutton * {\n	color: #000;\n}\n\n.simple-light .esg-left,\n.simple-light .esg-right {\n	color: #000;\n	padding: 0px 7px;\n}\n\n.simple-light .esg-pagination-button:last-child {\n	margin-right: 0;\n}\n\n.simple-light .esg-sortbutton-wrapper,\n.simple-light .esg-cartbutton-wrapper {\n	display: inline-block;\n	vertical-align: top;\n}\n\n.simple-light .esg-sortbutton-order,\n.simple-light .esg-cartbutton-order {\n	padding: 0px;\n	width: 29px;\n	font-size: 9px;\n}\n\n.simple-light .esg-cartbutton {\n	color: #333;\n	cursor: default !important;\n}\n\n.simple-light .esg-cartbutton .esgicon-basket {\n	color: #333;\n	font-size: 15px;\n	line-height: 15px;\n	margin-right: 10px;\n}\n\n.simple-light .esg-cartbutton-wrapper {\n	cursor: default !important;\n}\n\n.simple-light .esg-sortbutton,\n.simple-light .esg-cartbutton {\n	display: inline-block;\n	position: relative;\n	cursor: pointer;\n	margin-right: 5px;\n}\n\n.simple-light input.eg-search-input.hovered,\n.simple-light input.eg-search-input:focus,\n.simple-light .esg-navigationbutton.hovered,\n.simple-light .esg-filterbutton.hovered,\n.simple-light .esg-sortbutton.hovered,\n.simple-light .esg-sortbutton-order.hovered,\n.simple-light .esg-cartbutton.hovered,\n.simple-light .esg-filterbutton.selected,\n.simple-light .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton.hovered,\n.simple-light .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton.hoveredfilter,\n.simple-light .esg-filter-wrapper.eg-search-wrapper  .eg-search-clean.hovered,\n.simple-light .esg-filter-wrapper.eg-search-wrapper  .eg-search-submit.hovered {\n	background-color: #fff;\n	border-color: #bbb;\n	color: #333;\n	box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.13);\n}\n\n.simple-light .esg-cartbutton.hovered a {\n	color:#000;\n}\n\n.simple-light .esg-navigationbutton.hovered * {\n	color: #333;\n}\n\n.simple-light .esg-sortbutton-order.hovered .tp-desc {\n	border-color: #bbb;\n	color: #333;\n	box-shadow: 0px -3px 5px 0px rgba(0, 0, 0, 0.13) !important;\n}\n\n.simple-light .esg-filter-checked {\n	color: #c5c5c5;\n	background: #ddd;\n	margin-left: 10px;\n	font-size: 9px;\n	font-weight: 400;\n	line-height: 20px;\n	vertical-align: middle;\n}\n\n.simple-light .esg-filterbutton.selected .esg-filter-checked,\n.simple-light .esg-filterbutton.hovered .esg-filter-checked {\n	color: #fff;\n	background: #000;\n}\n\n.simple-light .esg-filter-wrapper.eg-search-wrapper {\n	line-height: 30px;\n	white-space: nowrap;\n}\n\n.simple-light .esg-filter-wrapper.eg-search-wrapper .eg-search-submit {\n	margin-left: 5px;\n}\n\n.simple-light .esg-filter-wrapper.eg-search-wrapper .eg-search-clean,\n.simple-light .esg-filter-wrapper.eg-search-wrapper .eg-search-submit {\n	width:29px;\n	padding:0px;\n	margin-left: 5px;\n	margin-right:0px;\n}\n\n.simple-light .esg-filter-wrapper.eg-search-wrapper .eg-search-input {\n	width:auto;\n	border-radius:0px;\n}\n\n.simple-light .esg-dropdown-wrapper {\n	left: 0px;\n	background:#fff;\n}\n\n.simple-light .esg-dropdown-wrapper .esg-filterbutton {\n	position: relative;\n	text-align: left;\n	background:transparent;\n	padding:0px;\n	border:none;\n	box-shadow: none;\n}\n\n.simple-light .esg-selected-filterbutton .eg-icon-down-open {\n	margin-right: -10px;\n	font-size: 9px;\n	color:#000;\n}\n.simple-light .esg-selected-filterbutton.hovered .eg-icon-down-open,\n.simple-light .esg-selected-filterbutton.hoveredfilter .eg-icon-down-open{\n	color:#333;\n}',NULL),(6,'Simple Dark','simple-dark','/*************************************\n	-	SIMPLE DARK 3.0.0 SKIN   -\n*************************************/\n\n.simple-dark .navigationbuttons,\n.simple-dark .esg-pagination,\n.simple-dark .esg-filters {\n	text-align: center;\n}\n\n.simple-dark .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton,\n.simple-dark input.eg-search-input,\n.simple-dark .esg-filterbutton,\n.simple-dark .esg-navigationbutton,\n.simple-dark .esg-sortbutton,\n.simple-dark .esg-cartbutton,\n.simple-dark .esg-sortbutton-order,\n.simple-dark .esg-cartbutton-order,\n.simple-dark .esg-filter-wrapper.eg-search-wrapper  .eg-search-clean,\n.simple-dark .esg-filter-wrapper.eg-search-wrapper  .eg-search-submit {\n	color: #fff;\n	margin-right: 5px;\n	cursor: pointer;\n	padding: 0px 10px;\n	border:1px solid rgba(255,255,255,0.15);\n	line-height: 29px;\n	font-size: 12px;\n	font-weight: 600;\n	font-family: \"Open Sans\",sans-serif;\n 	display: inline-block;\n	margin-bottom: 5px;\n	white-space: nowrap;\n	min-height: 29px;\n	background: rgba(255,255,255,0.08 );\n	vertical-align: middle;\n}\n\n.simple-dark .esg-cartbutton a {\n	color:#fff;\n}\n\n.simple-dark input.eg-search-input::placeholder {\n	line-height: 29px;\n	vertical-align: middle;\n	color:#fff;\n}\n\n\n\n.simple-dark .esg-navigationbutton * {\n	color: #fff;\n}\n\n.simple-dark .esg-left,\n.simple-dark .esg-right {\n	color: #fff;\n	padding: 0px 7px;\n}\n\n.simple-dark .esg-pagination-button:last-child {\n	margin-right: 0;\n}\n\n.simple-dark .esg-sortbutton-wrapper,\n.simple-dark .esg-cartbutton-wrapper {\n	display: inline-block;\n	vertical-align: top;\n}\n\n.simple-dark .esg-sortbutton-order,\n.simple-dark .esg-cartbutton-order {\n	padding: 0px;\n	width: 29px;\n	font-size: 9px;\n}\n\n.simple-dark .esg-cartbutton {\n	color: #000;\n	cursor: default !important;\n}\n\n.simple-dark .esg-cartbutton .esgicon-basket {\n	color: #000;\n	font-size: 15px;\n	line-height: 15px;\n	margin-right: 10px;\n}\n\n.simple-dark .esg-cartbutton-wrapper {\n	cursor: default !important;\n}\n\n.simple-dark .esg-sortbutton,\n.simple-dark .esg-cartbutton {\n	display: inline-block;\n	position: relative;\n	cursor: pointer;\n	margin-right: 5px;\n}\n\n.simple-dark input.eg-search-input.hovered,\n.simple-dark input.eg-search-input:focus,\n.simple-dark .esg-navigationbutton.hovered,\n.simple-dark .esg-filterbutton.hovered,\n.simple-dark .esg-sortbutton.hovered,\n.simple-dark .esg-sortbutton-order.hovered,\n.simple-dark .esg-cartbutton.hovered,\n.simple-dark .esg-filterbutton.selected,\n.simple-dark .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton.hovered,\n.simple-dark .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton.hoveredfilter,\n.simple-dark .esg-filter-wrapper.eg-search-wrapper  .eg-search-clean.hovered,\n.simple-dark .esg-filter-wrapper.eg-search-wrapper  .eg-search-submit.hovered {\n	background-color: #fff;\n	border-color: #fff;\n	color: #000;\n	box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.13);\n}\n\n.simple-dark .esg-cartbutton.hovered a,\n.simple-dark input.eg-search-input.hovered::placeholder {\n	color:#000;\n}\n\n.simple-dark .esg-navigationbutton.hovered * {\n	color: #000;\n}\n\n.simple-dark .esg-sortbutton-order.hovered .tp-desc {\n	border-color: #fff;\n	color: #000;\n	box-shadow: 0px -3px 5px 0px rgba(0, 0, 0, 0.13) !important;\n}\n\n.simple-dark .esg-filter-checked {\n	color: transparent;\n	background: rgba(255,255,255,0.15);\n	margin-left: 10px;\n	font-size: 9px;\n	font-weight: 400;\n	vertical-align: top;\n}\n\n.simple-dark .esg-filterbutton.selected .esg-filter-checked,\n.simple-dark .esg-filterbutton.hovered .esg-filter-checked {\n	color: #fff;\n	background: #000;\n}\n\n\n\n.simple-dark .esg-filter-wrapper.eg-search-wrapper {\n	line-height: 29px;\n	white-space: nowrap;\n}\n\n.simple-dark .esg-filter-wrapper.eg-search-wrapper .eg-search-submit {\n	margin-left: 5px;\n}\n\n.simple-dark .esg-filter-wrapper.eg-search-wrapper .eg-search-clean,\n.simple-dark .esg-filter-wrapper.eg-search-wrapper .eg-search-submit {\n	width:29px;\n	padding:0px;\n	margin-left: 5px;\n	margin-right:0px;\n}\n\n.simple-dark .esg-filter-wrapper.eg-search-wrapper .eg-search-input {\n	width:auto;\n    border-radius:0px;\n}\n\n.simple-dark .esg-dropdown-wrapper {\n	left: 0px;\n	background:#fff;\n	border:1px solid rgba(255,255,255,0.15);\n}\n\n.simple-dark .esg-dropdown-wrapper .esg-filterbutton {\n	position: relative;\n	text-align: left;\n	background:transparent;\n	padding:0px;\n	border:none;\n	box-shadow: none;\n	color:#777;\n}\n\n.simple-dark .esg-dropdown-wrapper .esg-filterbutton .esg-filter-checked {\n	border: 1px solid rgba(0,0,0,0.2);\n}\n\n.simple-dark .esg-dropdown-wrapper .esg-filterbutton.hovered,\n.simple-dark .esg-dropdown-wrapper .esg-filterbutton.selected {\n	color:#000;\n}\n\n.simple-dark .esg-selected-filterbutton .eg-icon-down-open {\n	margin-right: -10px;\n	font-size: 9px;\n	color:#fff;\n}\n.simple-dark .esg-selected-filterbutton.hovered .eg-icon-down-open,\n.simple-dark .esg-selected-filterbutton.hoveredfilter .eg-icon-down-open{\n	color:#000;\n}',NULL),(7,'Text Dark','text-dark','/*************************************\n	-	TEXT DARK 3.0.0 SKIN   -\n*************************************/\n\n.text-dark .navigationbuttons,\n.text-dark .esg-pagination,\n.text-dark .esg-filters {\n	text-align: center;\n}\n\n.text-dark .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton,\n.text-dark input.eg-search-input,\n.text-dark .esg-filterbutton,\n.text-dark .esg-navigationbutton,\n.text-dark .esg-sortbutton,\n.text-dark .esg-cartbutton,\n.text-dark .esg-filter-wrapper.eg-search-wrapper .eg-search-clean,\n.text-dark .esg-filter-wrapper.eg-search-wrapper .eg-search-submit {\n	color: rgba(255, 255, 255, 0.4);\n	margin-right: 5px;\n	cursor: pointer;\n	padding: 0px 15px 0px 10px;\n	line-height: 20px;\n	font-size: 12px;\n	font-weight: 600;\n	font-family: \"Open Sans\", sans-serif;\n	display: inline-block;\n	background: transparent;\n	margin-bottom: 5px;\n	white-space: nowrap;\n	min-height: 20px;\n	vertical-align: top;\n}\n\n.text-dark .esg-cartbutton a {\n	color: #fff;\n}\n\n.text-dark input.eg-search-input::placeholder {\n	line-height: 29px;\n	vertical-align: middle;\n	color: rgba(255, 255, 255, 0.4);\n}\n\n.text-dark .esg-navigationbutton * {\n	color: rgba(255, 255, 255, 0.4);\n}\n\n.text-dark .esg-sortbutton-wrapper,\n.text-dark .esg-cartbutton-wrapper {\n	display: inline-block;\n}\n\n.text-dark .esg-sortbutton-order,\n.text-dark .esg-cartbutton-order {\n	display: inline-block;\n	vertical-align: top;\n	width: 29px;\n	line-height: 20px;\n	font-size: 9px;\n	font-weight: 700;\n	color: #fff;\n	color: rgba(255, 255, 255, 0.4);\n	cursor: pointer;\n	background: transparent;\n}\n\n.text-dark .esg-cartbutton {\n	color: rgba(255, 255, 255, 0.4);\n	cursor: default !important;\n}\n\n.text-dark .esg-cartbutton .esgicon-basket {\n	color: rgba(255, 255, 255, 0.4);\n	font-size: 15px;\n	line-height: 15px;\n	margin-right: 10px;\n}\n\n.text-dark .esg-cartbutton-wrapper {\n	cursor: default !important;\n}\n\n.text-dark .esg-sortbutton,\n.text-dark .esg-cartbutton {\n	display: inline-block;\n	position: relative;\n	cursor: pointer;\n	margin-right: 0px;\n}\n\n.text-dark input.eg-search-input.hovered,\n.text-dark input.eg-search-input:focus,\n.text-dark .esg-navigationbutton.hovered,\n.text-dark .esg-filterbutton.hovered,\n.text-dark .esg-sortbutton.hovered,\n.text-dark .esg-filterbutton.selected,\n.text-dark .esg-sortbutton-order.hovered,\n.text-dark .esg-cartbutton-order.hovered,\n.text-dark .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton.hovered,\n.text-dark .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton.hoveredfilter,\n.text-dark .esg-filter-wrapper.eg-search-wrapper  .eg-search-clean.hovered,\n.text-dark .esg-filter-wrapper.eg-search-wrapper  .eg-search-submit.hovered {\n	color: #fff;\n}\n\n.text-dark .esg-navigationbutton.hovered,\n.text-dark .esg-filterbutton:hover span:first-child,\n.text-dark .esg-filterbutton.selected span:first-child {\n	text-decoration: none;\n}\n\n.text-dark .esg-filterbutton {\n	border-right: 1px solid #fff;\n	border-right: 1px solid rgba(255, 255, 255, 0.15);\n}\n\n.text-dark .esg-filterbutton:last-child {\n	border-right: none;\n}\n\n.text-dark .esg-sortbutton-order {\n	padding-left: 10px;\n	border-left: 1px solid #fff;\n	border-left: 1px solid rgba(255, 255, 255, 0.15);\n}\n\n.text-dark .esg-navigationbutton.hovered * {\n	color: #fff;\n}\n\n.text-dark .esg-sortbutton-order.hovered .tp-desc {\n	border-color: #fff;\n	border-color: rgba(255, 255, 255, 0.15);\n	color: #fff;\n}\n\n.text-dark .esg-filter-checked {\n	color: transparent;\n	background: rgba(0, 0, 0, 0.10);\n	margin-left: 10px;\n	font-size: 9px;\n	font-weight: 300;\n	line-height: 9px;\n	vertical-align: middle;\n}\n\n\n.text-dark .esg-filterbutton.selected .esg-filter-checked,\n.text-dark .esg-filterbutton.hovered .esg-filter-checked {\n	color: #fff;\n}\n\n.text-dark .esg-filter-wrapper.eg-search-wrapper {\n	line-height: 20px;\n	white-space: nowrap;\n}\n\n.text-dark .esg-filter-wrapper.eg-search-wrapper .eg-search-submit {\n	margin-left: 5px;\n}\n\n.text-dark .esg-filter-wrapper.eg-search-wrapper .eg-search-clean,\n.text-dark .esg-filter-wrapper.eg-search-wrapper .eg-search-submit {\n	width:20px;\n	padding:0px;\n	margin-left: 5px;\n	margin-right:0px;\n}\n\n.text-dark .esg-filter-wrapper.eg-search-wrapper .eg-search-input {\n	width:auto;\n	border:none !important;\n	line-height: 20px;\n	height: 20px;\n}\n\n.text-dark .esg-dropdown-wrapper {\n	left: 0px;\n	background:rgba(0, 0, 0, 0.85);\n}\n\n.text-dark .esg-dropdown-wrapper .esg-filterbutton {\n	position: relative;\n	text-align: left;\n	background:transparent;\n	padding:0px;\n	border:none;\n	box-shadow: none;\n	color: rgba(255, 255, 255, 0.4);\n}\n\n\n.text-dark .esg-dropdown-wrapper .esg-filterbutton.hovered,\n.text-dark .esg-dropdown-wrapper .esg-filterbutton.selected {\n	color: #fff;\n}\n\n.text-dark .esg-selected-filterbutton .eg-icon-down-open {\n	margin-right: -10px;\n	font-size: 9px;\n	color: rgba(255, 255, 255, 0.4);\n}\n.text-dark .esg-selected-filterbutton.hovered .eg-icon-down-open,\n.text-dark .esg-selected-filterbutton.hoveredfilter .eg-icon-down-open{\n	color:#fff;\n}',NULL),(8,'Text Light','text-light','/*************************************\n	-	TEXT LIGHT 3.0.0 SKIN   -\n*************************************/\n\n.text-light .navigationbuttons,\n.text-light .esg-pagination,\n.text-light .esg-filters {\n	text-align: center;\n}\n\n.text-light .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton,\n.text-light input.eg-search-input,\n.text-light .esg-filterbutton,\n.text-light .esg-navigationbutton,\n.text-light .esg-sortbutton,\n.text-light .esg-cartbutton,\n.text-light .esg-filter-wrapper.eg-search-wrapper .eg-search-clean,\n.text-light .esg-filter-wrapper.eg-search-wrapper .eg-search-submit {\n	color: #999;\n	margin-right: 5px;\n	cursor: pointer;\n	padding: 0px 15px 0px 10px;\n	line-height: 20px;\n	font-size: 12px;\n	font-weight: 600;\n	font-family: \"Open Sans\", sans-serif;\n	display: inline-block;\n	background: transparent;\n	margin-bottom: 5px;\n	white-space: nowrap;\n	min-height: 20px;\n	vertical-align: top;\n}\n\n.text-light .esg-cartbutton a {\n	color: #999;\n}\n\n.text-light input.eg-search-input::placeholder {\n	line-height: 29px;\n	vertical-align: middle;\n	color: #999;\n}\n\n.text-light .esg-navigationbutton * {\n	color: #999;\n}\n\n.text-light .esg-sortbutton-wrapper,\n.text-light .esg-cartbutton-wrapper {\n	display: inline-block;\n}\n\n.text-light .esg-sortbutton-order,\n.text-light .esg-cartbutton-order {\n	display: inline-block;\n	vertical-align: top;\n	width: 29px;\n	line-height: 20px;\n	font-size: 9px;\n	font-weight: 700;\n	color: #999;\n	cursor: pointer;\n	background: transparent;\n}\n\n.text-light .esg-cartbutton {\n	color: #999;\n	cursor: default !important;\n}\n\n.text-light .esg-cartbutton .esgicon-basket {\n	color: #999;\n	font-size: 15px;\n	line-height: 15px;\n	margin-right: 10px;\n}\n\n.text-light .esg-cartbutton-wrapper {\n	cursor: default !important;\n}\n\n.text-light .esg-sortbutton,\n.text-light .esg-cartbutton {\n	display: inline-block;\n	position: relative;\n	cursor: pointer;\n	margin-right: 0px;\n}\n\n.text-light input.eg-search-input.hovered,\n.text-light input.eg-search-input:focus,\n.text-light .esg-navigationbutton.hovered,\n.text-light .esg-filterbutton.hovered,\n.text-light .esg-sortbutton.hovered,\n.text-light .esg-filterbutton.selected,\n.text-light .esg-sortbutton-order.hovered,\n.text-light .esg-cartbutton-order.hovered,\n.text-light .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton.hovered,\n.text-light .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton.hoveredfilter,\n.text-light .esg-filter-wrapper.eg-search-wrapper  .eg-search-clean.hovered,\n.text-light .esg-filter-wrapper.eg-search-wrapper  .eg-search-submit.hovered {\n	color: #444;\n}\n\n.text-light .esg-cartbutton.hovered a,\n.text-light input.eg-search-input.hovered::placeholder {\n	color: #999;\n}\n\n.text-light .esg-navigationbutton.hovered,\n.text-light .esg-filterbutton:hover span:first-child,\n.text-light .esg-filterbutton.selected span:first-child {\n	text-decoration: none;\n}\n\n.text-light .esg-filterbutton {\n	border-right: 1px solid rgba(0, 0, 0, 0.15);\n}\n\n.text-light .esg-filterbutton:last-child {\n	border-right: none;\n}\n\n.text-light .esg-sortbutton-order {\n	padding-left: 10px;\n	border-left: 1px solid rgba(0, 0, 0, 0.15);\n}\n\n.text-light .esg-navigationbutton.hovered * {\n	color: #444;\n}\n\n.text-light .esg-sortbutton-order.hovered .tp-desc {\n	border-color: rgba(0, 0, 0, 0.15);\n	color: #444;\n}\n\n.text-light .esg-filter-checked {\n	color: transparent;\n	background: rgba(0, 0, 0, 0.10);\n	margin-left: 10px;\n	font-size: 9px;\n	font-weight: 300;\n	line-height: 9px;\n	vertical-align: middle;\n}\n\n\n.text-light .esg-filterbutton.selected .esg-filter-checked,\n.text-light .esg-filterbutton.hovered .esg-filter-checked {\n	color: #444;\n}\n\n.text-light .esg-filter-wrapper.eg-search-wrapper {\n	line-height: 20px;\n	white-space: nowrap;\n}\n\n.text-light .esg-filter-wrapper.eg-search-wrapper .eg-search-submit {\n	margin-left: 5px;\n}\n\n.text-light .esg-filter-wrapper.eg-search-wrapper .eg-search-clean,\n.text-light .esg-filter-wrapper.eg-search-wrapper .eg-search-submit {\n	width:20px;\n	padding:0px;\n	margin-left: 5px;\n	margin-right:0px;\n}\n\n.text-light .esg-filter-wrapper.eg-search-wrapper .eg-search-input {\n	width:auto;\n	border:none !important;\n	line-height: 20px;\n	height: 20px;\n}\n\n.text-light .esg-dropdown-wrapper {\n	left: 0px;\n	background:rgba(255, 255, 255, 0.85);\n}\n\n.text-light .esg-dropdown-wrapper .esg-filterbutton {\n	position: relative;\n	text-align: left;\n	background:transparent;\n	padding:0px;\n	border:none;\n	box-shadow: none;\n	color: #999;\n}\n\n\n.text-light .esg-dropdown-wrapper .esg-filterbutton.hovered,\n.text-light .esg-dropdown-wrapper .esg-filterbutton.selected {\n	color: #444;\n}\n\n.text-light .esg-selected-filterbutton .eg-icon-down-open {\n	margin-right: -10px;\n	font-size: 9px;\n	color: #999;\n}\n.text-light .esg-selected-filterbutton.hovered .eg-icon-down-open,\n.text-light .esg-selected-filterbutton.hoveredfilter .eg-icon-down-open{\n	color:#444;\n}',NULL),(9,'Pat LaFontaine','pat-lafontaine','/*************************************\n	-	Pat LaFontaine 3.0.0 SKIN -\n*************************************/\n.pat-lafontaine .esg-overflowtrick {\n  margin: 20px 0\n}\n\n.pat-lafontaine .navigationbuttons,\n.pat-lafontaine .esg-pagination,\n.pat-lafontaine .esg-filters {\n	text-transform: uppercase;\n	text-align: center;\n}\n\n.pat-lafontaine .esg-filters {margin-bottom: 1px !important}\n\n.pat-lafontaine .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton,\n.pat-lafontaine input.eg-search-input,\n.pat-lafontaine .esg-filterbutton,\n.pat-lafontaine .esg-navigationbutton,\n.pat-lafontaine .esg-sortbutton,\n.pat-lafontaine .esg-cartbutton,\n.pat-lafontaine .esg-filter-wrapper.eg-search-wrapper  .eg-search-clean,\n.pat-lafontaine .esg-filter-wrapper.eg-search-wrapper  .eg-search-submit {\n	color: #000;\n	margin-right: 1px;\n	cursor: pointer;\n	position: relative;\n	z-index: 2;\n	padding: 0px 20px;\n	border: none;\n	line-height: 50px;\n	border-radius: 0;\n	font-size: 14px;\n	font-weight: 400;\n	font-family: \"Barlow Condensed\", sans-serif;\n	display: inline-block;\n	background: #eaedf1;\n	margin-bottom: 0 !important;\n	white-space: nowrap;\n	min-height: 50px;\n	vertical-align: middle;\n  	transition: all 0.3s ease;\n  	min-width: 50px;\n}\n\n.pat-lafontaine .esg-filter-wrapper {\n  margin: 0 !important\n    }\n\n.pat-lafontaine .esg-allfilter {\n  background: #f03e3f !important;\n  color: #fff !important\n}\n\n.pat-lafontaine .esg-allfilter.hovered {\n  background: #000 !important;\n  color: #fff !important\n}\n\n.pat-lafontaine span.eg-el-amount {\n  letter-spacing: 1px\n}\n\n.pat-lafontaine span.eg-el-amount:before {\n  content: \"[\";\n  opacity: 0.5\n}\n\n.pat-lafontaine span.eg-el-amount:after {\n  content: \"]\";\n  opacity: 0.5\n}\n\n.pat-lafontaine .esg-cartbutton a {\n	color: #000;\n}\n\n.pat-lafontaine input.eg-search-input::placeholder {\n	line-height: 40px;\n	vertical-align: middle;\n	color:#999;\n}\n\n.pat-lafontaine .esg-navigationbutton {\n	padding: 0px;\n	min-width: 50px;\n}\n\n.pat-lafontaine .esg-navigationbutton.esg-loadmore {\n  padding: 0 20px;\n  text-transform: uppercase;\n}\n\n.pat-lafontaine .esg-navigationbutton * {\n	color: #000;\n}\n\n.pat-lafontaine .esg-navigationbutton.hovered i {\n  	color: #fff;\n}\n\n.pat-lafontaine .esg-pagination-button:last-child {\n	margin-right: 0;\n}\n\n.pat-lafontaine .esg-sortbutton-wrapper,\n.pat-lafontaine .esg-cartbutton-wrapper {\n	display: inline-block;\n  	margin-right: 1px !important;\n  	margin-left: 0 !important;\n}\n\n.pat-lafontaine .esg-sortbutton-order,\n.pat-lafontaine .esg-cartbutton-order {\n	display: inline-block;\n	vertical-align: middle;\n	border: none;\n	width: 50px;\n	line-height: 50px;\n	font-size: 12px;\n	font-weight: 700;\n	color: #999;\n	cursor: pointer;\n	background: #eaedf1;\n	margin-left: 1px;\n  	border-radius: 0;\n}\n\n.pat-lafontaine .esg-sortbutton-order.eg-icon-down-open:before {\n  	content: \"arrow_downward\";\n 	font-family: \"Material Icons\";\n  	font-size: 18px;\n  	color: #000;\n  	vertical-align: middle;\n}\n\n.pat-lafontaine .esg-sortbutton-order.hovered.eg-icon-down-open:before {\n  color: #fff\n}\n\n.pat-lafontaine .esg-cartbutton {\n	color: #999;\n	cursor: default !important;\n 	border-radius: 0 !important;\n  	padding: 0 20px 0 16px\n}\n\n.pat-lafontaine .esg-cartbutton.hovered .eg-icon-basket,\n.pat-lafontaine .esg-cartbutton.hovered .ess-cart-content {\n  color: #fff\n}\n\n.pat-lafontaine .esg-cartbutton .esgicon-basket {\n	color: #999;\n	font-size: 15px;\n	line-height: 15px;\n	margin-right: 10px;\n}\n\n.pat-lafontaine .esg-cartbutton-wrapper {\n	cursor: default !important;\n}\n\n.pat-lafontaine .esg-sortbutton,\n.pat-lafontaine .esg-cartbutton {\n	display: inline-block;\n	position: relative;\n	cursor: pointer;\n	margin-right: 0px;\n	border-radius: 5px;\n}\n\n.pat-lafontaine input.eg-search-input.hovered,\n.pat-lafontaine input.eg-search-input:focus,\n.pat-lafontaine .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton.hovered,\n.pat-lafontaine .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton.hoveredfilter,\n.pat-lafontaine .esg-navigationbutton.hovered,\n.pat-lafontaine .esg-filterbutton.hovered,\n.pat-lafontaine .esg-sortbutton.hovered,\n.pat-lafontaine .esg-sortbutton-order.hovered,\n.pat-lafontaine .esg-cartbutton-order.hovered,\n.pat-lafontaine .esg-filterbutton.selected,\n.pat-lafontaine .esg-cartbutton.hovered,\n.pat-lafontaine .esg-filter-wrapper.eg-search-wrapper  .eg-search-clean.hovered,\n.pat-lafontaine .esg-filter-wrapper.eg-search-wrapper  .eg-search-submit.hovered {\n	border-color: none;\n	color: #fff;\n	background: #000;\n}\n\n.pat-lafontaine .esg-navigationbutton.hovered * {\n	color: #000;\n}\n\n.pat-lafontaine .esg-sortbutton-order.hovered.tp-desc {\n	color: #000;\n}\n\n.pat-lafontaine .esg-filter-checked {\n	color: #cbcbcb;\n	background: none;\n	margin-left: 10px;\n	font-size: 9px;\n	font-weight: 300;\n	line-height: 13px;\n	vertical-align: middle;\n  	display: inline-block;\n    transform: translateY(-1px);\n  	border: 1px solid #cbcbcb;\n}\n.pat-lafontaine .esg-filterbutton.hovered .esg-filter-checked {\n	color: #fff;\n	background: #000;\n}\n\n.pat-lafontaine .esg-filterbutton.selected .esg-filter-checked {\n  background: #fff;\n  color: #000;\n  border: 1px solid #fff;\n}\n\n.pat-lafontaine .esg-filter-wrapper.eg-search-wrapper {\n	white-space: nowrap;\n}\n\n.pat-lafontaine .esg-filter-wrapper.eg-search-wrapper .eg-search-submit {\n	margin-left: 5px;\n}\n\n.pat-lafontaine .esg-filter-wrapper.eg-search-wrapper .eg-search-clean,\n.pat-lafontaine .esg-filter-wrapper.eg-search-wrapper .eg-search-submit {\n	width:40px;\n	padding:0px;\n	margin-left: 5px;\n	margin-right:0px;\n}\n\n.pat-lafontaine .esg-filter-wrapper.eg-search-wrapper .eg-search-input {\n	width:auto;\n}\n\n.pat-lafontaine .esg-sortbutton {\n  	border-radius: 0;\n  	padding-right: 40px\n}\n\n.pat-lafontaine .esg-sortbutton:after,\n.pat-lafontaine .esg-selected-filterbutton .eg-icon-down-open:before{\n  	content: \"\";\n  	position: absolute;\n  	width: 5px;\n  	height: 5px;\n  	border-left: 1px solid #000;\n  	border-bottom: 1px solid #000;\n  	transform: rotate(-45deg) translateY(-6px);\n  	right: 15px;\n  	top: 50%\n}\n\n.pat-lafontaine .esg-sortbutton.hovered:after {\n  	border-left: 1px solid #fff;\n  	border-bottom: 1px solid #fff;\n}\n\n.pat-lafontaine .esg-dropdown-wrapper {\n	transform: translateZ(10px) translateX(-50%);\n	left: 50%;\n	background:transparent;\n	padding:0px;\n}\n\n.pat-lafontaine .esg-dropdown-wrapper .esg-filterbutton {\n	position: relative;\n  	width: 100%;\n}\n\n.pat-lafontaine .esg-selected-filterbutton .eg-icon-down-open {\n	margin-right: -10px;\n	font-size: 12px;\n	color:#999;\n}\n\n.pat-lafontaine .dropdownstyle .esg-filterbutton .esg-filter-checked {\n  margin-left: 0;\n  transform: translateY(-2px);\n}\n\n.pat-lafontaine .esg-selected-filterbutton.hoveredfilter .eg-icon-down-open,\n.pat-lafontaine .esg-selected-filterbutton.hovered .eg-icon-down-open {\n	color:#000;\n}\n\n.pat-lafontaine .eg-search-wrapper {background: #3d3b3e}\n.pat-lafontaine .eg-search-wrapper .eg-search-input {\n  background: #3d3b3e;\n  font-style: italic;\n  border-bottom: 1px solid #868689;\n  line-height: 22px;\n  min-height: 22px;\n  padding: 0;\n  margin: 0 0 0 20px !important;\n}\n\n.pat-lafontaine .eg-search-wrapper .eg-search-input.hovered,\n.pat-lafontaine .eg-search-wrapper .eg-search-input:focus,\n.pat-lafontaine .eg-search-wrapper .eg-search-input:active,\n.pat-lafontaine .esg-filter-wrapper.eg-search-wrapper .eg-search-submit {\n  background-color: #3d3b3e !important;\n  color: #fff !important;\n}\n\n.pat-lafontaine .eg-search-wrapper .eg-search-input.hovered,\n.pat-lafontaine .eg-search-wrapper input:-webkit-autofill,\n.pat-lafontaine .eg-search-wrapper input:-webkit-autofill:hover,\n.pat-lafontaine .eg-search-wrapper input:-webkit-autofill:focus {\n  border-bottom: 1px solid #fff;\n  -webkit-text-fill-color: #fff;\n  -webkit-box-shadow: 0 0 0px 1000px #3d3b3e inset;\n}\n\n.pat-lafontaine .esg-filter-wrapper.eg-search-wrapper .eg-search-submit {\n  margin-left: 0;\n  width: 46px;\n}\n.pat-lafontaine .esg-filter-wrapper.eg-search-wrapper .eg-search-submit.hovered {\n  background: #000;\n}\n\n.pat-lafontaine .esg-filter-wrapper.eg-search-wrapper .eg-search-clean {\n  margin-left: 0;\n  width: 46px;\n  background: #000;\n  color: #fff\n}\n\n.pat-lafontaine .esg-filter-wrapper.eg-search-wrapper .eg-search-clean.hovered {\n  background: #f03e3f;\n}\n\n@import url(\"https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,400;0,500;0,600;1,400&display=swap\");\n@import url(\"https://fonts.googleapis.com/icon?family=Material+Icons\");\n\n',NULL),(10,'Grant Fuhr','grant-fuhr','/*************************************\n	-	Grant Fuhr 3.0.0 SKIN -\n*************************************/\n.grant-fuhr .esg-filters {\n  margin-bottom: 20px !important;\n}\n\n.grant-fuhr .navigationbuttons,\n.grant-fuhr .esg-pagination,\n.grant-fuhr .esg-filters {\n	text-transform: uppercase;\n	text-align: center;\n}\n\n\n.grant-fuhr .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton,\n.grant-fuhr input.eg-search-input,\n.grant-fuhr .esg-filterbutton,\n.grant-fuhr .esg-navigationbutton,\n.grant-fuhr .esg-sortbutton,\n.grant-fuhr .esg-cartbutton,\n.grant-fuhr .esg-filter-wrapper.eg-search-wrapper  .eg-search-clean,\n.grant-fuhr .esg-filter-wrapper.eg-search-wrapper  .eg-search-submit {\n	color: #fff;\n	margin-right: 13px;\n	cursor: pointer;\n	position: relative;\n	z-index: 2;\n	padding: 0px 15px;\n	border: none;\n	line-height: 50px;\n	font-size: 12px;\n	font-weight: 400;\n	font-family: \"Open Sans\", sans-serif;\n  	font-style: italic;\n  	letter-spacing: 1px;\n	display: inline-block;\n	background: #2e2e34;\n	margin-bottom: 1px;\n	white-space: nowrap;\n	min-height: 50px;\n	vertical-align: top;\n  	border-radius: 0px !important;\n  	min-width: 42px;\n  	text-transform: none;\n}\n.grant-fuhr .esg-cartbutton-wrapper {\n  margin: 0 11px !important;\n}\n\n.grant-fuhr .esg-filterbutton.esg-allfilter {\n  	text-decoration: underline;\n}\n\n.grant-fuhr .esg-sortbutton-wrapper {\n  position: relative;\n  margin: 0 2px 0 8px !important;\n}\n\n.grant-fuhr .esg-sortbutton-wrapper .esg-sortbutton {\n  padding-right: 35px;\n}\n\n.grant-fuhr .esg-filterbutton:before,\n.grant-fuhr .eg-search-wrapper:before,\n.grant-fuhr .esg-cartbutton:before,\n.grant-fuhr .esg-sortbutton-wrapper .esg-sortbutton:before,\n.grant-fuhr .esg-filter-wrapper.dropdownstyle:before {\n  	width: 0;\n	height: 0;\n	border-style: solid;\n	border-width: 0 0 50px 12px;\n	border-color: transparent transparent #2e2e34 transparent;\n  	position: absolute;\n  	content:\"\";\n  	top: 0;\n  	left: -12px\n}\n\n.grant-fuhr .esg-sortbutton-wrapper .esg-sortbutton.hovered:before {\n  border-color: transparent transparent #fff157 transparent;\n}\n\n.grant-fuhr .esg-filterbutton:after,\n.grant-fuhr .eg-search-wrapper .eg-search-clean:after,\n.grant-fuhr .esg-cartbutton:after,\n.grant-fuhr .esg-sortbutton-order:after,\n.grant-fuhr .esg-filter-wrapper.dropdownstyle:after {\n  	width: 0;\n	height: 0;\n	border-style: solid;\n	border-width: 50px 12px 0 0;\n	border-color: #2e2e34 transparent transparent transparent;\n  	position: absolute;\n  	content:\"\";\n  	top: 0;\n  	right: -12px\n}\n\n.grant-fuhr .esg-filter-wrapper.dropdownstyle:after {\n  right: 1px\n}\n\n.grant-fuhr .esg-filterbutton.hovered:before,\n.grant-fuhr .esg-filterbutton.selected:before,\n.grant-fuhr .esg-cartbutton.hovered:before,\n.grant-fuhr .esg-sortbutton-wrapper.hovered:before,\n.grant-fuhr .esg-filter-wrapper.dropdownstyle:hover:before {\n  border-color: transparent transparent #fff157 transparent;\n}\n\n.grant-fuhr .esg-filterbutton.hovered:after,\n.grant-fuhr .esg-filterbutton.selected:after,\n.grant-fuhr .esg-cartbutton.hovered:after,\n.grant-fuhr .esg-sortbutton-wrapper.hovered:after,\n.grant-fuhr .esg-filter-wrapper.dropdownstyle:hover:after {\n  border-color: #fff157 transparent transparent transparent;\n}\n\n.esg-sortbutton-order.tp-desc {\n  transform: none;\n}\n\n.esg-sortbutton-order.tp-desc:before {\n  transform: scaleY(-1);\n}\n\n.grant-fuhr .esg-filterbutton .eg-el-amount {\n  position: absolute;\n  line-height: 27px;\n  min-width: 27px;\n  border-radius: 50%;\n  background: #fff157;\n  color: #000;\n  top: -13px;\n  right: -5px;\n  text-align: center;\n  z-index: 2;\n  font-style: normal;\n  font-weight: 600;\n\n}\n\n.grant-fuhr .esg-filterbutton .eg-el-amount:before,\n.grant-fuhr .esg-filterbutton .eg-el-amount:after {\n  display: none\n}\n\n.grant-fuhr .esg-filterbutton.selected .eg-el-amount {\n  background: #2e2e34;\n  color: #fff;\n}\n\n.grant-fuhr .esg-cartbutton a {\n	color: #fff;\n}\n\n.grant-fuhr .esg-cartbutton.hovered a {\n  color: #000;\n}\n\n.grant-fuhr .eg-search-wrapper {\n  position: relative\n}\n\n.grant-fuhr .eg-search-wrapper:before {\n  border-color: transparent transparent #fff157 transparent;\n}\n\n.grant-fuhr input.eg-search-input {\n  background: #fff157;\n  outline-style: none;\n  margin-bottom: 0 !important;\n}\n\n.grant-fuhr input.eg-search-input::placeholder {\n	line-height: 40px;\n	vertical-align: middle;\n	color:#000;\n}\n\n.grant-fuhr input.eg-search-input:focus::placeholder {\n  opacity: 0;\n}\n\n.grant-fuhr .esg-filter-wrapper.eg-search-wrapper .eg-search-submit {\n  margin-left: 0 !important;\n  min-width: 50px;\n  background: #fff157;\n  color: #000;\n}\n\n.grant-fuhr .esg-filter-wrapper.eg-search-wrapper .eg-search-submit.hovered {\n  background: #2e2e34 !important;\n  color: #fff157 !important;\n}\n\n.grant-fuhr .esg-filter-wrapper.eg-search-wrapper .eg-search-clean {\n  margin-left: 0 !important;\n  min-width: 50px;\n}\n\n.grant-fuhr .esg-filter-wrapper.eg-search-wrapper .eg-search-clean.hovered:after {\n	border-color: #fff157 transparent transparent transparent;\n}\n\n.grant-fuhr .esg-sortbutton-order.eg-icon-down-open:before {\n  	content: \"arrow_downward\";\n 	font-family: \"Material Icons\";\n  	font-size: 18px;\n  	color: #000;\n  	vertical-align: middle;\n}\n\n.grant-fuhr .esg-sortbutton-order.hovered.eg-icon-down-open:before {\n  color: #fff\n}\n\n.grant-fuhr .esg-navigationbutton {\n	padding: 0px;\n	width:40px;\n}\n\n.grant-fuhr .esg-navigationbutton.esg-loadmore {\n  	width: auto;\n  	padding: 0 20px\n}\n\n.grant-fuhr .esg-navigationbutton * {\n	color: #999;\n}\n\n.grant-fuhr .esg-pagination-button:last-child {\n	margin-right: 0;\n}\n\n.grant-fuhr .esg-navigationbutton.selected,\n.grant-fuhr .esg-navigationbutton.hovered {\n  color: #000 !important;\n}\n\n.grant-fuhr .esg-navigationbutton.esg-right,\n.grant-fuhr .esg-navigationbutton.esg-left {\n  width: 50px;\n}\n\n.grant-fuhr .esg-navigationbutton.esg-right i,\n.grant-fuhr .esg-navigationbutton.esg-left i {\n  color: #fff;\n}\n\n.grant-fuhr .esg-navigationbutton.esg-right.hovered i,\n.grant-fuhr .esg-navigationbutton.esg-left.hovered i {\n  color: #000;\n}\n\n.grant-fuhr .esg-sortbutton-wrapper,\n.grant-fuhr .esg-cartbutton-wrapper {\n	display: inline-block;\n}\n\n.grant-fuhr .esg-sortbutton-order,\n.grant-fuhr .esg-cartbutton-order {\n	display: inline-block;\n	vertical-align: top;\n	border: none;\n	width: 50px;\n	line-height: 40px;\n	border-radius: 0;\n	font-size: 12px;\n	font-weight: 700;\n	color: #999;\n	cursor: pointer;\n	background: #fff157;\n	margin-left: 0;\n  	line-height: 50px;\n}\n\n.grant-fuhr .esg-sortbutton-order.hovered,\n.grant-fuhr .esg-cartbutton-order.hovered {\n  	color: #fff157 !important;\n  	background: #2e2e34 !important;\n}\n\n.grant-fuhr .esg-sortbutton-order:after {\n	border-color: #fff157 transparent transparent transparent;\n}\n\n.grant-fuhr .esg-sortbutton-order.hovered:after {\n  border-color: #2e2e34 transparent transparent transparent;\n}\n\n.grant-fuhr .esg-cartbutton {\n	color: #999;\n	cursor: default !important;\n}\n\n.grant-fuhr .esg-cartbutton .esgicon-basket {\n	color: #999;\n	font-size: 15px;\n	line-height: 15px;\n	margin-right: 10px;\n}\n\n.grant-fuhr .esg-cartbutton-wrapper {\n	cursor: default !important;\n}\n\n.grant-fuhr .esg-sortbutton,\n.grant-fuhr .esg-cartbutton {\n	display: inline-block;\n	position: relative;\n	cursor: pointer;\n	margin-right: 0px;\n	border-radius: 5px;\n}\n\n.grant-fuhr input.eg-search-input.hovered,\n.grant-fuhr input.eg-search-input:focus,\n.grant-fuhr .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton.hovered,\n.grant-fuhr .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton.hoveredfilter,\n.grant-fuhr .esg-navigationbutton.hovered,\n.grant-fuhr .esg-filterbutton.hovered,\n.grant-fuhr .esg-sortbutton.hovered,\n.grant-fuhr .esg-sortbutton-order.hovered,\n.grant-fuhr .esg-cartbutton-order.hovered,\n.grant-fuhr .esg-filterbutton.selected,\n.grant-fuhr .esg-cartbutton.hovered,\n.grant-fuhr .esg-filter-wrapper.eg-search-wrapper  .eg-search-clean.hovered,\n.grant-fuhr .esg-filter-wrapper.eg-search-wrapper  .eg-search-submit.hovered {\n	border-color: none;\n	color: #000;\n	background: #fff157;\n}\n\n.grant-fuhr .esg-navigationbutton.hovered * {\n	color: #000;\n}\n\n.grant-fuhr .esg-sortbutton-order.hovered.tp-desc {\n	color: #000;\n}\n\n.grant-fuhr .esg-allfilter.esg-allfilter {\n}\n\n.grant-fuhr .esg-filter-checked {\n	color: #cbcbcb;\n	background: #cbcbcb;\n	margin-left: 10px;\n	font-size: 9px;\n	font-weight: 300;\n	line-height: 9px;\n	vertical-align: middle;\n}\n\n.grant-fuhr .esg-filterbutton.selected .esg-filter-checked,\n.grant-fuhr .esg-filterbutton.hovered .esg-filter-checked {\n	color: #fff;\n	background: #000;\n}\n\n.grant-fuhr .esg-filter-wrapper.eg-search-wrapper {\n	white-space: nowrap;\n}\n\n.grant-fuhr .esg-filter-wrapper.eg-search-wrapper .eg-search-submit {\n	margin-left: 5px;\n}\n\n.grant-fuhr .esg-filter-wrapper.eg-search-wrapper .eg-search-clean,\n.grant-fuhr .esg-filter-wrapper.eg-search-wrapper .eg-search-submit {\n	width:40px;\n	padding:0px;\n	margin-left: 5px;\n	margin-right:0px;\n}\n\n.grant-fuhr .esg-filter-wrapper.eg-search-wrapper .eg-search-input {\n	width:auto;\n}\n\n.grant-fuhr .esg-dropdown-wrapper {\n	transform: translateZ(10px) translateX(-50%);\n	left: 50%;\n	background:transparent;\n	padding:0px;\n}\n\n.grant-fuhr .esg-dropdown-wrapper .esg-filterbutton {\n	position: relative\n}\n\n.grant-fuhr .esg-selected-filterbutton .eg-icon-down-open {\n	margin-right: -10px;\n	font-size: 12px;\n	color:#999;\n}\n.grant-fuhr .esg-selected-filterbutton.hoveredfilter .eg-icon-down-open,\n.grant-fuhr .esg-selected-filterbutton.hovered .eg-icon-down-open {\n	color:#000;\n}\n\n.grant-fuhr .esg-sortbutton:after,\n.grant-fuhr .esg-selected-filterbutton .eg-icon-down-open:before {\n  	content: \"\";\n  	position: absolute;\n  	width: 5px;\n  	height: 5px;\n  	border-left: 1px solid #fff157;\n  	border-bottom: 1px solid #fff157;\n  	transform: rotate(-45deg) translateY(-6px);\n  	right: 15px;\n  	top: 50%\n}\n\n.grant-fuhr .esg-sortbutton.hovered:after,\n.grant-fuhr .esg-selected-filterbutton.hovered .eg-icon-down-open:before,\n.grant-fuhr .esg-filter-wrapper.dropdownstyle:hover .esg-selected-filterbutton .eg-icon-down-open:before {\n  	border-left: 1px solid #000;\n  	border-bottom: 1px solid #000;\n}\n\n.grant-fuhr .esg-dropdown-wrapper .esg-filterbutton {\n  width: 100%;\n  margin: 0;\n}\n\n.grant-fuhr .esg-dropdown-wrapper .esg-filterbutton:before,\n.grant-fuhr .esg-dropdown-wrapper .esg-filterbutton:after {\n  display: none;\n}\n\n.grant-fuhr .esg-filter-wrapper.dropdownstyle:hover .esg-selected-filterbutton {\n  background: #fff157;\n  color: #000;\n}\n\n@import url(\"https://fonts.googleapis.com/icon?family=Material+Icons\");\n\n',NULL),(11,'Leon Draisaitl','leon-draisaitl','/*************************************\n	-	LEON DRAISAITL 3.0.0 SKIN   -\n*************************************/\n.leon-draisaitl .esg-overflowtrick {\n  margin: 20px 0;\n}\n\n.leon-draisaitl .navigationbuttons,\n.leon-draisaitl .esg-pagination,\n.leon-draisaitl .esg-filters {\n	text-align: center;\n}\n\n.leon-draisaitl .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton,\n.leon-draisaitl input.eg-search-input,\n.leon-draisaitl .esg-filterbutton,\n.leon-draisaitl .esg-navigationbutton,\n.leon-draisaitl .esg-sortbutton,\n.leon-draisaitl .esg-cartbutton,\n.leon-draisaitl .esg-sortbutton-order,\n.leon-draisaitl .esg-cartbutton-order,\n.leon-draisaitl .esg-filter-wrapper.eg-search-wrapper  .eg-search-clean,\n.leon-draisaitl .esg-filter-wrapper.eg-search-wrapper  .eg-search-submit {\n	color: #000;\n	cursor: pointer;\n	padding: 0px 20px;\n	border: 2px solid #000;\n	line-height: 50px;\n	font-size: 16px;\n	font-weight: 500;\n	font-family: \"Roboto Mono\", monospace;\n 	display: inline-block;\n	background: transparent;\n	margin: -2px -2px 0 0 !important;\n	white-space: nowrap;\n	min-height: 50px;\n	vertical-align: middle;\n  	min-width: 54px;\n  	box-shadow: inset 0px 0px 0px 0px #000;\n  	transition: all 0.4s ease;\n}\n\n.leon-draisaitl .esg-sortbutton-wrapper,\n.leon-draisaitl .esg-filter-wrapper,\n.leon-draisaitl .esg-cartbutton-wrapper {\n  margin: 0 !important;\n}\n\n.leon-draisaitl .esg-cartbutton a {\n	color:#000;\n}\n\n.leon-draisaitl input.eg-search-input::placeholder {\n	line-height: 30px;\n	vertical-align: middle;\n	color:#000;\n}\n\n.leon-draisaitl input.eg-search-input.hovered::placeholder {\n  color: #fff;\n}\n\n.leon-draisaitl .esg-navigationbutton * {\n	color: #000;\n}\n\n.leon-draisaitl .esg-left,\n.leon-draisaitl .esg-right {\n	color: #000;\n	padding: 0px 7px;\n}\n\n.leon-draisaitl .esg-pagination-button:last-child {\n	margin-right: 0;\n}\n\n.leon-draisaitl .esg-sortbutton-wrapper,\n.leon-draisaitl .esg-cartbutton-wrapper {\n	display: inline-block;\n	vertical-align: top;\n}\n\n.leon-draisaitl .esg-sortbutton-order,\n.leon-draisaitl .esg-cartbutton-order {\n	padding: 0px;\n	width: 29px;\n	font-size: 9px;\n}\n\n.leon-draisaitl .esg-cartbutton {\n	color: #333;\n	cursor: default !important;\n}\n\n.leon-draisaitl .esg-cartbutton.hovered *,\n.leon-draisaitl .esg-navigationbutton.hovered * {\n  color: #fff !important;\n}\n\n.leon-draisaitl .esg-cartbutton .esgicon-basket {\n	color: #333;\n	font-size: 15px;\n	line-height: 15px;\n	margin-right: 10px;\n}\n\n.leon-draisaitl .esg-cartbutton-wrapper {\n	cursor: default !important;\n}\n\n.leon-draisaitl .esg-sortbutton,\n.leon-draisaitl .esg-cartbutton {\n	display: inline-block;\n	position: relative;\n	cursor: pointer;\n	margin-right: 5px;\n}\n\n.leon-draisaitl input.eg-search-input.hovered,\n.leon-draisaitl input.eg-search-input:focus,\n.leon-draisaitl .esg-navigationbutton.hovered,\n.leon-draisaitl .esg-filterbutton.hovered,\n.leon-draisaitl .esg-sortbutton.hovered,\n.leon-draisaitl .esg-sortbutton-order.hovered,\n.leon-draisaitl .esg-cartbutton.hovered,\n.leon-draisaitl .esg-filterbutton.selected,\n.leon-draisaitl .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton.hovered,\n.leon-draisaitl .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton.hoveredfilter,\n.leon-draisaitl .esg-filter-wrapper.eg-search-wrapper  .eg-search-clean.hovered,\n.leon-draisaitl .esg-filter-wrapper.eg-search-wrapper  .eg-search-submit.hovered {\n	background-color: #fff;\n	border-color: #000;\n	color: #fff;\n	box-shadow: inset 0px 0px 0px 50px #000;\n}\n\n.leon-draisaitl .esg-cartbutton.hovered a {\n	color:#000;\n}\n\n.leon-draisaitl .esg-navigationbutton.hovered * {\n	color: #333;\n}\n\n.leon-draisaitl .esg-sortbutton-order.hovered .tp-desc {\n	border-color: #bbb;\n	color: #333;\n	box-shadow: 0px -3px 5px 0px rgba(0, 0, 0, 0.13) !important;\n}\n\n.leon-draisaitl .esg-filter-checked {\n	color: #aaa;\n  	border: 2px solid #000;\n	background: transparent;\n	margin-left: 10px;\n	font-size: 9px;\n	font-weight: 400;\n	line-height: 14px;\n	vertical-align: middle;\n  	text-align: center;\n  	min-width: 18px;\n  	display: inline-block;\n}\n\n.leon-draisaitl .esg-filterbutton.selected .esg-filter-checked,\n.leon-draisaitl .esg-filterbutton.hovered .esg-filter-checked {\n	color: #000;\n	background: #fff;\n}\n\n.leon-draisaitl .esg-filter-wrapper.eg-search-wrapper {\n	line-height: 30px;\n	white-space: nowrap;\n}\n\n.leon-draisaitl .esg-filter-wrapper.eg-search-wrapper .eg-search-submit {\n	margin-left: 5px;\n}\n\n.leon-draisaitl .esg-filter-wrapper.eg-search-wrapper .eg-search-clean,\n.leon-draisaitl .esg-filter-wrapper.eg-search-wrapper .eg-search-submit {\n	width:29px;\n	padding:0px;\n	margin-left: 5px;\n	margin-right:0px;\n}\n\n.leon-draisaitl .esg-filter-wrapper.eg-search-wrapper .eg-search-input {\n	width:auto;\n	border-radius:0px;\n}\n\n.leon-draisaitl .esg-dropdown-wrapper {\n	left: 0px;\n	background: #fff;\n  	border: 2px solid #000;\n  	margin-top: -2px;\n  	padding: 0;\n}\n\n.leon-draisaitl .esg-dropdown-wrapper .esg-filterbutton {\n	position: relative;\n	text-align: left;\n	background:transparent;\n	padding: 5px 20px;\n	border:none;\n	box-shadow: none;\n  	box-sizing: border-box;\n}\n\n.leon-draisaitl .esg-dropdown-wrapper .esg-filterbutton.esg-allfilter {\n  width: 100%;\n}\n\n.leon-draisaitl .esg-dropdown-wrapper .esg-filterbutton.selected,\n.leon-draisaitl .esg-dropdown-wrapper .esg-filterbutton.hovered {\n  background: #000;\n}\n\n.leon-draisaitl .esg-dropdown-wrapper .esg-filterbutton .esg-filter-checked {\n  margin: 0 10px 0 -2px;\n}\n\n.leon-draisaitl .esg-selected-filterbutton .eg-icon-down-open {\n	margin-right: -10px;\n	font-size: 9px;\n	color:#000;\n}\n.leon-draisaitl .esg-selected-filterbutton.hovered .eg-icon-down-open,\n.leon-draisaitl .esg-selected-filterbutton.hoveredfilter .eg-icon-down-open {\n	color: #fff;\n}\n\n.leon-draisaitl .esg-sortbutton-order.eg-icon-down-open:before {\n    content: \"arrow_downward\";\n    font-family: \"Material Icons\";\n  	font-size: 19px;\n  	vertical-align: middle;\n}\n\n@import url(\"https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;500&display=swap\");\n@import url(\"https://fonts.googleapis.com/icon?family=Material+Icons\");\n',NULL),(12,'Uwe Krupp','uwe-krupp','/*************************************\n	-	UWE KRUPP 3.0.0 SKIN   -\n*************************************/\n.uwe-krupp .esg-overflowtrick {\n  margin: 50px 0;\n}\n\n.uwe-krupp .navigationbuttons,\n.uwe-krupp .esg-pagination,\n.uwe-krupp .esg-filters {\n	text-align: center;\n}\n\n.uwe-krupp .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton,\n.uwe-krupp input.eg-search-input,\n.uwe-krupp .esg-filterbutton,\n.uwe-krupp .esg-navigationbutton,\n.uwe-krupp .esg-sortbutton,\n.uwe-krupp .esg-cartbutton,\n.uwe-krupp .esg-sortbutton-order,\n.uwe-krupp .esg-cartbutton-order,\n.uwe-krupp .esg-filter-wrapper.eg-search-wrapper  .eg-search-clean,\n.uwe-krupp .esg-filter-wrapper.eg-search-wrapper  .eg-search-submit {\n	color: #6a666b;\n  	letter-spacing: 1px;\n	margin-right: 5px;\n	cursor: pointer;\n	padding: 0px 15px;\n	line-height: 40px;\n	font-size: 13px;\n	font-weight: 400;\n	font-family: \"Arvo\", serif;\n 	display: inline-block;\n	background: rgba(255, 255, 255, 0.65);\n	margin-bottom: 5px;\n	white-space: nowrap;\n	min-height: 40px;\n	vertical-align: middle;\n  	min-width: 40px;\n  	border-radius: 12px;\n}\n\n.uwe-krupp .esg-cartbutton a {\n	color:#000;\n}\n\n.uwe-krupp input.eg-search-input::placeholder {\n	line-height: 30px;\n	vertical-align: middle;\n	color: #6a666b;\n}\n\n.uwe-krupp input.eg-search-input:focus::placeholder {\n  opacity: 0;\n}\n\n.uwe-krupp .esg-navigationbutton.esg-right,\n.uwe-krupp .esg-navigationbutton.esg-left {\n  background: #b0a5b4;\n}\n\n.uwe-krupp .esg-navigationbutton.esg-left {\n  border-radius: 0 12px 12px 0px;\n}\n\n.uwe-krupp .esg-navigationbutton.esg-right {\n  border-radius: 12px 0px 0px 12px;\n}\n\n.uwe-krupp .esg-navigationbutton * {\n	color: #000;\n}\n\n.uwe-krupp .esg-left,\n.uwe-krupp .esg-right {\n	color: #000;\n	padding: 0px 7px;\n}\n\n.uwe-krupp .esg-pagination-button:last-child {\n	margin-right: 0;\n}\n\n.uwe-krupp .esg-sortbutton-wrapper,\n.uwe-krupp .esg-cartbutton-wrapper {\n	display: inline-block;\n	vertical-align: top;\n}\n\n.uwe-krupp .esg-sortbutton-order,\n.uwe-krupp .esg-cartbutton-order {\n	padding: 0px;\n	width: 29px;\n	font-size: 9px;\n}\n\n.uwe-krupp .esg-cartbutton {\n	color: #757176;\n	cursor: default !important;\n}\n\n.uwe-krupp .esg-cartbutton .esgicon-basket {\n	color: #757176;\n	font-size: 15px;\n	line-height: 15px;\n	margin-right: 10px;\n}\n\n.uwe-krupp .esg-cartbutton .ess-cart-content {\n  color: #757176;\n}\n\n.uwe-krupp .esg-cartbutton-wrapper {\n	cursor: default !important;\n}\n\n.uwe-krupp .esg-sortbutton,\n.uwe-krupp .esg-cartbutton {\n	display: inline-block;\n	position: relative;\n	cursor: pointer;\n	margin-right: 5px;\n}\n\n.uwe-krupp input.eg-search-input.hovered,\n.uwe-krupp input.eg-search-input:focus,\n.uwe-krupp .esg-navigationbutton.hovered,\n.uwe-krupp .esg-filterbutton.hovered,\n.uwe-krupp .esg-sortbutton.hovered,\n.uwe-krupp .esg-sortbutton-order.hovered,\n.uwe-krupp .esg-cartbutton.hovered,\n.uwe-krupp .esg-filterbutton.selected,\n.uwe-krupp .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton.hovered,\n.uwe-krupp .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton.hoveredfilter,\n.uwe-krupp .esg-filter-wrapper.eg-search-wrapper  .eg-search-clean.hovered,\n.uwe-krupp .esg-filter-wrapper.eg-search-wrapper  .eg-search-submit.hovered {\n	background-color: #fff;\n	color: #333;\n}\n\n.uwe-krupp .esg-cartbutton.hovered a {\n	color:#000;\n}\n\n.uwe-krupp .esg-navigationbutton.hovered * {\n	color: #333;\n}\n\n.uwe-krupp .esg-sortbutton-order.hovered .tp-desc {\n	border-color: #bbb;\n	color: #333;\n	box-shadow: 0px -3px 5px 0px rgba(0, 0, 0, 0.13) !important;\n}\n\n.uwe-krupp .esg-filter-checked {\n	color: #b0a5b4;\n	background: transparent;\n  	border: 1px solid #b0a5b4;\n	margin-left: 10px;\n	font-size: 9px;\n	font-weight: 400;\n	line-height: 12px;\n 	min-width: 12px;\n	vertical-align: middle;\n  	display: inline-block;\n  	transform: translateY(-1px);\n}\n\n.uwe-krupp .esg-filterbutton.selected .esg-filter-checked,\n.uwe-krupp .esg-filterbutton.hovered .esg-filter-checked {\n	color: #fff;\n	background: #000;\n  	border: 1px solid #000;\n}\n\n.uwe-krupp .esg-filter-wrapper.eg-search-wrapper {\n	line-height: 30px;\n	white-space: nowrap;\n}\n\n.uwe-krupp .esg-filter-wrapper.eg-search-wrapper .eg-search-submit {\n	margin-left: 5px;\n}\n\n.uwe-krupp .esg-filter-wrapper.eg-search-wrapper .eg-search-clean,\n.uwe-krupp .esg-filter-wrapper.eg-search-wrapper .eg-search-submit {\n	width:29px;\n	padding:0px;\n	margin-left: 5px;\n	margin-right:0px;\n}\n\n.uwe-krupp .esg-filter-wrapper.eg-search-wrapper .eg-search-input {\n	width:auto;\n	border-radius: 12px 0px 0px 12px;\n  	border: none;\n}\n\n.uwe-krupp .esg-filter-wrapper.eg-search-wrapper .eg-search-submit {\n  border-radius: 0px 12px 12px 0px;\n  margin-left: 0;\n}\n\n.uwe-krupp .esg-filter-wrapper.eg-search-wrapper .eg-search-submit.hovered,\n.uwe-krupp .esg-filter-wrapper.eg-search-wrapper .eg-search-clean {\n  background: #b0a5b4;\n  color: #fff;\n}\n\n.uwe-krupp .esg-dropdown-wrapper {\n	left: 0px;\n	background:#fff;\n}\n\n.uwe-krupp .esg-dropdown-wrapper .esg-filterbutton {\n	position: relative;\n	text-align: left;\n	background:transparent;\n	padding:0px;\n	border:none;\n	box-shadow: none;\n}\n\n.uwe-krupp .esg-selected-filterbutton .eg-icon-down-open {\n	margin-right: -10px;\n	font-size: 9px;\n	color:#000;\n}\n.uwe-krupp .esg-selected-filterbutton.hovered .eg-icon-down-open,\n.uwe-krupp .esg-selected-filterbutton.hoveredfilter .eg-icon-down-open{\n	color:#333;\n}\n\n.uwe-krupp .esg-sortbutton-order.eg-icon-down-open {\n  background: #b0a5b4;\n  color: #fff;\n}\n\n.uwe-krupp .esg-sortbutton-order.eg-icon-down-open:before {\n    content: \"arrow_downward\";\n    font-family: \"Material Icons\";\n  	font-size: 19px;\n  	vertical-align: middle;\n}\n\n@import url(\"https://fonts.googleapis.com/css2?family=Arvo:wght@400;700&display=swap\");\n@import url(\"https://fonts.googleapis.com/icon?family=Material+Icons\");\n\n',NULL),(13,'Clark Gillies','clark-gillies','/*************************************\n	-	CLARK GILLIES 3.0.0 SKIN   -\n*************************************/\n.clark-gillies .navigationbuttons,\n.clark-gillies .esg-pagination,\n.clark-gillies .esg-filters {\n	text-align: center;\n}\n\n.clark-gillies .esg-filters {\n  margin-bottom: 20px !important;\n}\n\n.clark-gillies .esg-filter-wrapper {\n  margin: 0 !important;\n}\n\n.clark-gillies .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton,\n.clark-gillies input.eg-search-input,\n.clark-gillies .esg-filterbutton,\n.clark-gillies .esg-navigationbutton,\n.clark-gillies .esg-sortbutton,\n.clark-gillies .esg-cartbutton,\n.clark-gillies .esg-sortbutton-order,\n.clark-gillies .esg-cartbutton-order,\n.clark-gillies .esg-filter-wrapper.eg-search-wrapper  .eg-search-clean,\n.clark-gillies .esg-filter-wrapper.eg-search-wrapper  .eg-search-submit {\n	color: #000;\n	margin: 0 10px 0 0 !important;\n	cursor: pointer;\n	padding: 0px 10px;\n  	border: none;\n	line-height: 28px;\n	font-size: 13px;\n	font-weight: 400;\n	font-family: \"Arvo\", serif;\n 	display: inline-block;\n	background: transparent;\n	white-space: nowrap;\n	min-height: 28px;\n	vertical-align: middle;\n  	letter-spacing: -0.5px;\n  	min-width: 24px;\n  	position: relative;\n  	transition: all 0.3s ease;\n}\n\n.clark-gillies .esg-filterbutton:before,\n.clark-gillies .esg-selected-filterbutton:before,\n.clark-gillies .esg-sortbutton:before {\n  content: \"\";\n  position: absolute;\n  z-index: -1;\n  height: 2px;\n  width: calc(100% - 20px);\n  left: 10px;\n  bottom: 0;\n  background: #000;\n  transition: all 0.3s ease;\n}\n\n.clark-gillies .esg-filterbutton.hovered:before,\n.clark-gillies .esg-filterbutton.selected:before,\n.clark-gillies .esg-filter-wrapper:hover .esg-selected-filterbutton:before,\n.clark-gillies .esg-sortbutton.hovered:before{\n  width: 100%;\n  height: 100%;\n  left: 0;\n}\n\n.clark-gillies .esg-selected-filterbutton.hoveredfilter .eg-icon-down-open {\n  color: #fff !important;\n}\n\n.clark-gillies .esg-cartbutton a {\n	color:#fff;\n}\n\n.clark-gillies input.eg-search-input::placeholder {\n	line-height: 30px;\n	vertical-align: middle;\n	color:#000;\n}\n\n.clark-gillies input.eg-search-input:focus::placeholder {\n  opacity: 0;\n}\n\n.clark-gillies .esg-navigationbutton {\n  min-width: 28px;\n}\n\n.clark-gillies .esg-navigationbutton * {\n	color: #fff;\n}\n\n.clark-gillies .esg-left,\n.clark-gillies .esg-right,\n.clark-gillies .esg-loadmore {\n	color: #fff;\n	padding: 2px 7px;\n  	transition: all 0.3s ease;\n  	box-shadow: inset 0 0 0 20px #000;\n}\n.clark-gillies .esg-left.hovered,\n.clark-gillies .esg-right.hovered,\n.clark-gillies .esg-loadmore.hovered {\n  color: #000 !important;\n  box-shadow: inset 0 0 0 2px #000;\n}\n\n.clark-gillies .esg-loadmore {\n  padding: 0 10px;\n}\n\n.clark-gillies .esg-pagination-button:last-child {\n	margin-right: 0;\n}\n\n.clark-gillies .esg-sortbutton-wrapper,\n.clark-gillies .esg-cartbutton-wrapper {\n	display: inline-block;\n	vertical-align: top;\n}\n\n.clark-gillies .esg-sortbutton-order,\n.clark-gillies .esg-cartbutton-order,\n.clark-gillies .esg-filter-wrapper.eg-search-wrapper .eg-search-clean {\n	padding: 0px;\n	min-width: 30px;\n	font-size: 9px;\n  	transition: all 0.3s ease;\n  	box-shadow: inset 0 0 0 2px #000;\n  	margin-right: 20px !important;\n}\n\n.clark-gillies .esg-sortbutton-order.hovered,\n.clark-gillies .esg-cartbutton-order.hovered,\n.clark-gillies .esg-filter-wrapper.eg-search-wrapper .eg-search-clean.hovered {\n  	box-shadow: inset 0 0 0 20px #000\n}\n\n.clark-gillies .esg-filter-wrapper.eg-search-wrapper .eg-search-clean {\n  font-size: 12px;\n  line-height: 28px !important;\n}\n\n.clark-gillies .esg-sortbutton-order.eg-icon-down-open:before {\n    content: \"arrow_downward\";\n    font-family: \"Material Icons\";\n  	font-size: 19px;\n  	vertical-align: middle;\n}\n\n.clark-gillies .esg-cartbutton {\n	color: #fff;\n	cursor: default !important;\n  	transition: all 0.3s ease;\n  	box-shadow: inset 0 0 0 20px #000;\n}\n\n.clark-gillies .esg-cartbutton.hovered {\n  	box-shadow: inset 0 0 0 2px #000;\n}\n\n.clark-gillies .esg-cartbutton .ess-cart-content {\n  	color: #fff;\n}\n\n.clark-gillies .esg-cartbutton.hovered .ess-cart-content {\n  	color: #000;\n}\n\n.clark-gillies .esg-cartbutton .esgicon-basket {\n	color: #fff;\n	font-size: 15px;\n	line-height: 15px;\n	margin-right: 10px;\n}\n\n.clark-gillies .esg-cartbutton-wrapper {\n	cursor: default !important;\n}\n\n.clark-gillies .esg-sortbutton,\n.clark-gillies .esg-cartbutton {\n	display: inline-block;\n	position: relative;\n	cursor: pointer;\n	margin-right: 0 !important;\n}\n\n.clark-gillies input.eg-search-input.hovered,\n.clark-gillies input.eg-search-input:focus,\n.clark-gillies .esg-navigationbutton.hovered,\n.clark-gillies .esg-filterbutton.hovered,\n.clark-gillies .esg-sortbutton.hovered,\n.clark-gillies .esg-sortbutton-order.hovered,\n.clark-gillies .esg-cartbutton.hovered,\n.clark-gillies .esg-filterbutton.selected,\n.clark-gillies .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton.hovered,\n.clark-gillies .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton.hoveredfilter,\n.clark-gillies .esg-filter-wrapper.eg-search-wrapper  .eg-search-clean.hovered,\n.clark-gillies .esg-filter-wrapper.eg-search-wrapper  .eg-search-submit.hovered {\n	color: #fff;\n}\n\n.clark-gillies .esg-cartbutton.hovered a {\n	color:#000;\n}\n\n.clark-gillies .esg-navigationbutton.hovered * {\n	color: #333;\n}\n\n.clark-gillies .esg-sortbutton-order.hovered .tp-desc {\n	border-color: #bbb;\n	color: #333;\n	box-shadow: 0px -3px 5px 0px rgba(0, 0, 0, 0.13) !important;\n}\n\n.clark-gillies .esg-filter-checked {\n	color: #000;\n	margin-left: 10px;\n	font-size: 9px;\n	font-weight: 400;\n	line-height: 20px;\n	vertical-align: middle;\n  	border: 1px solid #000;\n  	background: transparent;\n  	padding: 1px 0;\n}\n\n.clark-gillies .esg-filterbutton.selected .esg-filter-checked,\n.clark-gillies .esg-filterbutton.hovered .esg-filter-checked,\n.clark-gillies .esg-dropdown-wrapper .esg-filter-checked {\n	color: #000;\n	background: #fff;\n}\n\n.clark-gillies .esg-dropdown-wrapper .esg-filter-checked {\n  margin-left: 0;\n}\n\n.clark-gillies .esg-filter-wrapper.eg-search-wrapper {\n	line-height: 22px;\n	white-space: nowrap;\n}\n\n.clark-gillies .esg-filter-wrapper.eg-search-wrapper .eg-search-submit {\n	margin-left: 0;\n  	border-bottom: 2px solid #000;\n}\n\n.clark-gillies .esg-filter-wrapper.eg-search-wrapper .eg-search-clean,\n.clark-gillies .esg-filter-wrapper.eg-search-wrapper .eg-search-submit {\n	width: 29px;\n	padding: 0px;\n	margin-left: 0px;\n	margin-right: 0px;\n  	min-height: 26px;\n  	line-height: 26px;\n}\n\n.clark-gillies .esg-filter-wrapper.eg-search-wrapper .eg-search-input {\n	width: auto;\n	border-radius: 0px;\n  	border-bottom: 2px solid #000;\n  	margin: 0 !important;\n  	padding: 2px 0;\n  	min-height: 22px;\n  	line-height: 22px;\n  	font-size: 13px;\n}\n\n.clark-gillies .esg-filter-wrapper.eg-search-wrapper .eg-search-input:focus,\n.clark-gillies .esg-filter-wrapper.eg-search-wrapper .eg-search-input:active,\n.clark-gillies .esg-filter-wrapper.eg-search-wrapper .eg-search-input.hovered {\n  color: #000;\n}\n\n.clark-gillies .esg-dropdown-wrapper {\n	left: 0px;\n	background: #000;\n 	width: 100%;\n}\n\n.clark-gillies .esg-dropdown-wrapper .esg-filterbutton {\n	position: relative;\n	text-align: left;\n	background: transparent;\n	padding: 0px;\n	border: none;\n	box-shadow: none;\n  	color: #fff;\n}\n\n.clark-gillies .esg-dropdown-wrapper .esg-filterbutton.hovered {\n  opacity: 0.6;\n}\n\n.clark-gillies .esg-selected-filterbutton .eg-icon-down-open {\n	margin-right: -10px;\n	font-size: 9px;\n	color:#000;\n}\n.clark-gillies .esg-selected-filterbutton.hovered .eg-icon-down-open,\n.clark-gillies .esg-selected-filterbutton.hoveredfilter .eg-icon-down-open{\n	color:#333;\n}\n\n.clark-gillies .esg-filterbutton .eg-el-amount:before,\n.clark-gillies .esg-filterbutton .eg-el-amount:after {\n  content: \"\";\n}\n\n@import url(\"https://fonts.googleapis.com/css2?family=Arvo:wght@400;700&display=swap\");\n@import url(\"https://fonts.googleapis.com/icon?family=Material+Icons\");\n\n',NULL),(14,'Rod Langway','rod-langway','/*************************************\n	-	ROD LANGWAY 3.0.0 SKIN	-\n*************************************/\n.rod-langway .esg-overflowtrick {\n  margin: 20px 0;\n}\n\n.rod-langway .navigationbuttons,\n.rod-langway .esg-pagination,\n.rod-langway .esg-filters {\n	text-align: center;\n}\n\n.rod-langway .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton,\n.rod-langway input.eg-search-input,\n.rod-langway .esg-filterbutton,\n.rod-langway .esg-navigationbutton,\n.rod-langway .esg-sortbutton,\n.rod-langway .esg-cartbutton,\n.rod-langway .esg-filter-wrapper.eg-search-wrapper  .eg-search-clean,\n.rod-langway .esg-filter-wrapper.eg-search-wrapper  .eg-search-submit {\n	color: #000;\n	margin-right: 0;\n	cursor: pointer;\n	padding: 4px 17px 0;\n	border: none;\n  	box-sizing: border-box;\n	line-height: 35px;\n	font-size: 10px;\n  	text-transform: uppercase;\n  	letter-spacing: 3px;\n	font-weight: 700;\n	font-family: \"Josefin Sans\", sans-serif;\n	display: inline-block;\n	background: #fff;\n	margin-bottom: 5px;\n	white-space: nowrap;\n	min-height: 40px;\n	vertical-align: middle;\n  	border-radius: 0;\n}\n.rod-langway  .esg-filterbutton .eg-el-amount {\n  background: #ced3d7;\n  display: inline-block;\n  line-height: 24px;\n  min-width: 26px;\n  padding-top: 2px;\n  text-align: center;\n  font-weight: 500;\n  font-size: 12px;\n  letter-spacing: 0;\n}\n\n.rod-langway  .esg-filterbutton.hovered .eg-el-amount,\n.rod-langway  .esg-filterbutton.selected .eg-el-amount {\n  background: #2f2f3a;\n  color: #fff;\n}\n\n.rod-langway .esg-filterbutton .eg-el-amount:before,\n.rod-langway .esg-filterbutton .eg-el-amount:after {\n  content: \"\";\n}\n\n.rod-langway .esg-filter-wrapper.eg-search-wrapper  .eg-search-clean,\n.rod-langway .esg-filter-wrapper.eg-search-wrapper  .eg-search-submit {\n  margin-left: 0 !important;\n  font-size: 14px;\n  letter-spacing: 0;\n  line-height: 40px;\n}\n\n.rod-langway .esg-filter-wrapper.eg-search-wrapper  .eg-search-clean,\n.rod-langway .esg-cartbutton {\n  background: #ced3d7;\n}\n\n.rod-langway .esg-filter-wrapper.eg-search-wrapper  .eg-search-clean.hovered,\n.rod-langway .esg-cartbutton.hovered {\n  background: #b0b5b9 !important;\n}\n\n.rod-langway .esg-cartbutton a {\n	color: #000;\n}\n\n.rod-langway .esg-cartbutton a:hover {\n	color: #000;\n}\n\n.rod-langway input.eg-search-input::placeholder {\n	line-height: 38px;\n	vertical-align: middle;\n	color: #b0b5b9;\n}\n\n.rod-langway input.eg-search-input:focus::placeholder {\n  opacity: 0;\n}\n\n.rod-langway .esg-navigationbutton {\n  line-height: 40px;\n  min-width: 40px;\n  letter-spacing: 0;\n  font-size: 14px;\n  font-weight: 400;\n}\n\n.rod-langway .esg-navigationbutton.esg-left {\n  transform: translateX(-40px)\n}\n\n.rod-langway .esg-navigationbutton.esg-right {\n  transform: translateX(40px)\n}\n\n.rod-langway .esg-navigationbutton * {\n	color: #000;\n\n}\n\n.rod-langway .esg-navigationbutton.hovered i {\n	color: #000;\n}\n\n.rod-langway .esg-navigationbutton {\n	padding: 0px 11px;\n}\n\n.rod-langway .esg-pagination-button {\n	padding: 0px 16px;\n}\n\n.rod-langway .esg-pagination-button:last-child {\n	margin-right: 0;\n}\n\n.rod-langway .esg-sortbutton-wrapper,\n.rod-langway .esg-cartbutton-wrapper {\n	display: inline-block;\n}\n\n.rod-langway .esg-sortbutton-order,\n.rod-langway .esg-cartbutton-order {\n	display: inline-block;\n	vertical-align: top;\n	width: 40px;\n	line-height: 40px;\n	border-radius: 0;\n  	border: none;\n	font-size: 12px;\n	font-weight: 600;\n	color: #000;\n	cursor: pointer;\n  	background: #ced3d7;\n}\n\n.rod-langway .esg-sortbutton-order.hovered,\n.rod-langway .esg-cartbutton-order.hovered {\n  background: #b0b5b9 !important;\n}\n\n.rod-langway .esg-cartbutton {\n	color: #fff;\n	cursor: default !important;\n}\n\n.rod-langway .esg-cartbutton .esgicon-basket {\n	color: #fff;\n	font-size: 15px;\n	line-height: 15px;\n	margin-right: 10px;\n}\n\n.rod-langway .esg-cartbutton-wrapper {\n	cursor: default !important;\n}\n\n.rod-langway .esg-sortbutton,\n.rod-langway .esg-cartbutton {\n	display: inline-block;\n	position: relative;\n	cursor: pointer;\n}\n\n.rod-langway .esg-sortbutton{\n	margin-right: 0px;\n	border-right: none;\n	border-radius: 0;\n}\n\n.rod-langway .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton.hovered,\n.rod-langway .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton.hoveredfilter,\n.rod-langway .esg-navigationbutton.hovered,\n.rod-langway .esg-filterbutton.hovered,\n.rod-langway .esg-sortbutton.hovered,\n.rod-langway .esg-sortbutton-order.hovered,\n.rod-langway .esg-cartbutton-order.hovered,\n.rod-langway .esg-filterbutton.selected,\n.rod-langway .esg-cartbutton.hovered,\n.rod-langway .esg-filter-wrapper.eg-search-wrapper  .eg-search-clean.hovered,\n.rod-langway .esg-filter-wrapper.eg-search-wrapper  .eg-search-submit.hovered {\n	color: #000;\n	box-shadow: none;\n	background: #ced3d7;\n}\n\n.rod-langway .esg-navigationbutton.hovered * {\n	color: #fff;\n}\n\n.rod-langway .esg-sortbutton-order.hovered .tp-desc {\n	border-color: #fff;\n	border-color: rgba(255, 255, 255, 0.2);\n	color: #fff;\n	box-shadow: 0px -3px 5px 0px rgba(0, 0, 0, 0.13) !important;\n}\n\n.rod-langway .esg-filter-checked {\n	color: #ced3d7;\n  	border: 1px solid #333;\n  	letter-spacing: 0;\n	background: transparent;\n	font-size: 9px;\n	font-weight: 300;\n	vertical-align: middle;\n  	line-height: 14px;\n	margin-left: 7px;\n  	display: inline-block;\n  	width: 14px;\n  	height: 14px;\n  	transform: translateY(-2px);\n}\n\n.rod-langway .esg-filter-wrapper.dropdownstyle .esg-filter-checked {\n	margin-left: 0;\n	margin-right: 10px;\n	border:1px solid rgba(255,255,255,.2);\n}\n\n.rod-langway .esg-filterbutton.selected .esg-filter-checked,\n.rod-langway .esg-filterbutton.hovered .esg-filter-checked {\n	color: #000;\n  	border: 1px solid #000;\n}\n\n/* */\n.rod-langway .esg-filter-wrapper.eg-search-wrapper {\n	white-space: nowrap;\n}\n\n\n.rod-langway .esg-filter-wrapper.eg-search-wrapper .eg-search-clean,\n.rod-langway .esg-filter-wrapper.eg-search-wrapper .eg-search-submit {\n	width:40px;\n	padding:0px;\n	margin-left:5px;\n	margin-right:0px;\n}\n\n.rod-langway .esg-filter-wrapper.eg-search-wrapper .eg-search-input {\n	width:auto;\n}\n\n.rod-langway .esg-dropdown-wrapper {\n	transform: translateZ(10px) translateX(-50%);\n	left: 50%;\n	background: #000;\n	border-radius: 0;\n  	padding: 0;\n}\n\n.rod-langway .esg-dropdown-wrapper .esg-filterbutton {\n	position: relative;\n	border: none;\n	box-shadow: none;\n	text-align: left;\n	color: #fff;\n	background: transparent;\n	line-height: 25px;\n	min-height: 25px;\n  	padding: 10px 20px;\n  	display: inline-block;\n  	width: 100%;\n  	box-sizing: border-box;\n  	margin: 0;\n}\n\n.rod-langway .esg-dropdown-wrapper .esg-filterbutton.hovered,\n.rod-langway .esg-dropdown-wrapper .esg-filterbutton.selected {\n	color: #000;\n  	background: #fff;\n}\n\n\n.rod-langway .esg-selected-filterbutton .eg-icon-down-open {\n	margin-right: -10px;\n	color: #000;\n	font-size: 11px;\n}\n\n.rod-langway .esg-sortbutton-order.eg-icon-down-open:before {\n    content: \"arrow_downward\";\n    font-family: \"Material Icons\";\n  	font-size: 19px;\n  	vertical-align: middle;\n}\n@import url(\"https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@400;500;700&display=swap\");\n@import url(\"https://fonts.googleapis.com/icon?family=Material+Icons\");\n\n',NULL),(15,'Ray Bourge','ray-bourque','/**************************************\n	-	RAY BOURGE V3.0.0 SKIN    -\n**************************************/\n\n\n\n.ray-bourque .esg-overflowtrick {\n  margin: 20px 0;\n}\n\n.ray-bourque .navigationbuttons,\n.ray-bourque .esg-pagination,\n.ray-bourque .esg-filters {\n	text-align: center;\n}\n\n.ray-bourque .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton,\n.ray-bourque input.eg-search-input,\n.ray-bourque .esg-filterbutton,\n.ray-bourque .esg-navigationbutton,\n.ray-bourque .esg-sortbutton,\n.ray-bourque .esg-cartbutton,\n.ray-bourque .esg-filter-wrapper.eg-search-wrapper  .eg-search-clean,\n.ray-bourque .esg-filter-wrapper.eg-search-wrapper  .eg-search-submit {\n	color: rgba(255, 255, 255, 1);\n	margin-right: 0;\n	cursor: pointer;\n	padding: 0px 17px;\n	border: none;\n	line-height: 40px;\n	font-size: 13px;\n  	letter-spacing: 1px;\n	font-weight: 400;\n	font-family: \"Barlow Condensed\", sans-serif;\n	display: inline-block;\n	background: #000;\n	margin-bottom: 5px;\n	white-space: nowrap;\n	min-height: 40px;\n	vertical-align: middle;\n  	border-radius: 0;\n}\n.ray-bourque  .esg-filterbutton .eg-el-amount {\n  background: #2d2b2b;\n  display: inline-block;\n  line-height: 22px;\n  min-width: 22px;\n  text-align: center;\n  font-weight: 500;\n}\n\n.ray-bourque  .esg-filterbutton.hovered .eg-el-amount,\n.ray-bourque  .esg-filterbutton.selected .eg-el-amount {\n  background: #eaedf1;\n}\n\n.ray-bourque  .esg-filterbutton .eg-el-amount:before,\n.ray-bourque  .esg-filterbutton .eg-el-amount:after {\n  content: \"\";\n}\n\n.ray-bourque .esg-filter-wrapper.eg-search-wrapper  .eg-search-clean,\n.ray-bourque .esg-filter-wrapper.eg-search-wrapper  .eg-search-submit {\n  margin-left: 0 !important;\n}\n\n.ray-bourque .esg-filter-wrapper.eg-search-wrapper  .eg-search-clean {\n  background: #434242;\n}\n\n.ray-bourque .esg-cartbutton a {\n	color: #fff;\n}\n\n.ray-bourque .esg-cartbutton a:hover {\n	color: #000;\n}\n\n.ray-bourque input.eg-search-input::placeholder {\n	line-height: 38px;\n	vertical-align: middle;\n	color:#fff;\n}\n\n.ray-bourque input.eg-search-input:focus::placeholder {\n  opacity: 0;\n}\n\n.ray-bourque .esg-navigationbutton * {\n	color: rgba(255, 255, 255, 1);\n}\n\n.ray-bourque .esg-navigationbutton.hovered i {\n	color: #000;\n}\n\n.ray-bourque .esg-navigationbutton {\n	padding: 0px 11px;\n}\n\n.ray-bourque .esg-pagination-button {\n	padding: 0px 16px;\n}\n\n.ray-bourque .esg-pagination-button:last-child {\n	margin-right: 0;\n}\n\n.ray-bourque .esg-sortbutton-wrapper,\n.ray-bourque .esg-cartbutton-wrapper {\n	display: inline-block;\n}\n\n.ray-bourque .esg-sortbutton-order,\n.ray-bourque .esg-cartbutton-order {\n	display: inline-block;\n	vertical-align: top;\n	width: 40px;\n	line-height: 38px;\n	border-radius: 0;\n  	border: none;\n	font-size: 12px;\n	font-weight: 600;\n	color: #fff;\n	cursor: pointer;\n	background: #434242;\n}\n\n.ray-bourque .esg-cartbutton {\n	color: #fff;\n	cursor: default !important;\n}\n\n.ray-bourque .esg-cartbutton .esgicon-basket {\n	color: #fff;\n	font-size: 15px;\n	line-height: 15px;\n	margin-right: 10px;\n}\n\n.ray-bourque .esg-cartbutton-wrapper {\n	cursor: default !important;\n}\n\n.ray-bourque .esg-sortbutton,\n.ray-bourque .esg-cartbutton {\n	display: inline-block;\n	position: relative;\n	cursor: pointer;\n}\n.ray-bourque .esg-sortbutton{\n	margin-right: 0px;\n	border-right: none;\n	border-radius: 0;\n}\n\n.ray-bourque .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton.hovered,\n.ray-bourque .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton.hoveredfilter,\n.ray-bourque .esg-navigationbutton.hovered,\n.ray-bourque .esg-filterbutton.hovered,\n.ray-bourque .esg-sortbutton.hovered,\n.ray-bourque .esg-sortbutton-order.hovered,\n.ray-bourque .esg-cartbutton-order.hovered,\n.ray-bourque .esg-filterbutton.selected,\n.ray-bourque .esg-cartbutton.hovered,\n.ray-bourque .esg-filter-wrapper.eg-search-wrapper  .eg-search-clean.hovered,\n.ray-bourque .esg-filter-wrapper.eg-search-wrapper  .eg-search-submit.hovered {\n	color: #000;\n	box-shadow: none;\n	background: #fff;\n}\n\n.ray-bourque .esg-navigationbutton.hovered * {\n	color: #fff;\n}\n\n.ray-bourque .esg-sortbutton-order.hovered .tp-desc {\n	border-color: #fff;\n	border-color: rgba(255, 255, 255, 0.2);\n	color: #fff;\n	box-shadow: 0px -3px 5px 0px rgba(0, 0, 0, 0.13) !important;\n}\n\n.ray-bourque .esg-filter-checked {\n	color: rgba(255,255,255,.5);\n  	border: 1px solid rgba(255,255,255,.5);\n	background: transparent;\n	font-size: 9px;\n	font-weight: 300;\n	vertical-align: middle;\n  	line-height: 12px;\n	margin-left: 7px;\n  	display: inline-block;\n  	width: 14px;\n  	height: 14px;\n  	transform: translateY(-2px);\n}\n\n.ray-bourque .esg-filter-wrapper.dropdownstyle .esg-filter-checked {\n	margin-left: 0;\n	margin-right: 10px;\n	border:1px solid rgba(255,255,255,.2);\n}\n\n.ray-bourque .esg-filterbutton.selected .esg-filter-checked,\n.ray-bourque .esg-filterbutton.hovered .esg-filter-checked {\n	color: #000;\n  	border: 1px solid #000;\n}\n\n/* */\n.ray-bourque .esg-filter-wrapper.eg-search-wrapper {\n	white-space: nowrap;\n}\n\n\n.ray-bourque .esg-filter-wrapper.eg-search-wrapper .eg-search-clean,\n.ray-bourque .esg-filter-wrapper.eg-search-wrapper .eg-search-submit {\n	width:40px;\n	padding:0px;\n	margin-left:5px;\n	margin-right:0px;\n}\n\n.ray-bourque .esg-filter-wrapper.eg-search-wrapper .eg-search-input {\n	width:auto;\n}\n\n.ray-bourque .esg-dropdown-wrapper {\n	transform: translateZ(10px) translateX(-50%);\n	left: 50%;\n	background: #000;\n	border-radius: 0;\n  	padding: 0;\n}\n\n.ray-bourque .esg-dropdown-wrapper .esg-filterbutton {\n	position: relative;\n	border: none;\n	box-shadow: none;\n	text-align: left;\n	color: #fff;\n	background: transparent;\n	line-height: 25px;\n	min-height: 25px;\n  	padding: 10px 20px;\n  	display: inline-block;\n  	width: 100%;\n  	box-sizing: border-box;\n  	margin: 0;\n}\n\n.ray-bourque .esg-dropdown-wrapper .esg-filterbutton.hovered,\n.ray-bourque .esg-dropdown-wrapper .esg-filterbutton.selected {\n	color: #000;\n  	background: #fff;\n}\n\n\n.ray-bourque .esg-selected-filterbutton .eg-icon-down-open {\n	margin-right: -10px;\n	color:#fff;\n	font-size:12px;\n}\n\n.ray-bourque .esg-sortbutton-order.eg-icon-down-open:before {\n    content: \"arrow_downward\";\n    font-family: \"Material Icons\";\n  	font-size: 19px;\n  	vertical-align: middle;\n}\n\n@import url(\"https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500&display=swap\");\n@import url(\"https://fonts.googleapis.com/icon?family=Material+Icons\");\n\n',NULL);
/*!40000 ALTER TABLE `wp9s_eg_navigation_skins` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp9s_links`
--

DROP TABLE IF EXISTS `wp9s_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp9s_links` (
  `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `link_url` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_image` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_target` varchar(25) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_description` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_visible` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'Y',
  `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1',
  `link_rating` int(11) NOT NULL DEFAULT '0',
  `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `link_rel` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_notes` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `link_rss` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9s_links`
--

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

--
-- Table structure for table `wp9s_newsletter`
--

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

--
-- Dumping data for table `wp9s_newsletter`
--

LOCK TABLES `wp9s_newsletter` WRITE;
/*!40000 ALTER TABLE `wp9s_newsletter` DISABLE KEYS */;
INSERT INTO `wp9s_newsletter` VALUES ('','alex@inspirable.com','813a493e7a','','C',1,NULL,'2021-03-27 21:54:11',1616882051,0,0,0,0,'','n',0,0,'widget-minimal','173.247.252.137',0,'',0,'','','','',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'','','','','','','','','','','','','','','','','','','','',0);
/*!40000 ALTER TABLE `wp9s_newsletter` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp9s_newsletter_emails`
--

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

--
-- Dumping data for table `wp9s_newsletter_emails`
--

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

--
-- Table structure for table `wp9s_newsletter_sent`
--

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

--
-- Dumping data for table `wp9s_newsletter_sent`
--

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

--
-- Table structure for table `wp9s_newsletter_stats`
--

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

--
-- Dumping data for table `wp9s_newsletter_stats`
--

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

--
-- Table structure for table `wp9s_newsletter_user_logs`
--

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

--
-- Dumping data for table `wp9s_newsletter_user_logs`
--

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

--
-- Table structure for table `wp9s_options`
--

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

--
-- Dumping data for table `wp9s_options`
--

LOCK TABLES `wp9s_options` WRITE;
/*!40000 ALTER TABLE `wp9s_options` DISABLE KEYS */;
INSERT INTO `wp9s_options` VALUES (1,'siteurl','https://sa7717.dev34.info','yes'),(2,'home','https://sa7717.dev34.info','yes'),(3,'blogname','System Amusement','yes'),(4,'blogdescription','Services','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','alex@inspirable.com','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','1','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'),(29,'rewrite_rules','a:400:{s:12:\"portfolio/?$\";s:29:\"index.php?post_type=portfolio\";s:42:\"portfolio/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?post_type=portfolio&feed=$matches[1]\";s:37:\"portfolio/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?post_type=portfolio&feed=$matches[1]\";s:29:\"portfolio/page/([0-9]{1,})/?$\";s:47:\"index.php?post_type=portfolio&paged=$matches[1]\";s:10:\"service/?$\";s:27:\"index.php?post_type=service\";s:40:\"service/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=service&feed=$matches[1]\";s:35:\"service/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=service&feed=$matches[1]\";s:27:\"service/page/([0-9]{1,})/?$\";s:45:\"index.php?post_type=service&paged=$matches[1]\";s:13:\"case-study/?$\";s:30:\"index.php?post_type=case-study\";s:43:\"case-study/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?post_type=case-study&feed=$matches[1]\";s:38:\"case-study/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?post_type=case-study&feed=$matches[1]\";s:30:\"case-study/page/([0-9]{1,})/?$\";s:48:\"index.php?post_type=case-study&paged=$matches[1]\";s:10:\"courses/?$\";s:27:\"index.php?post_type=courses\";s:40:\"courses/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=courses&feed=$matches[1]\";s:35:\"courses/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=courses&feed=$matches[1]\";s:27:\"courses/page/([0-9]{1,})/?$\";s:45:\"index.php?post_type=courses&paged=$matches[1]\";s:9:\"footer/?$\";s:26:\"index.php?post_type=footer\";s:39:\"footer/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?post_type=footer&feed=$matches[1]\";s:34:\"footer/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?post_type=footer&feed=$matches[1]\";s:26:\"footer/page/([0-9]{1,})/?$\";s:44:\"index.php?post_type=footer&paged=$matches[1]\";s:15:\"ct-mega-menu/?$\";s:32:\"index.php?post_type=ct-mega-menu\";s:45:\"ct-mega-menu/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?post_type=ct-mega-menu&feed=$matches[1]\";s:40:\"ct-mega-menu/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?post_type=ct-mega-menu&feed=$matches[1]\";s:32:\"ct-mega-menu/page/([0-9]{1,})/?$\";s:50:\"index.php?post_type=ct-mega-menu&paged=$matches[1]\";s:24:\"^wc-auth/v([1]{1})/(.*)?\";s:63:\"index.php?wc-auth-version=$matches[1]&wc-auth-route=$matches[2]\";s:22:\"^wc-api/v([1-3]{1})/?$\";s:51:\"index.php?wc-api-version=$matches[1]&wc-api-route=/\";s:24:\"^wc-api/v([1-3]{1})(.*)?\";s:61:\"index.php?wc-api-version=$matches[1]&wc-api-route=$matches[2]\";s:7:\"shop/?$\";s:27:\"index.php?post_type=product\";s:37:\"shop/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:32:\"shop/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:24:\"shop/page/([0-9]{1,})/?$\";s:45:\"index.php?post_type=product&paged=$matches[1]\";s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:32:\"category/(.+?)/wc-api(/(.*))?/?$\";s:54:\"index.php?category_name=$matches[1]&wc-api=$matches[3]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:29:\"tag/([^/]+)/wc-api(/(.*))?/?$\";s:44:\"index.php?tag=$matches[1]&wc-api=$matches[3]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:37:\"portfolio/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:47:\"portfolio/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:67:\"portfolio/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"portfolio/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"portfolio/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:43:\"portfolio/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:26:\"portfolio/([^/]+)/embed/?$\";s:42:\"index.php?portfolio=$matches[1]&embed=true\";s:30:\"portfolio/([^/]+)/trackback/?$\";s:36:\"index.php?portfolio=$matches[1]&tb=1\";s:50:\"portfolio/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?portfolio=$matches[1]&feed=$matches[2]\";s:45:\"portfolio/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?portfolio=$matches[1]&feed=$matches[2]\";s:38:\"portfolio/([^/]+)/page/?([0-9]{1,})/?$\";s:49:\"index.php?portfolio=$matches[1]&paged=$matches[2]\";s:45:\"portfolio/([^/]+)/comment-page-([0-9]{1,})/?$\";s:49:\"index.php?portfolio=$matches[1]&cpage=$matches[2]\";s:35:\"portfolio/([^/]+)/wc-api(/(.*))?/?$\";s:50:\"index.php?portfolio=$matches[1]&wc-api=$matches[3]\";s:41:\"portfolio/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:52:\"portfolio/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:34:\"portfolio/([^/]+)(?:/([0-9]+))?/?$\";s:48:\"index.php?portfolio=$matches[1]&page=$matches[2]\";s:26:\"portfolio/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:36:\"portfolio/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:56:\"portfolio/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"portfolio/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"portfolio/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:32:\"portfolio/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:35:\"service/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"service/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"service/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"service/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"service/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"service/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"service/([^/]+)/embed/?$\";s:40:\"index.php?service=$matches[1]&embed=true\";s:28:\"service/([^/]+)/trackback/?$\";s:34:\"index.php?service=$matches[1]&tb=1\";s:48:\"service/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?service=$matches[1]&feed=$matches[2]\";s:43:\"service/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?service=$matches[1]&feed=$matches[2]\";s:36:\"service/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?service=$matches[1]&paged=$matches[2]\";s:43:\"service/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?service=$matches[1]&cpage=$matches[2]\";s:33:\"service/([^/]+)/wc-api(/(.*))?/?$\";s:48:\"index.php?service=$matches[1]&wc-api=$matches[3]\";s:39:\"service/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:50:\"service/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:32:\"service/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?service=$matches[1]&page=$matches[2]\";s:24:\"service/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"service/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"service/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"service/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"service/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"service/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:38:\"case-study/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:48:\"case-study/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:68:\"case-study/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"case-study/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"case-study/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:44:\"case-study/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:27:\"case-study/([^/]+)/embed/?$\";s:43:\"index.php?case-study=$matches[1]&embed=true\";s:31:\"case-study/([^/]+)/trackback/?$\";s:37:\"index.php?case-study=$matches[1]&tb=1\";s:51:\"case-study/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?case-study=$matches[1]&feed=$matches[2]\";s:46:\"case-study/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?case-study=$matches[1]&feed=$matches[2]\";s:39:\"case-study/([^/]+)/page/?([0-9]{1,})/?$\";s:50:\"index.php?case-study=$matches[1]&paged=$matches[2]\";s:46:\"case-study/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?case-study=$matches[1]&cpage=$matches[2]\";s:36:\"case-study/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?case-study=$matches[1]&wc-api=$matches[3]\";s:42:\"case-study/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:53:\"case-study/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:35:\"case-study/([^/]+)(?:/([0-9]+))?/?$\";s:49:\"index.php?case-study=$matches[1]&page=$matches[2]\";s:27:\"case-study/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"case-study/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"case-study/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"case-study/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"case-study/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"case-study/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:35:\"courses/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"courses/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"courses/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"courses/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"courses/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"courses/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"courses/([^/]+)/embed/?$\";s:40:\"index.php?courses=$matches[1]&embed=true\";s:28:\"courses/([^/]+)/trackback/?$\";s:34:\"index.php?courses=$matches[1]&tb=1\";s:48:\"courses/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?courses=$matches[1]&feed=$matches[2]\";s:43:\"courses/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?courses=$matches[1]&feed=$matches[2]\";s:36:\"courses/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?courses=$matches[1]&paged=$matches[2]\";s:43:\"courses/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?courses=$matches[1]&cpage=$matches[2]\";s:33:\"courses/([^/]+)/wc-api(/(.*))?/?$\";s:48:\"index.php?courses=$matches[1]&wc-api=$matches[3]\";s:39:\"courses/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:50:\"courses/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:32:\"courses/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?courses=$matches[1]&page=$matches[2]\";s:24:\"courses/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"courses/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"courses/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"courses/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"courses/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"courses/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:34:\"footer/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:44:\"footer/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:64:\"footer/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"footer/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"footer/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:40:\"footer/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:23:\"footer/([^/]+)/embed/?$\";s:39:\"index.php?footer=$matches[1]&embed=true\";s:27:\"footer/([^/]+)/trackback/?$\";s:33:\"index.php?footer=$matches[1]&tb=1\";s:47:\"footer/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:45:\"index.php?footer=$matches[1]&feed=$matches[2]\";s:42:\"footer/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:45:\"index.php?footer=$matches[1]&feed=$matches[2]\";s:35:\"footer/([^/]+)/page/?([0-9]{1,})/?$\";s:46:\"index.php?footer=$matches[1]&paged=$matches[2]\";s:42:\"footer/([^/]+)/comment-page-([0-9]{1,})/?$\";s:46:\"index.php?footer=$matches[1]&cpage=$matches[2]\";s:32:\"footer/([^/]+)/wc-api(/(.*))?/?$\";s:47:\"index.php?footer=$matches[1]&wc-api=$matches[3]\";s:38:\"footer/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:49:\"footer/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:31:\"footer/([^/]+)(?:/([0-9]+))?/?$\";s:45:\"index.php?footer=$matches[1]&page=$matches[2]\";s:23:\"footer/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:33:\"footer/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:53:\"footer/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:48:\"footer/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:48:\"footer/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:29:\"footer/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:59:\"portfolio-category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:57:\"index.php?portfolio-category=$matches[1]&feed=$matches[2]\";s:54:\"portfolio-category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:57:\"index.php?portfolio-category=$matches[1]&feed=$matches[2]\";s:35:\"portfolio-category/([^/]+)/embed/?$\";s:51:\"index.php?portfolio-category=$matches[1]&embed=true\";s:47:\"portfolio-category/([^/]+)/page/?([0-9]{1,})/?$\";s:58:\"index.php?portfolio-category=$matches[1]&paged=$matches[2]\";s:29:\"portfolio-category/([^/]+)/?$\";s:40:\"index.php?portfolio-category=$matches[1]\";s:57:\"service-category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?service-category=$matches[1]&feed=$matches[2]\";s:52:\"service-category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?service-category=$matches[1]&feed=$matches[2]\";s:33:\"service-category/([^/]+)/embed/?$\";s:49:\"index.php?service-category=$matches[1]&embed=true\";s:45:\"service-category/([^/]+)/page/?([0-9]{1,})/?$\";s:56:\"index.php?service-category=$matches[1]&paged=$matches[2]\";s:27:\"service-category/([^/]+)/?$\";s:38:\"index.php?service-category=$matches[1]\";s:60:\"case-study-category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:58:\"index.php?case-study-category=$matches[1]&feed=$matches[2]\";s:55:\"case-study-category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:58:\"index.php?case-study-category=$matches[1]&feed=$matches[2]\";s:36:\"case-study-category/([^/]+)/embed/?$\";s:52:\"index.php?case-study-category=$matches[1]&embed=true\";s:48:\"case-study-category/([^/]+)/page/?([0-9]{1,})/?$\";s:59:\"index.php?case-study-category=$matches[1]&paged=$matches[2]\";s:30:\"case-study-category/([^/]+)/?$\";s:41:\"index.php?case-study-category=$matches[1]\";s:40:\"ct-mega-menu/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:50:\"ct-mega-menu/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\"ct-mega-menu/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"ct-mega-menu/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"ct-mega-menu/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:46:\"ct-mega-menu/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:29:\"ct-mega-menu/([^/]+)/embed/?$\";s:45:\"index.php?ct-mega-menu=$matches[1]&embed=true\";s:33:\"ct-mega-menu/([^/]+)/trackback/?$\";s:39:\"index.php?ct-mega-menu=$matches[1]&tb=1\";s:53:\"ct-mega-menu/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?ct-mega-menu=$matches[1]&feed=$matches[2]\";s:48:\"ct-mega-menu/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?ct-mega-menu=$matches[1]&feed=$matches[2]\";s:41:\"ct-mega-menu/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?ct-mega-menu=$matches[1]&paged=$matches[2]\";s:48:\"ct-mega-menu/([^/]+)/comment-page-([0-9]{1,})/?$\";s:52:\"index.php?ct-mega-menu=$matches[1]&cpage=$matches[2]\";s:38:\"ct-mega-menu/([^/]+)/wc-api(/(.*))?/?$\";s:53:\"index.php?ct-mega-menu=$matches[1]&wc-api=$matches[3]\";s:44:\"ct-mega-menu/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:55:\"ct-mega-menu/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:37:\"ct-mega-menu/([^/]+)(?:/([0-9]+))?/?$\";s:51:\"index.php?ct-mega-menu=$matches[1]&page=$matches[2]\";s:29:\"ct-mega-menu/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:39:\"ct-mega-menu/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:59:\"ct-mega-menu/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"ct-mega-menu/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"ct-mega-menu/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:35:\"ct-mega-menu/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:42:\"e-landing-page/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:52:\"e-landing-page/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:72:\"e-landing-page/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"e-landing-page/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"e-landing-page/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:48:\"e-landing-page/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:31:\"e-landing-page/([^/]+)/embed/?$\";s:47:\"index.php?e-landing-page=$matches[1]&embed=true\";s:35:\"e-landing-page/([^/]+)/trackback/?$\";s:41:\"index.php?e-landing-page=$matches[1]&tb=1\";s:43:\"e-landing-page/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?e-landing-page=$matches[1]&paged=$matches[2]\";s:50:\"e-landing-page/([^/]+)/comment-page-([0-9]{1,})/?$\";s:54:\"index.php?e-landing-page=$matches[1]&cpage=$matches[2]\";s:40:\"e-landing-page/([^/]+)/wc-api(/(.*))?/?$\";s:55:\"index.php?e-landing-page=$matches[1]&wc-api=$matches[3]\";s:46:\"e-landing-page/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:57:\"e-landing-page/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:39:\"e-landing-page/([^/]+)(?:/([0-9]+))?/?$\";s:53:\"index.php?e-landing-page=$matches[1]&page=$matches[2]\";s:31:\"e-landing-page/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"e-landing-page/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\"e-landing-page/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"e-landing-page/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"e-landing-page/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"e-landing-page/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:55:\"product-category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:50:\"product-category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:31:\"product-category/(.+?)/embed/?$\";s:44:\"index.php?product_cat=$matches[1]&embed=true\";s:43:\"product-category/(.+?)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_cat=$matches[1]&paged=$matches[2]\";s:25:\"product-category/(.+?)/?$\";s:33:\"index.php?product_cat=$matches[1]\";s:52:\"product-tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:47:\"product-tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:28:\"product-tag/([^/]+)/embed/?$\";s:44:\"index.php?product_tag=$matches[1]&embed=true\";s:40:\"product-tag/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_tag=$matches[1]&paged=$matches[2]\";s:22:\"product-tag/([^/]+)/?$\";s:33:\"index.php?product_tag=$matches[1]\";s:35:\"product/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"product/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"product/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"product/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"product/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"product/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"product/([^/]+)/embed/?$\";s:40:\"index.php?product=$matches[1]&embed=true\";s:28:\"product/([^/]+)/trackback/?$\";s:34:\"index.php?product=$matches[1]&tb=1\";s:48:\"product/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:43:\"product/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:36:\"product/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&paged=$matches[2]\";s:43:\"product/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&cpage=$matches[2]\";s:33:\"product/([^/]+)/wc-api(/(.*))?/?$\";s:48:\"index.php?product=$matches[1]&wc-api=$matches[3]\";s:39:\"product/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:50:\"product/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:32:\"product/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?product=$matches[1]&page=$matches[2]\";s:24:\"product/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"product/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"product/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"product/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"product/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"product/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:47:\"booked_appointments/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"booked_appointments/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"booked_appointments/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"booked_appointments/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"booked_appointments/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"booked_appointments/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:36:\"booked_appointments/([^/]+)/embed/?$\";s:52:\"index.php?booked_appointments=$matches[1]&embed=true\";s:40:\"booked_appointments/([^/]+)/trackback/?$\";s:46:\"index.php?booked_appointments=$matches[1]&tb=1\";s:48:\"booked_appointments/([^/]+)/page/?([0-9]{1,})/?$\";s:59:\"index.php?booked_appointments=$matches[1]&paged=$matches[2]\";s:55:\"booked_appointments/([^/]+)/comment-page-([0-9]{1,})/?$\";s:59:\"index.php?booked_appointments=$matches[1]&cpage=$matches[2]\";s:45:\"booked_appointments/([^/]+)/wc-api(/(.*))?/?$\";s:60:\"index.php?booked_appointments=$matches[1]&wc-api=$matches[3]\";s:51:\"booked_appointments/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:62:\"booked_appointments/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:44:\"booked_appointments/([^/]+)(?:/([0-9]+))?/?$\";s:58:\"index.php?booked_appointments=$matches[1]&page=$matches[2]\";s:36:\"booked_appointments/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:46:\"booked_appointments/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:66:\"booked_appointments/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"booked_appointments/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"booked_appointments/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:42:\"booked_appointments/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:56:\"custom-calendar/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:62:\"index.php?booked_custom_calendars=$matches[1]&feed=$matches[2]\";s:51:\"custom-calendar/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:62:\"index.php?booked_custom_calendars=$matches[1]&feed=$matches[2]\";s:32:\"custom-calendar/([^/]+)/embed/?$\";s:56:\"index.php?booked_custom_calendars=$matches[1]&embed=true\";s:44:\"custom-calendar/([^/]+)/page/?([0-9]{1,})/?$\";s:63:\"index.php?booked_custom_calendars=$matches[1]&paged=$matches[2]\";s:26:\"custom-calendar/([^/]+)/?$\";s:45:\"index.php?booked_custom_calendars=$matches[1]\";s:38:\"mc4wp-form/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:48:\"mc4wp-form/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:68:\"mc4wp-form/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"mc4wp-form/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"mc4wp-form/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:44:\"mc4wp-form/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:27:\"mc4wp-form/([^/]+)/embed/?$\";s:43:\"index.php?mc4wp-form=$matches[1]&embed=true\";s:31:\"mc4wp-form/([^/]+)/trackback/?$\";s:37:\"index.php?mc4wp-form=$matches[1]&tb=1\";s:39:\"mc4wp-form/([^/]+)/page/?([0-9]{1,})/?$\";s:50:\"index.php?mc4wp-form=$matches[1]&paged=$matches[2]\";s:46:\"mc4wp-form/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?mc4wp-form=$matches[1]&cpage=$matches[2]\";s:36:\"mc4wp-form/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?mc4wp-form=$matches[1]&wc-api=$matches[3]\";s:42:\"mc4wp-form/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:53:\"mc4wp-form/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:35:\"mc4wp-form/([^/]+)(?:/([0-9]+))?/?$\";s:49:\"index.php?mc4wp-form=$matches[1]&page=$matches[2]\";s:27:\"mc4wp-form/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"mc4wp-form/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"mc4wp-form/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"mc4wp-form/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"mc4wp-form/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"mc4wp-form/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:41:\"index.php?&page_id=3193&cpage=$matches[1]\";s:17:\"wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:26:\"comments/wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:29:\"search/(.+)/wc-api(/(.*))?/?$\";s:42:\"index.php?s=$matches[1]&wc-api=$matches[3]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:32:\"author/([^/]+)/wc-api(/(.*))?/?$\";s:52:\"index.php?author_name=$matches[1]&wc-api=$matches[3]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:54:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/wc-api(/(.*))?/?$\";s:82:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&wc-api=$matches[5]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:41:\"([0-9]{4})/([0-9]{1,2})/wc-api(/(.*))?/?$\";s:66:\"index.php?year=$matches[1]&monthnum=$matches[2]&wc-api=$matches[4]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:28:\"([0-9]{4})/wc-api(/(.*))?/?$\";s:45:\"index.php?year=$matches[1]&wc-api=$matches[3]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:62:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/wc-api(/(.*))?/?$\";s:99:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&wc-api=$matches[6]\";s:62:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:73:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:61:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:25:\"(.?.+?)/wc-api(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&wc-api=$matches[3]\";s:28:\"(.?.+?)/order-pay(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&order-pay=$matches[3]\";s:33:\"(.?.+?)/order-received(/(.*))?/?$\";s:57:\"index.php?pagename=$matches[1]&order-received=$matches[3]\";s:25:\"(.?.+?)/orders(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&orders=$matches[3]\";s:29:\"(.?.+?)/view-order(/(.*))?/?$\";s:53:\"index.php?pagename=$matches[1]&view-order=$matches[3]\";s:28:\"(.?.+?)/downloads(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&downloads=$matches[3]\";s:31:\"(.?.+?)/edit-account(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-account=$matches[3]\";s:31:\"(.?.+?)/edit-address(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-address=$matches[3]\";s:34:\"(.?.+?)/payment-methods(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&payment-methods=$matches[3]\";s:32:\"(.?.+?)/lost-password(/(.*))?/?$\";s:56:\"index.php?pagename=$matches[1]&lost-password=$matches[3]\";s:34:\"(.?.+?)/customer-logout(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&customer-logout=$matches[3]\";s:37:\"(.?.+?)/add-payment-method(/(.*))?/?$\";s:61:\"index.php?pagename=$matches[1]&add-payment-method=$matches[3]\";s:40:\"(.?.+?)/delete-payment-method(/(.*))?/?$\";s:64:\"index.php?pagename=$matches[1]&delete-payment-method=$matches[3]\";s:45:\"(.?.+?)/set-default-payment-method(/(.*))?/?$\";s:69:\"index.php?pagename=$matches[1]&set-default-payment-method=$matches[3]\";s:31:\".?.+?/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:42:\".?.+?/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:16:{i:0;s:35:\"redux-framework/redux-framework.php\";i:1;s:17:\"booked/booked.php\";i:2;s:35:\"case-theme-core/case-theme-core.php\";i:3;s:39:\"case-theme-import/case-theme-import.php\";i:4;s:55:\"contact-form-7-multi-step/contact-form-7-multi-step.php\";i:5;s:36:\"contact-form-7/wp-contact-form-7.php\";i:6;s:23:\"elementor/elementor.php\";i:7;s:33:\"essential-grid/essential-grid.php\";i:8;s:33:\"instagram-feed/instagram-feed.php\";i:9;s:37:\"mailchimp-for-wp/mailchimp-for-wp.php\";i:10;s:55:\"meks-simple-flickr-widget/meks-simple-flickr-widget.php\";i:11;s:21:\"newsletter/plugin.php\";i:12;s:23:\"revslider/revslider.php\";i:13;s:27:\"woocommerce/woocommerce.php\";i:14;s:36:\"yith-woocommerce-quick-view/init.php\";i:15;s:34:\"yith-woocommerce-wishlist/init.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','0','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','','no'),(40,'template','consultio','yes'),(41,'stylesheet','consultio','yes'),(42,'comment_registration','0','yes'),(43,'html_type','text/html','yes'),(44,'use_trackback','0','yes'),(45,'default_role','subscriber','yes'),(46,'db_version','49752','yes'),(47,'uploads_use_yearmonth_folders','1','yes'),(48,'upload_path','','yes'),(49,'blog_public','1','yes'),(50,'default_link_category','2','yes'),(51,'show_on_front','page','yes'),(52,'tag_base','','yes'),(53,'show_avatars','1','yes'),(54,'avatar_rating','G','yes'),(55,'upload_url_path','','yes'),(56,'thumbnail_size_w','150','yes'),(57,'thumbnail_size_h','150','yes'),(58,'thumbnail_crop','1','yes'),(59,'medium_size_w','300','yes'),(60,'medium_size_h','300','yes'),(61,'avatar_default','mystery','yes'),(62,'large_size_w','1024','yes'),(63,'large_size_h','1024','yes'),(64,'image_default_link_type','none','yes'),(65,'image_default_size','','yes'),(66,'image_default_align','','yes'),(67,'close_comments_for_old_posts','0','yes'),(68,'close_comments_days_old','14','yes'),(69,'thread_comments','1','yes'),(70,'thread_comments_depth','5','yes'),(71,'page_comments','0','yes'),(72,'comments_per_page','50','yes'),(73,'default_comments_page','newest','yes'),(74,'comment_order','asc','yes'),(75,'sticky_posts','a:0:{}','yes'),(76,'widget_categories','a:4:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}i:3;a:6:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:1;s:12:\"hierarchical\";i:1;s:8:\"dropdown\";i:0;s:8:\"el_class\";s:0:\"\";s:10:\"hide_title\";b:0;}i:4;a:6:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:1;s:12:\"hierarchical\";i:1;s:8:\"dropdown\";i:0;s:8:\"el_class\";s:0:\"\";s:10:\"hide_title\";b:0;}s:12:\"_multiwidget\";i:1;}','yes'),(77,'widget_text','a:2:{i:1;a:6:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:126:\"At vero eos et accusamus et iusto odio digni goikussimos ducimus qui to bonfo blanditiis praese. Ntium voluum deleniti atque. \";s:6:\"filter\";b:1;s:6:\"visual\";b:1;s:8:\"el_class\";s:0:\"\";s:10:\"hide_title\";b:0;}s:12:\"_multiwidget\";i:1;}','yes'),(78,'widget_rss','a:0:{}','yes'),(79,'uninstall_plugins','a:2:{s:23:\"elementor/elementor.php\";a:2:{i:0;s:21:\"Elementor\\Maintenance\";i:1;s:9:\"uninstall\";}s:33:\"instagram-feed/instagram-feed.php\";s:22:\"sb_instagram_uninstall\";}','no'),(80,'timezone_string','','yes'),(81,'page_for_posts','0','yes'),(82,'page_on_front','3193','yes'),(83,'default_post_format','0','yes'),(84,'link_manager_enabled','0','yes'),(85,'finished_splitting_shared_terms','1','yes'),(86,'site_icon','0','yes'),(87,'medium_large_size_w','768','yes'),(88,'medium_large_size_h','0','yes'),(89,'wp_page_for_privacy_policy','3','yes'),(90,'show_comments_cookies_opt_in','1','yes'),(91,'admin_email_lifespan','1632286294','yes'),(92,'disallowed_keys','','no'),(93,'comment_previously_approved','1','yes'),(94,'auto_plugin_theme_update_emails','a:0:{}','no'),(95,'auto_update_core_dev','enabled','yes'),(96,'auto_update_core_minor','enabled','yes'),(97,'auto_update_core_major','enabled','yes'),(98,'initial_db_version','49752','yes'),(99,'wp9s_user_roles','a:8:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:117:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:24:\"edit_booked_appointments\";b:1;s:21:\"manage_booked_options\";b:1;s:29:\"manage_instagram_feed_options\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:20:\"booked_booking_agent\";a:2:{s:4:\"name\";s:13:\"Booking Agent\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:24:\"edit_booked_appointments\";b:1;}}s:8:\"customer\";a:2:{s:4:\"name\";s:8:\"Customer\";s:12:\"capabilities\";a:1:{s:4:\"read\";b:1;}}s:12:\"shop_manager\";a:2:{s:4:\"name\";s:12:\"Shop manager\";s:12:\"capabilities\";a:92:{s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:4:\"read\";b:1;s:18:\"read_private_pages\";b:1;s:18:\"read_private_posts\";b:1;s:10:\"edit_posts\";b:1;s:10:\"edit_pages\";b:1;s:20:\"edit_published_posts\";b:1;s:20:\"edit_published_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"edit_private_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:17:\"edit_others_pages\";b:1;s:13:\"publish_posts\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_posts\";b:1;s:12:\"delete_pages\";b:1;s:20:\"delete_private_pages\";b:1;s:20:\"delete_private_posts\";b:1;s:22:\"delete_published_pages\";b:1;s:22:\"delete_published_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:19:\"delete_others_pages\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:17:\"moderate_comments\";b:1;s:12:\"upload_files\";b:1;s:6:\"export\";b:1;s:6:\"import\";b:1;s:10:\"list_users\";b:1;s:18:\"edit_theme_options\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;}}}','yes'),(100,'fresh_site','0','yes'),(101,'widget_search','a:3:{i:2;a:1:{s:5:\"title\";s:0:\"\";}i:3;a:3:{s:5:\"title\";s:0:\"\";s:8:\"el_class\";s:0:\"\";s:10:\"hide_title\";b:0;}s:12:\"_multiwidget\";i:1;}','yes'),(102,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(103,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(104,'widget_archives','a:4:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}i:3;a:5:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:1;s:8:\"dropdown\";i:0;s:8:\"el_class\";s:0:\"\";s:10:\"hide_title\";b:0;}i:4;a:5:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:1;s:8:\"dropdown\";i:0;s:8:\"el_class\";s:0:\"\";s:10:\"hide_title\";b:0;}s:12:\"_multiwidget\";i:1;}','yes'),(105,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(106,'sidebars_widgets','a:5:{s:19:\"wp_inactive_widgets\";a:7:{i:0;s:10:\"archives-2\";i:1;s:12:\"categories-2\";i:2;s:6:\"meta-2\";i:3;s:13:\"media_image-1\";i:4;s:6:\"text-1\";i:5;s:19:\"getintouch_widget-1\";i:6;s:18:\"cs_social_widget-1\";}s:12:\"sidebar-blog\";a:9:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:12:\"categories-3\";i:4;s:17:\"ct_recent_posts-1\";i:5;s:10:\"archives-3\";i:6;s:15:\"media_gallery-1\";i:7;s:11:\"tag_cloud-1\";i:8;s:19:\"newsletter_widget-1\";}s:13:\"array_version\";i:3;s:12:\"sidebar-page\";a:7:{i:0;s:8:\"search-3\";i:1;s:12:\"categories-4\";i:2;s:17:\"ct_recent_posts-2\";i:3;s:10:\"archives-4\";i:4;s:15:\"media_gallery-2\";i:5;s:11:\"tag_cloud-2\";i:6;s:19:\"newsletter_widget-2\";}s:12:\"sidebar-shop\";a:4:{i:0;s:28:\"woocommerce_product_search-1\";i:1;s:32:\"woocommerce_product_categories-1\";i:2;s:26:\"woocommerce_price_filter-1\";i:3;s:22:\"woocommerce_products-1\";}}','yes'),(107,'cron','a:21:{i:1625776631;a:1:{s:26:\"action_scheduler_run_queue\";a:1:{s:32:\"0d04ed39571b55704c122d726248bbac\";a:3:{s:8:\"schedule\";s:12:\"every_minute\";s:4:\"args\";a:1:{i:0;s:7:\"WP Cron\";}s:8:\"interval\";i:60;}}}i:1625776712;a:1:{s:10:\"newsletter\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"newsletter\";s:4:\"args\";a:0:{}s:8:\"interval\";i:300;}}}i:1625776713;a:1:{s:33:\"wc_admin_process_orders_milestone\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1625776723;a:1:{s:29:\"wc_admin_unsnooze_admin_notes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1625777495;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:1625780133;a:1:{s:32:\"woocommerce_cancel_unpaid_orders\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1625785257;a:1:{s:24:\"woocommerce_cleanup_logs\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1625788800;a:1:{s:27:\"woocommerce_scheduled_sales\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1625796057;a:1:{s:28:\"woocommerce_cleanup_sessions\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1625806294;a:5:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:18:\"wp_https_detection\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1625806461;a:3:{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;}}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:1625816276;a:3:{s:27:\"check_plugin_updates-booked\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:21:\"sb_instagram_cron_job\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:23:\"sb_instagram_twicedaily\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1625859476;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:1625859514;a:1:{s:14:\"wc_admin_daily\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1625859574;a:1:{s:34:\"yith_wcwl_delete_expired_wishlists\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1625860867;a:2:{s:30:\"woocommerce_tracker_send_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:33:\"woocommerce_cleanup_personal_data\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1625892694;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1625905642;a:1:{s:23:\"sbi_usage_tracking_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1626069600;a:2:{s:29:\"sb_instagram_feed_issue_email\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:9:\"sbiweekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}s:23:\"sbi_notification_update\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:9:\"sbiweekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1626120117;a:1:{s:25:\"woocommerce_geoip_updater\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:11:\"fifteendays\";s:4:\"args\";a:0:{}s:8:\"interval\";i:1296000;}}}s:7:\"version\";i:2;}','yes'),(108,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_media_image','a:2:{i:1;a:17:{s:4:\"size\";s:6:\"medium\";s:5:\"width\";i:601;s:6:\"height\";i:159;s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:42:\"https://demo.casethemes.net/consultio-tax/\";s:13:\"image_classes\";s:0:\"\";s:12:\"link_classes\";s:0:\"\";s:8:\"link_rel\";s:0:\"\";s:17:\"link_target_blank\";b:0;s:11:\"image_title\";s:0:\"\";s:13:\"attachment_id\";i:3212;s:3:\"url\";s:92:\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/01/h6-logo-dark-300x79.png\";s:5:\"title\";s:0:\"\";s:8:\"el_class\";s:19:\"logo-hidden-sidebar\";s:10:\"hide_title\";b:0;}s:12:\"_multiwidget\";i:1;}','yes'),(112,'widget_media_gallery','a:3:{i:1;a:8:{s:5:\"title\";s:7:\"Gallery\";s:3:\"ids\";a:6:{i:0;i:1552;i:1;i:1553;i:2;i:1554;i:3;i:1555;i:4;i:1556;i:5;i:1557;}s:7:\"columns\";i:3;s:4:\"size\";s:6:\"medium\";s:9:\"link_type\";s:4:\"file\";s:14:\"orderby_random\";b:1;s:8:\"el_class\";s:0:\"\";s:10:\"hide_title\";b:0;}i:2;a:8:{s:5:\"title\";s:7:\"Gallery\";s:3:\"ids\";a:6:{i:0;i:1553;i:1;i:1554;i:2;i:1552;i:3;i:1555;i:4;i:1556;i:5;i:1557;}s:7:\"columns\";i:3;s:4:\"size\";s:6:\"medium\";s:9:\"link_type\";s:4:\"file\";s:14:\"orderby_random\";b:0;s:8:\"el_class\";s:0:\"\";s:10:\"hide_title\";b:0;}s:12:\"_multiwidget\";i:1;}','yes'),(113,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(114,'widget_tag_cloud','a:3:{i:1;a:6:{s:5:\"title\";s:4:\"Tags\";s:5:\"count\";i:0;s:8:\"taxonomy\";s:8:\"post_tag\";s:8:\"el_class\";s:0:\"\";s:10:\"hide_title\";b:0;s:15:\"use_theme_style\";b:0;}i:2;a:6:{s:5:\"title\";s:4:\"Tags\";s:5:\"count\";i:0;s:8:\"taxonomy\";s:8:\"post_tag\";s:8:\"el_class\";s:0:\"\";s:10:\"hide_title\";b:0;s:15:\"use_theme_style\";b:0;}s:12:\"_multiwidget\";i:1;}','yes'),(115,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(116,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(118,'recovery_keys','a:0:{}','yes'),(119,'theme_mods_twentytwentyone','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1616787396;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";}s:9:\"sidebar-2\";a:3:{i:0;s:10:\"archives-2\";i:1;s:12:\"categories-2\";i:2;s:6:\"meta-2\";}}}}','yes'),(120,'https_detection_errors','a:0:{}','yes'),(787,'_site_transient_timeout_yith_promo_message','3233739176','no'),(788,'_site_transient_yith_promo_message','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!-- Default border color: #acc327 -->\n<!-- Default background color: #ecf7ed -->\n\n<promotions>\n    <expiry_date>2019-12-10</expiry_date>\n    <promo>\n        <promo_id>yithblackfriday2019</promo_id>\n        <title><![CDATA[<strong>YITH Black Friday</strong>]]></title>\n        <description><![CDATA[\n            Don\'t miss our <strong>30% discount</strong> on all our products! No coupon needed in cart. Valid from <strong>28th November</strong> to <strong>2nd December</strong>.\n        ]]></description>\n        <link>\n            <label>Get your deals now!</label>\n            <url><![CDATA[https://yithemes.com]]></url>\n        </link>\n        <style>\n            <image_bg_color>#272121</image_bg_color>\n            <border_color>#272121</border_color>\n            <background_color>#ffffff</background_color>\n        </style>\n        <start_date>2019-11-27 23:59:59</start_date>\n        <end_date>2019-12-03 08:00:00</end_date>\n    </promo>\n</promotions>','no'),(3853,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1625776537;s:7:\"checked\";a:4:{s:9:\"consultio\";s:5:\"1.2.5\";s:14:\"twentynineteen\";s:3:\"2.0\";s:12:\"twentytwenty\";s:3:\"1.7\";s:15:\"twentytwentyone\";s:3:\"1.2\";}s:8:\"response\";a:1:{s:15:\"twentytwentyone\";a:6:{s:5:\"theme\";s:15:\"twentytwentyone\";s:11:\"new_version\";s:3:\"1.3\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentyone/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentyone.1.3.zip\";s:8:\"requires\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.6\";}}s:9:\"no_update\";a:2:{s:14:\"twentynineteen\";a:6:{s:5:\"theme\";s:14:\"twentynineteen\";s:11:\"new_version\";s:3:\"2.0\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentynineteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentynineteen.2.0.zip\";s:8:\"requires\";s:5:\"4.9.6\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:12:\"twentytwenty\";a:6:{s:5:\"theme\";s:12:\"twentytwenty\";s:11:\"new_version\";s:3:\"1.7\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentytwenty/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentytwenty.1.7.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}}s:12:\"translations\";a:0:{}}','no'),(3854,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1625776537;s:7:\"checked\";a:18:{s:19:\"akismet/akismet.php\";s:5:\"4.1.9\";s:17:\"booked/booked.php\";s:5:\"2.3.5\";s:35:\"case-theme-core/case-theme-core.php\";s:5:\"1.0.4\";s:39:\"case-theme-import/case-theme-import.php\";s:5:\"1.0.1\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:3:\"5.4\";s:55:\"contact-form-7-multi-step/contact-form-7-multi-step.php\";s:5:\"2.5.5\";s:23:\"elementor/elementor.php\";s:5:\"3.2.2\";s:33:\"essential-grid/essential-grid.php\";s:6:\"3.0.11\";s:9:\"hello.php\";s:5:\"1.7.2\";s:37:\"mailchimp-for-wp/mailchimp-for-wp.php\";s:5:\"4.8.3\";s:55:\"meks-simple-flickr-widget/meks-simple-flickr-widget.php\";s:5:\"1.1.4\";s:21:\"newsletter/plugin.php\";s:5:\"7.1.4\";s:35:\"redux-framework/redux-framework.php\";s:6:\"4.1.26\";s:23:\"revslider/revslider.php\";s:5:\"6.4.6\";s:33:\"instagram-feed/instagram-feed.php\";s:3:\"2.9\";s:27:\"woocommerce/woocommerce.php\";s:5:\"5.2.2\";s:36:\"yith-woocommerce-quick-view/init.php\";s:5:\"1.6.0\";s:34:\"yith-woocommerce-wishlist/init.php\";s:6:\"3.0.21\";}s:8:\"response\";a:10:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:6:\"4.1.10\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/akismet.4.1.10.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:6:\"tested\";s:3:\"5.8\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:36:\"contact-form-7/wp-contact-form-7.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:28:\"w.org/plugins/contact-form-7\";s:4:\"slug\";s:14:\"contact-form-7\";s:6:\"plugin\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:11:\"new_version\";s:5:\"5.4.1\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/contact-form-7/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.4.1.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:67:\"https://ps.w.org/contact-form-7/assets/icon-256x256.png?rev=2279696\";s:2:\"1x\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";s:3:\"svg\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/contact-form-7/assets/banner-1544x500.png?rev=860901\";s:2:\"1x\";s:68:\"https://ps.w.org/contact-form-7/assets/banner-772x250.png?rev=880427\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.7.2\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:23:\"elementor/elementor.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.2.5\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.2.5.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.7.2\";s:12:\"requires_php\";s:3:\"5.6\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:37:\"mailchimp-for-wp/mailchimp-for-wp.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:30:\"w.org/plugins/mailchimp-for-wp\";s:4:\"slug\";s:16:\"mailchimp-for-wp\";s:6:\"plugin\";s:37:\"mailchimp-for-wp/mailchimp-for-wp.php\";s:11:\"new_version\";s:5:\"4.8.6\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/mailchimp-for-wp/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.8.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/mailchimp-for-wp/assets/icon-256x256.png?rev=1224577\";s:2:\"1x\";s:69:\"https://ps.w.org/mailchimp-for-wp/assets/icon-128x128.png?rev=1224577\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:71:\"https://ps.w.org/mailchimp-for-wp/assets/banner-772x250.png?rev=1184706\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.7.2\";s:12:\"requires_php\";s:3:\"5.3\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:21:\"newsletter/plugin.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:24:\"w.org/plugins/newsletter\";s:4:\"slug\";s:10:\"newsletter\";s:6:\"plugin\";s:21:\"newsletter/plugin.php\";s:11:\"new_version\";s:5:\"7.2.0\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/newsletter/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/newsletter.7.2.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/newsletter/assets/icon-256x256.png?rev=1052028\";s:2:\"1x\";s:63:\"https://ps.w.org/newsletter/assets/icon-128x128.png?rev=1160467\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/newsletter/assets/banner-1544x500.png?rev=1052027\";s:2:\"1x\";s:65:\"https://ps.w.org/newsletter/assets/banner-772x250.png?rev=1052027\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.7.2\";s:12:\"requires_php\";s:3:\"5.6\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:35:\"redux-framework/redux-framework.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:29:\"w.org/plugins/redux-framework\";s:4:\"slug\";s:15:\"redux-framework\";s:6:\"plugin\";s:35:\"redux-framework/redux-framework.php\";s:11:\"new_version\";s:6:\"4.1.29\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/redux-framework/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/redux-framework.4.1.29.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:68:\"https://ps.w.org/redux-framework/assets/icon-256x256.png?rev=2352112\";s:2:\"1x\";s:59:\"https://ps.w.org/redux-framework/assets/icon.svg?rev=995554\";s:3:\"svg\";s:59:\"https://ps.w.org/redux-framework/assets/icon.svg?rev=995554\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/redux-framework/assets/banner-1544x500.png?rev=2352114\";s:2:\"1x\";s:70:\"https://ps.w.org/redux-framework/assets/banner-772x250.png?rev=2352114\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.7.3\";s:12:\"requires_php\";s:3:\"7.1\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:33:\"instagram-feed/instagram-feed.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:28:\"w.org/plugins/instagram-feed\";s:4:\"slug\";s:14:\"instagram-feed\";s:6:\"plugin\";s:33:\"instagram-feed/instagram-feed.php\";s:11:\"new_version\";s:5:\"2.9.1\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/instagram-feed/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/instagram-feed.2.9.1.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:67:\"https://ps.w.org/instagram-feed/assets/icon-128x128.png?rev=2137676\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:69:\"https://ps.w.org/instagram-feed/assets/banner-772x250.png?rev=2137676\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.7.2\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:27:\"woocommerce/woocommerce.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:25:\"w.org/plugins/woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:6:\"plugin\";s:27:\"woocommerce/woocommerce.php\";s:11:\"new_version\";s:5:\"5.4.1\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/woocommerce/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.4.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-256x256.png?rev=2366418\";s:2:\"1x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-128x128.png?rev=2366418\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/woocommerce/assets/banner-1544x500.png?rev=2366418\";s:2:\"1x\";s:66:\"https://ps.w.org/woocommerce/assets/banner-772x250.png?rev=2366418\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.7.2\";s:12:\"requires_php\";s:3:\"7.0\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:36:\"yith-woocommerce-quick-view/init.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:41:\"w.org/plugins/yith-woocommerce-quick-view\";s:4:\"slug\";s:27:\"yith-woocommerce-quick-view\";s:6:\"plugin\";s:36:\"yith-woocommerce-quick-view/init.php\";s:11:\"new_version\";s:5:\"1.6.3\";s:3:\"url\";s:58:\"https://wordpress.org/plugins/yith-woocommerce-quick-view/\";s:7:\"package\";s:76:\"https://downloads.wordpress.org/plugin/yith-woocommerce-quick-view.1.6.3.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:80:\"https://ps.w.org/yith-woocommerce-quick-view/assets/icon-128x128.jpg?rev=1460911\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:83:\"https://ps.w.org/yith-woocommerce-quick-view/assets/banner-1544x500.jpg?rev=1460911\";s:2:\"1x\";s:82:\"https://ps.w.org/yith-woocommerce-quick-view/assets/banner-772x250.jpg?rev=1460911\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:3:\"5.8\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:34:\"yith-woocommerce-wishlist/init.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:39:\"w.org/plugins/yith-woocommerce-wishlist\";s:4:\"slug\";s:25:\"yith-woocommerce-wishlist\";s:6:\"plugin\";s:34:\"yith-woocommerce-wishlist/init.php\";s:11:\"new_version\";s:6:\"3.0.23\";s:3:\"url\";s:56:\"https://wordpress.org/plugins/yith-woocommerce-wishlist/\";s:7:\"package\";s:68:\"https://downloads.wordpress.org/plugin/yith-woocommerce-wishlist.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:78:\"https://ps.w.org/yith-woocommerce-wishlist/assets/icon-128x128.jpg?rev=2215573\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:81:\"https://ps.w.org/yith-woocommerce-wishlist/assets/banner-1544x500.jpg?rev=2209192\";s:2:\"1x\";s:80:\"https://ps.w.org/yith-woocommerce-wishlist/assets/banner-772x250.jpg?rev=2209192\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.7.2\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:2:{s:9:\"hello.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:5:\"1.7.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/hello-dolly.1.7.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855\";s:2:\"1x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}}s:55:\"meks-simple-flickr-widget/meks-simple-flickr-widget.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:39:\"w.org/plugins/meks-simple-flickr-widget\";s:4:\"slug\";s:25:\"meks-simple-flickr-widget\";s:6:\"plugin\";s:55:\"meks-simple-flickr-widget/meks-simple-flickr-widget.php\";s:11:\"new_version\";s:5:\"1.1.4\";s:3:\"url\";s:56:\"https://wordpress.org/plugins/meks-simple-flickr-widget/\";s:7:\"package\";s:68:\"https://downloads.wordpress.org/plugin/meks-simple-flickr-widget.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:78:\"https://ps.w.org/meks-simple-flickr-widget/assets/icon-256x256.png?rev=1522335\";s:2:\"1x\";s:78:\"https://ps.w.org/meks-simple-flickr-widget/assets/icon-128x128.png?rev=1522335\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:80:\"https://ps.w.org/meks-simple-flickr-widget/assets/banner-772x250.jpg?rev=1927390\";}s:11:\"banners_rtl\";a:0:{}}}}','no'),(148,'finished_updating_comment_type','1','yes'),(3827,'_site_transient_timeout_php_check_6a93f292d9a273c004fc36e1f86d97b3','1626297349','no'),(3828,'_site_transient_php_check_6a93f292d9a273c004fc36e1f86d97b3','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:6:\"5.6.20\";s:12:\"is_supported\";b:0;s:9:\"is_secure\";b:0;s:13:\"is_acceptable\";b:0;}','no'),(3829,'_transient_timeout_wc_onboarding_product_data','1625778954','no'),(3830,'_transient_wc_onboarding_product_data','a:6:{s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:18:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Wed, 07 Jul 2021 21:15:54 GMT\";s:12:\"content-type\";s:31:\"application/json; charset=UTF-8\";s:14:\"content-length\";s:5:\"11628\";s:12:\"x-robots-tag\";s:7:\"noindex\";s:4:\"link\";s:60:\"<https://woocommerce.com/wp-json/>; rel=\"https://api.w.org/\"\";s:22:\"x-content-type-options\";s:7:\"nosniff\";s:29:\"access-control-expose-headers\";s:33:\"X-WP-Total, X-WP-TotalPages, Link\";s:28:\"access-control-allow-headers\";s:73:\"Authorization, X-WP-Nonce, Content-Disposition, Content-MD5, Content-Type\";s:13:\"x-wccom-cache\";s:3:\"HIT\";s:13:\"cache-control\";s:10:\"max-age=60\";s:5:\"allow\";s:3:\"GET\";s:16:\"content-encoding\";s:4:\"gzip\";s:4:\"x-rq\";s:13:\"bur6 0 4 9980\";s:3:\"age\";s:2:\"54\";s:7:\"x-cache\";s:3:\"hit\";s:4:\"vary\";s:23:\"Accept-Encoding, Origin\";s:13:\"accept-ranges\";s:5:\"bytes\";}}s:4:\"body\";s:48324:\"{\"products\":[{\"title\":\"WooCommerce Google Analytics\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/GA-Dark.png\",\"excerpt\":\"Understand your customers and increase revenue with world\\u2019s leading analytics platform - integrated with WooCommerce for free.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-google-analytics\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"2d21f7de14dfb8e9885a4622be701ddf\",\"slug\":\"woocommerce-google-analytics-integration\",\"id\":1442927},{\"title\":\"WooCommerce Tax\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Tax-Dark.png\",\"excerpt\":\"Automatically calculate how much sales tax should be collected for WooCommerce orders - by city, country, or state - at checkout.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/tax\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"f31b3b9273cce188cc2b27f7849d02dd\",\"slug\":\"woocommerce-services\",\"id\":3220291},{\"title\":\"Stripe\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Stripe-Dark-1.png\",\"excerpt\":\"Accept all major debit and credit cards as well as local payment methods with Stripe.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/stripe\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"50bb7a985c691bb943a9da4d2c8b5efd\",\"slug\":\"woocommerce-gateway-stripe\",\"id\":18627},{\"title\":\"Jetpack\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Jetpack-Dark.png\",\"excerpt\":\"Power up and protect your store with Jetpack\\r\\n\\r\\nFor free security, insights and monitoring, connect to Jetpack. It\'s everything you need for a strong, secure start.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/jetpack\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"d5bfef9700b62b2b132c74c74c3193eb\",\"slug\":\"jetpack\",\"id\":2725249},{\"title\":\"Facebook for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Facebook-Dark.png\",\"excerpt\":\"Get the Official Facebook for WooCommerce plugin for three powerful ways to help grow your business.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/facebook\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"0ea4fe4c2d7ca6338f8a322fb3e4e187\",\"slug\":\"facebook-for-woocommerce\",\"id\":2127297},{\"title\":\"Amazon Pay\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Amazon-Pay-Dark.png\",\"excerpt\":\"Amazon Pay is embedded in your WooCommerce store. Transactions take place via\\u00a0Amazon widgets, so the buyer never leaves your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/pay-with-amazon\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"9865e043bbbe4f8c9735af31cb509b53\",\"slug\":\"woocommerce-gateway-amazon-payments-advanced\",\"id\":238816},{\"title\":\"Square for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Square-Dark.png\",\"excerpt\":\"Accepting payments is easy with Square. Clear rates, fast deposits (1-2 business days). Sell online and in person, and sync all payments, items and inventory.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/square\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"e907be8b86d7df0c8f8e0d0020b52638\",\"slug\":\"woocommerce-square\",\"id\":1770503},{\"title\":\"WooCommerce Shipping\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Ship-Dark-1.png\",\"excerpt\":\"Print USPS and DHL labels right from your WooCommerce dashboard and instantly save up to 90%. WooCommerce Shipping is free to use and saves you time and money.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipping\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"f31b3b9273cce188cc2b27f7849d02dd\",\"slug\":\"woocommerce-services\",\"id\":2165910},{\"title\":\"WooCommerce Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Pay-Dark.png\",\"excerpt\":\"Securely accept payments, track cash flow, and manage recurring revenue from your dashboard \\u2014 all without setup costs or monthly fees.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-payments\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"8c6319ca-8f41-4e69-be63-6b15ee37773b\",\"slug\":\"woocommerce-payments\",\"id\":5278104},{\"title\":\"Mailchimp for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/09\\/logo-mailchimp-dark-v2.png\",\"excerpt\":\"Increase traffic, drive repeat purchases, and personalize your marketing when you connect to Mailchimp.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/mailchimp-for-woocommerce\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"b4481616ebece8b1ff68fc59b90c1a91\",\"slug\":\"mailchimp-for-woocommerce\",\"id\":2545166},{\"title\":\"WooCommerce Subscriptions\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Subscriptions-Dark.png\",\"excerpt\":\"Let customers subscribe to your products or services and pay on a weekly, monthly or annual basis.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-subscriptions\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;199.00\",\"hash\":\"6115e6d7e297b623a169fdcf5728b224\",\"slug\":\"woocommerce-subscriptions\",\"id\":27147},{\"title\":\"ShipStation Integration\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Shipstation-Dark.png\",\"excerpt\":\"Fulfill all your Woo orders (and wherever else you sell) quickly and easily using ShipStation. Try it free for 30 days today!\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipstation-integration\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"9de8640767ba64237808ed7f245a49bb\",\"slug\":\"woocommerce-shipstation-integration\",\"id\":18734},{\"title\":\"Product Add-Ons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Product-Add-Ons-Dark.png\",\"excerpt\":\"Offer add-ons like gift wrapping, special messages or other special options for your products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-add-ons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"147d0077e591e16db9d0d67daeb8c484\",\"slug\":\"woocommerce-product-addons\",\"id\":18618},{\"title\":\"PayFast Payment Gateway\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Payfast-Dark-1.png\",\"excerpt\":\"Take payments on your WooCommerce store via PayFast (redirect method).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/payfast-payment-gateway\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"557bf07293ad916f20c207c6c9cd15ff\",\"slug\":\"woocommerce-payfast-gateway\",\"id\":18596},{\"title\":\"USPS Shipping Method\",\"image\":\"\",\"excerpt\":\"Get shipping rates from the USPS API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/usps-shipping-method\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"83d1524e8f5f1913e58889f83d442c32\",\"slug\":\"woocommerce-shipping-usps\",\"id\":18657},{\"title\":\"Google Ads &amp; Marketing by Kliken\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/02\\/GA-for-Woo-Logo-374x192px-qu3duk.png\",\"excerpt\":\"Get in front of shoppers and drive traffic to your store so you can grow your business with Smart Shopping Campaigns and free listings.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-ads-and-marketing\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"bf66e173-a220-4da7-9512-b5728c20fc16\",\"slug\":\"kliken-marketing-for-google\",\"id\":3866145},{\"title\":\"UPS Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/UPS-Shipping-Method-Dark.png\",\"excerpt\":\"Get shipping rates from the UPS API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/ups-shipping-method\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"8dae58502913bac0fbcdcaba515ea998\",\"slug\":\"woocommerce-shipping-ups\",\"id\":18665},{\"title\":\"Shipment Tracking\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Ship-Tracking-Dark-1.png\",\"excerpt\":\"Add shipment tracking information to your orders.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipment-tracking\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"1968e199038a8a001c9f9966fd06bf88\",\"slug\":\"woocommerce-shipment-tracking\",\"id\":18693},{\"title\":\"Table Rate Shipping\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Product-Table-Rate-Shipping-Dark.png\",\"excerpt\":\"Advanced, flexible shipping. Define multiple shipping rates based on location, price, weight, shipping class or item count.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/table-rate-shipping\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"3034ed8aff427b0f635fe4c86bbf008a\",\"slug\":\"woocommerce-table-rate-shipping\",\"id\":18718},{\"title\":\"Checkout Field Editor\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Checkout-Field-Editor-Dark.png\",\"excerpt\":\"Optimize your checkout process by adding, removing or editing fields to suit your needs.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-checkout-field-editor\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"2b8029f0d7cdd1118f4d843eb3ab43ff\",\"slug\":\"woocommerce-checkout-field-editor\",\"id\":184594},{\"title\":\"Braintree for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/02\\/braintree-black-copy.png\",\"excerpt\":\"Accept PayPal, credit cards and debit cards with a single payment gateway solution \\u2014 PayPal Powered by Braintree.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-paypal-powered-by-braintree\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"27f010c8e34ca65b205ddec88ad14536\",\"slug\":\"woocommerce-gateway-paypal-powered-by-braintree\",\"id\":1489837},{\"title\":\"WooCommerce Bookings\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Bookings-Dark.png\",\"excerpt\":\"Allow customers to book appointments, make reservations or rent equipment without leaving your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-bookings\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/themes.woocommerce.com\\/hotel\\/\",\"price\":\"&#36;249.00\",\"hash\":\"911c438934af094c2b38d5560b9f50f3\",\"slug\":\"WooCommerce Bookings\",\"id\":390890},{\"title\":\"WooCommerce Memberships\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/Thumbnail-Memberships-updated.png\",\"excerpt\":\"Give members access to restricted content or products, for a fee or for free.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-memberships\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;199.00\",\"hash\":\"9288e7609ad0b487b81ef6232efa5cfc\",\"slug\":\"woocommerce-memberships\",\"id\":958589},{\"title\":\"Product Bundles\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/07\\/Logo-PB.png?v=1\",\"excerpt\":\"Offer personalized product bundles, bulk discount packages, and assembled\\u00a0products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-bundles\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"aa2518b5-ab19-4b75-bde9-60ca51e20f28\",\"slug\":\"woocommerce-product-bundles\",\"id\":18716},{\"title\":\"Multichannel for WooCommerce: Google, Amazon, eBay &amp; Walmart Integration\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/10\\/Woo-Extension-Store-Logo-v2.png\",\"excerpt\":\"Get the official Google, Amazon, eBay and Walmart extension and create, sync and manage multichannel listings directly from WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/amazon-ebay-integration\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"e4000666-9275-4c71-8619-be61fb41c9f9\",\"slug\":\"woocommerce-amazon-ebay-integration\",\"id\":3545890},{\"title\":\"Min\\/Max Quantities\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Min-Max-Qua-Dark.png\",\"excerpt\":\"Specify minimum and maximum allowed product quantities for orders to be completed.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/minmax-quantities\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"2b5188d90baecfb781a5aa2d6abb900a\",\"slug\":\"woocommerce-min-max-quantities\",\"id\":18616},{\"title\":\"FedEx Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/01\\/FedEx_Logo_Wallpaper.jpeg\",\"excerpt\":\"Get shipping rates from the FedEx API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/fedex-shipping-module\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"1a48b598b47a81559baadef15e320f64\",\"slug\":\"woocommerce-shipping-fedex\",\"id\":18620},{\"title\":\"LiveChat for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/11\\/LC_woo_regular-zmiaym.png\",\"excerpt\":\"Live Chat and messaging platform for sales and support -- increase average order value and overall sales through live conversations.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/livechat\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.livechat.com\\/livechat-for-ecommerce\\/?a=woocommerce&amp;utm_source=woocommerce.com&amp;utm_medium=integration&amp;utm_campaign=woocommerce.com\",\"price\":\"&#36;0.00\",\"hash\":\"5344cc1f-ed4a-4d00-beff-9d67f6d372f3\",\"slug\":\"livechat-woocommerce\",\"id\":1348888},{\"title\":\"Product CSV Import Suite\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Product-CSV-Import-Dark.png\",\"excerpt\":\"Import, merge, and export products and variations to and from WooCommerce using a CSV file.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-csv-import-suite\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"7ac9b00a1fe980fb61d28ab54d167d0d\",\"slug\":\"woocommerce-product-csv-import-suite\",\"id\":18680},{\"title\":\"Follow-Ups\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Follow-Ups-Dark.png\",\"excerpt\":\"Automatically contact customers after purchase - be it everyone, your most loyal or your biggest spenders - and keep your store top-of-mind.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/follow-up-emails\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"05ece68fe94558e65278fe54d9ec84d2\",\"slug\":\"woocommerce-follow-up-emails\",\"id\":18686},{\"title\":\"Authorize.Net\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/04\\/Thumbnail-Authorize.net-updated.png\",\"excerpt\":\"Authorize.Net gateway with support for pre-orders and subscriptions.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/authorize-net\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"8b61524fe53add7fdd1a8d1b00b9327d\",\"slug\":\"woocommerce-gateway-authorize-net-cim\",\"id\":178481},{\"title\":\"Australia Post Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/australia-post.gif\",\"excerpt\":\"Get shipping rates for your WooCommerce store from the Australia Post API, which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/australia-post-shipping-method\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"1dbd4dc6bd91a9cda1bd6b9e7a5e4f43\",\"slug\":\"woocommerce-shipping-australia-post\",\"id\":18622},{\"title\":\"Canada Post Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/canada-post.png\",\"excerpt\":\"Get shipping rates from the Canada Post Ratings API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/canada-post-shipping-method\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"ac029cdf3daba20b20c7b9be7dc00e0e\",\"slug\":\"woocommerce-shipping-canada-post\",\"id\":18623},{\"title\":\"WooCommerce Customer \\/ Order \\/ Coupon Export\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/02\\/Thumbnail-Customer-Order-Coupon-Export-updated.png\",\"excerpt\":\"Export customers, orders, and coupons from WooCommerce manually or on an automated schedule.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/ordercustomer-csv-export\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"914de15813a903c767b55445608bf290\",\"slug\":\"woocommerce-customer-order-csv-export\",\"id\":18652},{\"title\":\"Product Vendors\",\"image\":\"\",\"excerpt\":\"Turn your store into a multi-vendor marketplace\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-vendors\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"a97d99fccd651bbdd728f4d67d492c31\",\"slug\":\"woocommerce-product-vendors\",\"id\":219982},{\"title\":\"WooCommerce Accommodation Bookings\",\"image\":\"\",\"excerpt\":\"Book accommodation using WooCommerce and the WooCommerce Bookings extension.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-accommodation-bookings\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"99b2a7a4af90b6cefd2a733b3b1f78e7\",\"slug\":\"woocommerce-accommodation-bookings\",\"id\":1412069},{\"title\":\"Royal Mail\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/04\\/royalmail.png\",\"excerpt\":\"Offer Royal Mail shipping rates to your customers\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/royal-mail\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"03839cca1a16c4488fcb669aeb91a056\",\"slug\":\"woocommerce-shipping-royalmail\",\"id\":182719},{\"title\":\"WooCommerce Brands\",\"image\":\"\",\"excerpt\":\"Create, assign and list brands for products, and allow customers to view by brand.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/brands\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"8a88c7cbd2f1e73636c331c7a86f818c\",\"slug\":\"woocommerce-brands\",\"id\":18737},{\"title\":\"Xero\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2012\\/08\\/xero2.png\",\"excerpt\":\"Save time with automated sync between WooCommerce and your Xero account.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/xero\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"f0dd29d338d3c67cf6cee88eddf6869b\",\"slug\":\"woocommerce-xero\",\"id\":18733},{\"title\":\"Smart Coupons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/10\\/wc-product-smart-coupons.png\",\"excerpt\":\"Everything you need for discounts, coupons, credits, gift cards, product giveaways, offers, and promotions. Most popular and complete coupons plugin for WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/smart-coupons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/demo.storeapps.org\\/?demo=sc\",\"price\":\"&#36;99.00\",\"hash\":\"05c45f2aa466106a466de4402fff9dde\",\"slug\":\"woocommerce-smart-coupons\",\"id\":18729},{\"title\":\"AutomateWoo\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-AutomateWoo-Dark-1.png\",\"excerpt\":\"Powerful marketing automation for WooCommerce. AutomateWoo has the tools you need to grow your store and make more money.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/automatewoo\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"ba9299b8-1dba-4aa0-a313-28bc1755cb88\",\"slug\":\"automatewoo\",\"id\":4652610},{\"title\":\"Advanced Notifications\",\"image\":\"\",\"excerpt\":\"Easily setup \\\"new order\\\" and stock email notifications for multiple recipients of your choosing.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/advanced-notifications\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"112372c44b002fea2640bd6bfafbca27\",\"slug\":\"woocommerce-advanced-notifications\",\"id\":18740},{\"title\":\"WooCommerce Points and Rewards\",\"image\":\"\",\"excerpt\":\"Reward your customers for purchases and other actions with points which can be redeemed for discounts.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-points-and-rewards\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"1649b6cca5da8b923b01ca56b5cdd246\",\"slug\":\"woocommerce-points-and-rewards\",\"id\":210259},{\"title\":\"WooCommerce Zapier\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/woocommerce-zapier-logo.png\",\"excerpt\":\"Integrate with 3000+ cloud apps and services today.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-zapier\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"hash\":\"0782bdbe932c00f4978850268c6cfe40\",\"slug\":\"woocommerce-zapier\",\"id\":243589},{\"title\":\"WooCommerce Pre-Orders\",\"image\":\"\",\"excerpt\":\"Allow customers to order products before they are available.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-pre-orders\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"b2dc75e7d55e6f5bbfaccb59830f66b7\",\"slug\":\"woocommerce-pre-orders\",\"id\":178477},{\"title\":\"WooCommerce Subscription Downloads\",\"image\":\"\",\"excerpt\":\"Offer additional downloads to your subscribers, via downloadable products listed in your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-subscription-downloads\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"5be9e21c13953253e4406d2a700382ec\",\"slug\":\"woocommerce-subscription-downloads\",\"id\":420458},{\"title\":\"Dynamic Pricing\",\"image\":\"\",\"excerpt\":\"Bulk discounts, role-based pricing and much more\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/dynamic-pricing\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"9a41775bb33843f52c93c922b0053986\",\"slug\":\"woocommerce-dynamic-pricing\",\"id\":18643},{\"title\":\"Name Your Price\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2012\\/09\\/nyp-icon-dark-v83owf.png\",\"excerpt\":\"Allow customers to define the product price. Also useful for accepting user-set donations.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/name-your-price\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"31b4e11696cd99a3c0572975a84f1c08\",\"slug\":\"woocommerce-name-your-price\",\"id\":18738},{\"title\":\"WooCommerce Additional Variation Images\",\"image\":\"\",\"excerpt\":\"Add gallery images per variation on variable products within WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-additional-variation-images\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/themes.woocommerce.com\\/storefront\\/product\\/woo-single-1\\/\",\"price\":\"&#36;49.00\",\"hash\":\"c61dd6de57dcecb32bd7358866de4539\",\"slug\":\"woocommerce-additional-variation-images\",\"id\":477384},{\"title\":\"WooCommerce Print Invoices &amp; Packing lists\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/03\\/Thumbnail-Print-Invoices-Packing-lists-updated.png\",\"excerpt\":\"Generate invoices, packing slips, and pick lists for your WooCommerce orders.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/print-invoices-packing-lists\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"465de1126817cdfb42d97ebca7eea717\",\"slug\":\"woocommerce-pip\",\"id\":18666},{\"title\":\"WooCommerce Deposits\",\"image\":\"\",\"excerpt\":\"Enable customers to pay for products using a deposit or a payment plan.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-deposits\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;179.00\",\"hash\":\"de192a6cf12c4fd803248da5db700762\",\"slug\":\"woocommerce-deposits\",\"id\":977087},{\"title\":\"Amazon S3 Storage\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/amazon.png\",\"excerpt\":\"Serve digital products via Amazon S3\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/amazon-s3-storage\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"473bf6f221b865eff165c97881b473bb\",\"slug\":\"woocommerce-amazon-s3-storage\",\"id\":18663},{\"title\":\"Cart Add-ons\",\"image\":\"\",\"excerpt\":\"A powerful tool for driving incremental and impulse purchases by customers once they are in the shopping cart\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/cart-add-ons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"3a8ef25334396206f5da4cf208adeda3\",\"slug\":\"woocommerce-cart-add-ons\",\"id\":18717},{\"title\":\"Shipping Multiple Addresses\",\"image\":\"\",\"excerpt\":\"Allow your customers to ship individual items in a single order to multiple addresses.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipping-multiple-addresses\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"aa0eb6f777846d329952d5b891d6f8cc\",\"slug\":\"woocommerce-shipping-multiple-addresses\",\"id\":18741},{\"title\":\"Google Product Feed\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2011\\/11\\/logo-regular-lscryp.png\",\"excerpt\":\"Feed product data to Google Merchant Center for setting up Google product listings &amp; product ads.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-product-feed\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"d55b4f852872025741312839f142447e\",\"slug\":\"woocommerce-product-feeds\",\"id\":18619},{\"title\":\"WooCommerce AvaTax\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/01\\/Thumbnail-Avalara-updated.png\",\"excerpt\":\"Get 100% accurate sales tax calculations and on time tax return filing. No more tracking sales tax rates, rules, or jurisdictional boundaries.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-avatax\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"57077a4b28ba71cacf692bcf4a1a7f60\",\"slug\":\"woocommerce-avatax\",\"id\":1389326},{\"title\":\"TaxJar\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/10\\/taxjar-logotype.png\",\"excerpt\":\"Save hours every month by putting your sales tax on autopilot. Automated, multi-state sales tax calculation, reporting, and filing for your WooCommerce store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/taxjar\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"12072d8e-e933-4561-97b1-9db3c7eeed91\",\"slug\":\"taxjar-simplified-taxes-for-woocommerce\",\"id\":514914},{\"title\":\"Klarna Checkout\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/01\\/Partner_marketing_Klarna_Checkout_Black-1.png\",\"excerpt\":\"Klarna Checkout is a full checkout experience embedded on your site that includes all popular payment methods (Pay Now, Pay Later, Financing, Installments).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/klarna-checkout\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.krokedil.se\\/klarnacheckout\\/\",\"price\":\"&#36;0.00\",\"hash\":\"90f8ce584e785fcd8c2d739fd4f40d78\",\"slug\":\"klarna-checkout-for-woocommerce\",\"id\":2754152},{\"title\":\"Bulk Stock Management\",\"image\":\"\",\"excerpt\":\"Edit product and variation stock levels in bulk via this handy interface\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/bulk-stock-management\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"02f4328d52f324ebe06a78eaaae7934f\",\"slug\":\"woocommerce-bulk-stock-management\",\"id\":18670},{\"title\":\"WooCommerce Email Customizer\",\"image\":\"\",\"excerpt\":\"Connect with your customers with each email you send by visually modifying your email templates via the WordPress Customizer.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-email-customizer\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"bd909fa97874d431f203b5336c7e8873\",\"slug\":\"woocommerce-email-customizer\",\"id\":853277},{\"title\":\"Force Sells\",\"image\":\"\",\"excerpt\":\"Force products to be added to the cart\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/force-sells\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"3ebddfc491ca168a4ea4800b893302b0\",\"slug\":\"woocommerce-force-sells\",\"id\":18678},{\"title\":\"WooCommerce Quick View\",\"image\":\"\",\"excerpt\":\"Show a quick-view button to view product details and add to cart via lightbox popup\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-quick-view\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"619c6e57ce72c49c4b57e15b06eddb65\",\"slug\":\"woocommerce-quick-view\",\"id\":187509},{\"title\":\"WooCommerce Purchase Order Gateway\",\"image\":\"\",\"excerpt\":\"Receive purchase orders via your WooCommerce-powered online store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-purchase-order\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"573a92318244ece5facb449d63e74874\",\"slug\":\"woocommerce-gateway-purchase-order\",\"id\":478542},{\"title\":\"Returns and Warranty Requests\",\"image\":\"\",\"excerpt\":\"Manage the RMA process, add warranties to products &amp; let customers request &amp; manage returns \\/ exchanges from their account.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/warranty-requests\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"9b4c41102e6b61ea5f558e16f9b63e25\",\"slug\":\"woocommerce-warranty\",\"id\":228315},{\"title\":\"Product Enquiry Form\",\"image\":\"\",\"excerpt\":\"Allow visitors to contact you directly from the product details page via a reCAPTCHA protected form to enquire about a product.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-enquiry-form\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"5a0f5d72519a8ffcc86669f042296937\",\"slug\":\"woocommerce-product-enquiry-form\",\"id\":18601},{\"title\":\"WooCommerce Box Office\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-BO-Dark.png\",\"excerpt\":\"Sell tickets for your next event, concert, function, fundraiser or conference directly on your own site\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-box-office\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"e704c9160de318216a8fa657404b9131\",\"slug\":\"woocommerce-box-office\",\"id\":1628717},{\"title\":\"Gravity Forms Product Add-ons\",\"image\":\"\",\"excerpt\":\"Powerful product add-ons, Gravity style\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/gravity-forms-add-ons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.elementstark.com\\/woocommerce-extension-demos\\/product-category\\/gravity-forms\\/\",\"price\":\"&#36;99.00\",\"hash\":\"a6ac0ab1a1536e3a357ccf24c0650ed0\",\"slug\":\"woocommerce-gravityforms-product-addons\",\"id\":18633},{\"title\":\"Composite Products\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/07\\/Logo-CP.png?v=1\",\"excerpt\":\"Create product kit builders and custom product configurators using existing products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/composite-products\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"0343e0115bbcb97ccd98442b8326a0af\",\"slug\":\"woocommerce-composite-products\",\"id\":216836},{\"title\":\"WooCommerce Order Barcodes\",\"image\":\"\",\"excerpt\":\"Generates a unique barcode for each order on your site - perfect for e-tickets, packing slips, reservations and a variety of other uses.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-order-barcodes\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"889835bb29ee3400923653e1e44a3779\",\"slug\":\"woocommerce-order-barcodes\",\"id\":391708},{\"title\":\"WooCommerce 360\\u00ba Image\",\"image\":\"\",\"excerpt\":\"An easy way to add a dynamic, controllable 360\\u00ba image rotation to your WooCommerce site, by adding a group of images to a product\\u2019s gallery.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-360-image\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"24eb2cfa3738a66bf3b2587876668cd2\",\"slug\":\"woocommerce-360-image\",\"id\":512186},{\"title\":\"WooCommerce Photography\",\"image\":\"\",\"excerpt\":\"Sell photos in the blink of an eye using this simple as dragging &amp; dropping interface.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-photography\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"ee76e8b9daf1d97ca4d3874cc9e35687\",\"slug\":\"woocommerce-photography\",\"id\":583602},{\"title\":\"WooCommerce Bookings Availability\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Bookings-Aval-Dark.png\",\"excerpt\":\"Sell more bookings by presenting a calendar or schedule of available slots in a page or post.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/bookings-availability\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"30770d2a-e392-4e82-baaa-76cfc7d02ae3\",\"slug\":\"woocommerce-bookings-availability\",\"id\":4228225},{\"title\":\"Software Add-on\",\"image\":\"\",\"excerpt\":\"Sell License Keys for Software\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/software-add-on\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"79f6dbfe1f1d3a56a86f0509b6d6b04b\",\"slug\":\"woocommerce-software-add-on\",\"id\":18683},{\"title\":\"WooCommerce Products Compare\",\"image\":\"\",\"excerpt\":\"WooCommerce Products Compare will allow your potential customers to easily compare products within your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-products-compare\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"c3ba0a4a3199a0cc7a6112eb24414548\",\"slug\":\"woocommerce-products-compare\",\"id\":853117},{\"title\":\"WooCommerce Store Catalog PDF Download\",\"image\":\"\",\"excerpt\":\"Offer your customers a PDF download of your product catalog, generated by WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-store-catalog-pdf-download\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"79ca7aadafe706364e2d738b7c1090c4\",\"slug\":\"woocommerce-store-catalog-pdf-download\",\"id\":675790},{\"title\":\"WooCommerce Paid Courses\",\"image\":\"\",\"excerpt\":\"Sell your online courses using the most popular eCommerce platform on the web \\u2013 WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-paid-courses\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"bad2a02a063555b7e2bee59924690763\",\"slug\":\"woothemes-sensei\",\"id\":152116},{\"title\":\"eWAY\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/10\\/eway-logo-3000-2000.jpg\",\"excerpt\":\"Take credit card payments securely via eWay (SG, MY, HK, AU, and NZ) keeping customers on your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/eway\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"2c497769d98d025e0d340cd0b5ea5da1\",\"slug\":\"woocommerce-gateway-eway\",\"id\":18604},{\"title\":\"PayPal\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2020\\/10\\/PPCP-Tile-PayPal-Logo-and-Cart-Art-2x-2-uozwz8.jpg\",\"excerpt\":\"PayPal\\u2019s latest, most complete payment processing solution. Accept PayPal exclusives, credit\\/debit cards and local payment methods. Turn on only PayPal options or process a full suite of payment methods. Enable global transactions with extensive currency and country coverage. Built and supported by WooCommerce and PayPal.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-paypal-payments\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"934115ab-e3f3-4435-9580-345b1ce21899\",\"slug\":\"woocommerce-paypal-payments\",\"id\":6410731},{\"title\":\"Catalog Visibility Options\",\"image\":\"\",\"excerpt\":\"Transform WooCommerce into an online catalog by removing eCommerce functionality\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/catalog-visibility-options\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"12e791110365fdbb5865c8658907967e\",\"slug\":\"woocommerce-catalog-visibility-options\",\"id\":18648},{\"title\":\"QuickBooks Sync for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/04\\/woocommerce-com-logo-1-hyhzbh.png\",\"excerpt\":\"Automatic two-way sync for orders, customers, products, inventory and more between WooCommerce and QuickBooks (Online, Desktop, or POS).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/quickbooks-sync-for-woocommerce\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"c5e32e20-7c1f-4585-8b15-d930c2d842ac\",\"slug\":\"myworks-woo-sync-for-quickbooks-online\",\"id\":4065824},{\"title\":\"WooCommerce Blocks\",\"image\":\"\",\"excerpt\":\"WooCommerce Blocks offers a range of Gutenberg blocks you can use to build and customise your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gutenberg-products-block\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"c2e9f13a-f90c-4ffe-a8a5-b432399ec263\",\"slug\":\"woo-gutenberg-products-block\",\"id\":3076677},{\"title\":\"Conditional Shipping and Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/07\\/Logo-CSP.png?v=1\",\"excerpt\":\"Use conditional logic to restrict the shipping and payment options available on your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/conditional-shipping-and-payments\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"1f56ff002fa830b77017b0107505211a\",\"slug\":\"woocommerce-conditional-shipping-and-payments\",\"id\":680253},{\"title\":\"Sequential Order Numbers Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/05\\/Thumbnail-Sequential-Order-Numbers-Pro-updated.png\",\"excerpt\":\"Tame your order numbers! Advanced &amp; sequential order numbers with optional prefixes \\/ suffixes\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sequential-order-numbers-pro\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"0b18a2816e016ba9988b93b1cd8fe766\",\"slug\":\"woocommerce-sequential-order-numbers-pro\",\"id\":18688},{\"title\":\"WooCommerce Order Status Manager\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/02\\/Thumbnail-Order-Status-Manager-updated.png\",\"excerpt\":\"Create, edit, and delete completely custom order statuses and integrate them seamlessly into your order management flow.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-order-status-manager\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"51fd9ab45394b4cad5a0ebf58d012342\",\"slug\":\"woocommerce-order-status-manager\",\"id\":588398},{\"title\":\"WooCommerce Checkout Add-Ons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/07\\/Thumbnail-Checkout-Add-Ons-updated.png\",\"excerpt\":\"Highlight relevant products, offers like free shipping and other up-sells during checkout.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-checkout-add-ons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"8fdca00b4000b7a8cc26371d0e470a8f\",\"slug\":\"woocommerce-checkout-add-ons\",\"id\":466854},{\"title\":\"WooCommerce Google Analytics Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/01\\/Thumbnail-GAPro-updated.png\",\"excerpt\":\"Add advanced event tracking and enhanced eCommerce tracking to your WooCommerce site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-google-analytics-pro\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"d8aed8b7306b509eec1589e59abe319f\",\"slug\":\"woocommerce-google-analytics-pro\",\"id\":1312497},{\"title\":\"WooCommerce One Page Checkout\",\"image\":\"\",\"excerpt\":\"Create special pages where customers can choose products, checkout &amp; pay all on the one page.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-one-page-checkout\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"c9ba8f8352cd71b5508af5161268619a\",\"slug\":\"woocommerce-one-page-checkout\",\"id\":527886},{\"title\":\"Coupon Shortcodes\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/09\\/woocommerce-coupon-shortcodes-product-image-1870x960-1-vc5gux.png\",\"excerpt\":\"Show coupon discount info using shortcodes. Allows to render coupon information and content conditionally, based on the validity of coupons.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/coupon-shortcodes\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"ac5d9d51-70b2-4d8f-8b89-24200eea1394\",\"slug\":\"woocommerce-coupon-shortcodes\",\"id\":244762},{\"title\":\"WooCommerce Product Search\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2014\\/10\\/woocommerce-product-search-product-image-1870x960-1-jvsljj.png\",\"excerpt\":\"The perfect search engine helps customers to find and buy products quickly \\u2013 essential for every WooCommerce store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-product-search\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.itthinx.com\\/wps\\/\",\"price\":\"&#36;49.00\",\"hash\":\"c84cc8ca16ddac3408e6b6c5871133a8\",\"slug\":\"woocommerce-product-search\",\"id\":512174},{\"title\":\"First Data\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/02\\/Thumbnail-FirstData-updated.png\",\"excerpt\":\"FirstData gateway for WooCommerce\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/firstdata\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"eb3e32663ec0810592eaf0d097796230\",\"slug\":\"woocommerce-gateway-firstdata\",\"id\":18645},{\"title\":\"Jilt\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2017\\/12\\/Thumbnail-Jilt-updated.png\",\"excerpt\":\"All-in-one email marketing platform built for WooCommerce stores. Send newsletters, abandoned cart reminders, win-backs, welcome automations, and more.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/jilt\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"b53aafb64dca33835e41ee06de7e9816\",\"slug\":\"jilt-for-woocommerce\",\"id\":2754876},{\"title\":\"WooSlider\",\"image\":\"\",\"excerpt\":\"WooSlider is the ultimate responsive slideshow WordPress slider plugin\\r\\n\\r\\n\\u00a0\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/wooslider\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/www.wooslider.com\\/\",\"price\":\"&#36;49.00\",\"hash\":\"209d98f3ccde6cc3de7e8732a2b20b6a\",\"slug\":\"wooslider\",\"id\":46506},{\"title\":\"WooCommerce Social Login\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/08\\/Thumbnail-Social-Login-updated.png\",\"excerpt\":\"Enable Social Login for seamless checkout and account creation.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-social-login\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/demos.skyverge.com\\/woocommerce-social-login\\/\",\"price\":\"&#36;79.00\",\"hash\":\"b231cd6367a79cc8a53b7d992d77525d\",\"slug\":\"woocommerce-social-login\",\"id\":473617},{\"title\":\"WooCommerce Order Status Control\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/06\\/Thumbnail-Order-Status-Control-updated.png\",\"excerpt\":\"Use this extension to automatically change the order status to \\\"completed\\\" after successful payment.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-order-status-control\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"32400e509c7c36dcc1cd368e8267d981\",\"slug\":\"woocommerce-order-status-control\",\"id\":439037},{\"title\":\"Variation Swatches and Photos\",\"image\":\"\",\"excerpt\":\"Show color and image swatches instead of dropdowns for variable products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/variation-swatches-and-photos\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.elementstark.com\\/woocommerce-extension-demos\\/product-category\\/swatches-and-photos\\/\",\"price\":\"&#36;99.00\",\"hash\":\"37bea8d549df279c8278878d081b062f\",\"slug\":\"woocommerce-variation-swatches-and-photos\",\"id\":18697},{\"title\":\"Opayo Payment Suite\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/10\\/Opayo_logo_RGB.png\",\"excerpt\":\"Take payments on your WooCommerce store via Opayo (formally SagePay).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sage-pay-form\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"6bc0cca47d0274d8ef9b164f6fbec1cc\",\"slug\":\"woocommerce-gateway-sagepay-form\",\"id\":18599},{\"title\":\"EU VAT Number\",\"image\":\"\",\"excerpt\":\"Collect VAT numbers at checkout and remove the VAT charge for eligible EU businesses.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/eu-vat-number\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"d2720c4b4bb8d6908e530355b7a2d734\",\"slug\":\"woocommerce-eu-vat-number\",\"id\":18592},{\"title\":\"HubSpot for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2020\\/04\\/hubspotlogo-web-color-pxebeq.png\",\"excerpt\":\"Integrate HubSpot with WooCommerce to connect your store with HubSpot\'s CRM, abandoned cart tracking, marketing automation &amp; more.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/hubspot-for-woocommerce\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"e50acec8-3a6c-454c-8562-2da4898fa6c1\",\"slug\":\"hubspot-for-woocommerce\",\"id\":5785079},{\"title\":\"Customer\\/Order\\/Coupon CSV Import Suite\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/07\\/Thumbnail-Customer-Order-Coupon-CSV-Import-Suite-updated.png\",\"excerpt\":\"Import both customers and orders into WooCommerce from a CSV file.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/customerorder-csv-import-suite\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"eb00ca8317a0f64dbe185c995e5ea3df\",\"slug\":\"woocommerce-customer-order-csv-import\",\"id\":18709},{\"title\":\"WooCommerce Tab Manager\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/11\\/Thumbnail-Tab-Manager-updated.png\",\"excerpt\":\"Gives you complete control over your product page tabs, create local and global tabs using a visual drag-and-drop interface, and more.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-tab-manager\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"89a9ac74850855cfe772b4b4ee1e31e0\",\"slug\":\"woocommerce-tab-manager\",\"id\":132195}]}\";s:8:\"response\";a:2:{s:4:\"code\";i:200;s:7:\"message\";s:2:\"OK\";}s:7:\"cookies\";a:0:{}s:8:\"filename\";N;s:13:\"http_response\";O:25:\"WP_HTTP_Requests_Response\":5:{s:11:\"\0*\0response\";O:17:\"Requests_Response\":10:{s:4:\"body\";s:48324:\"{\"products\":[{\"title\":\"WooCommerce Google Analytics\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/GA-Dark.png\",\"excerpt\":\"Understand your customers and increase revenue with world\\u2019s leading analytics platform - integrated with WooCommerce for free.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-google-analytics\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"2d21f7de14dfb8e9885a4622be701ddf\",\"slug\":\"woocommerce-google-analytics-integration\",\"id\":1442927},{\"title\":\"WooCommerce Tax\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Tax-Dark.png\",\"excerpt\":\"Automatically calculate how much sales tax should be collected for WooCommerce orders - by city, country, or state - at checkout.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/tax\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"f31b3b9273cce188cc2b27f7849d02dd\",\"slug\":\"woocommerce-services\",\"id\":3220291},{\"title\":\"Stripe\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Stripe-Dark-1.png\",\"excerpt\":\"Accept all major debit and credit cards as well as local payment methods with Stripe.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/stripe\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"50bb7a985c691bb943a9da4d2c8b5efd\",\"slug\":\"woocommerce-gateway-stripe\",\"id\":18627},{\"title\":\"Jetpack\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Jetpack-Dark.png\",\"excerpt\":\"Power up and protect your store with Jetpack\\r\\n\\r\\nFor free security, insights and monitoring, connect to Jetpack. It\'s everything you need for a strong, secure start.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/jetpack\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"d5bfef9700b62b2b132c74c74c3193eb\",\"slug\":\"jetpack\",\"id\":2725249},{\"title\":\"Facebook for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Facebook-Dark.png\",\"excerpt\":\"Get the Official Facebook for WooCommerce plugin for three powerful ways to help grow your business.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/facebook\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"0ea4fe4c2d7ca6338f8a322fb3e4e187\",\"slug\":\"facebook-for-woocommerce\",\"id\":2127297},{\"title\":\"Amazon Pay\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Amazon-Pay-Dark.png\",\"excerpt\":\"Amazon Pay is embedded in your WooCommerce store. Transactions take place via\\u00a0Amazon widgets, so the buyer never leaves your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/pay-with-amazon\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"9865e043bbbe4f8c9735af31cb509b53\",\"slug\":\"woocommerce-gateway-amazon-payments-advanced\",\"id\":238816},{\"title\":\"Square for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Square-Dark.png\",\"excerpt\":\"Accepting payments is easy with Square. Clear rates, fast deposits (1-2 business days). Sell online and in person, and sync all payments, items and inventory.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/square\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"e907be8b86d7df0c8f8e0d0020b52638\",\"slug\":\"woocommerce-square\",\"id\":1770503},{\"title\":\"WooCommerce Shipping\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Ship-Dark-1.png\",\"excerpt\":\"Print USPS and DHL labels right from your WooCommerce dashboard and instantly save up to 90%. WooCommerce Shipping is free to use and saves you time and money.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipping\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"f31b3b9273cce188cc2b27f7849d02dd\",\"slug\":\"woocommerce-services\",\"id\":2165910},{\"title\":\"WooCommerce Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Pay-Dark.png\",\"excerpt\":\"Securely accept payments, track cash flow, and manage recurring revenue from your dashboard \\u2014 all without setup costs or monthly fees.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-payments\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"8c6319ca-8f41-4e69-be63-6b15ee37773b\",\"slug\":\"woocommerce-payments\",\"id\":5278104},{\"title\":\"Mailchimp for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/09\\/logo-mailchimp-dark-v2.png\",\"excerpt\":\"Increase traffic, drive repeat purchases, and personalize your marketing when you connect to Mailchimp.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/mailchimp-for-woocommerce\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"b4481616ebece8b1ff68fc59b90c1a91\",\"slug\":\"mailchimp-for-woocommerce\",\"id\":2545166},{\"title\":\"WooCommerce Subscriptions\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Subscriptions-Dark.png\",\"excerpt\":\"Let customers subscribe to your products or services and pay on a weekly, monthly or annual basis.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-subscriptions\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;199.00\",\"hash\":\"6115e6d7e297b623a169fdcf5728b224\",\"slug\":\"woocommerce-subscriptions\",\"id\":27147},{\"title\":\"ShipStation Integration\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Shipstation-Dark.png\",\"excerpt\":\"Fulfill all your Woo orders (and wherever else you sell) quickly and easily using ShipStation. Try it free for 30 days today!\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipstation-integration\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"9de8640767ba64237808ed7f245a49bb\",\"slug\":\"woocommerce-shipstation-integration\",\"id\":18734},{\"title\":\"Product Add-Ons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Product-Add-Ons-Dark.png\",\"excerpt\":\"Offer add-ons like gift wrapping, special messages or other special options for your products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-add-ons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"147d0077e591e16db9d0d67daeb8c484\",\"slug\":\"woocommerce-product-addons\",\"id\":18618},{\"title\":\"PayFast Payment Gateway\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Payfast-Dark-1.png\",\"excerpt\":\"Take payments on your WooCommerce store via PayFast (redirect method).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/payfast-payment-gateway\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"557bf07293ad916f20c207c6c9cd15ff\",\"slug\":\"woocommerce-payfast-gateway\",\"id\":18596},{\"title\":\"USPS Shipping Method\",\"image\":\"\",\"excerpt\":\"Get shipping rates from the USPS API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/usps-shipping-method\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"83d1524e8f5f1913e58889f83d442c32\",\"slug\":\"woocommerce-shipping-usps\",\"id\":18657},{\"title\":\"Google Ads &amp; Marketing by Kliken\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/02\\/GA-for-Woo-Logo-374x192px-qu3duk.png\",\"excerpt\":\"Get in front of shoppers and drive traffic to your store so you can grow your business with Smart Shopping Campaigns and free listings.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-ads-and-marketing\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"bf66e173-a220-4da7-9512-b5728c20fc16\",\"slug\":\"kliken-marketing-for-google\",\"id\":3866145},{\"title\":\"UPS Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/UPS-Shipping-Method-Dark.png\",\"excerpt\":\"Get shipping rates from the UPS API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/ups-shipping-method\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"8dae58502913bac0fbcdcaba515ea998\",\"slug\":\"woocommerce-shipping-ups\",\"id\":18665},{\"title\":\"Shipment Tracking\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Ship-Tracking-Dark-1.png\",\"excerpt\":\"Add shipment tracking information to your orders.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipment-tracking\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"1968e199038a8a001c9f9966fd06bf88\",\"slug\":\"woocommerce-shipment-tracking\",\"id\":18693},{\"title\":\"Table Rate Shipping\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Product-Table-Rate-Shipping-Dark.png\",\"excerpt\":\"Advanced, flexible shipping. Define multiple shipping rates based on location, price, weight, shipping class or item count.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/table-rate-shipping\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"3034ed8aff427b0f635fe4c86bbf008a\",\"slug\":\"woocommerce-table-rate-shipping\",\"id\":18718},{\"title\":\"Checkout Field Editor\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Checkout-Field-Editor-Dark.png\",\"excerpt\":\"Optimize your checkout process by adding, removing or editing fields to suit your needs.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-checkout-field-editor\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"2b8029f0d7cdd1118f4d843eb3ab43ff\",\"slug\":\"woocommerce-checkout-field-editor\",\"id\":184594},{\"title\":\"Braintree for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/02\\/braintree-black-copy.png\",\"excerpt\":\"Accept PayPal, credit cards and debit cards with a single payment gateway solution \\u2014 PayPal Powered by Braintree.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-paypal-powered-by-braintree\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"27f010c8e34ca65b205ddec88ad14536\",\"slug\":\"woocommerce-gateway-paypal-powered-by-braintree\",\"id\":1489837},{\"title\":\"WooCommerce Bookings\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Bookings-Dark.png\",\"excerpt\":\"Allow customers to book appointments, make reservations or rent equipment without leaving your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-bookings\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/themes.woocommerce.com\\/hotel\\/\",\"price\":\"&#36;249.00\",\"hash\":\"911c438934af094c2b38d5560b9f50f3\",\"slug\":\"WooCommerce Bookings\",\"id\":390890},{\"title\":\"WooCommerce Memberships\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/Thumbnail-Memberships-updated.png\",\"excerpt\":\"Give members access to restricted content or products, for a fee or for free.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-memberships\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;199.00\",\"hash\":\"9288e7609ad0b487b81ef6232efa5cfc\",\"slug\":\"woocommerce-memberships\",\"id\":958589},{\"title\":\"Product Bundles\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/07\\/Logo-PB.png?v=1\",\"excerpt\":\"Offer personalized product bundles, bulk discount packages, and assembled\\u00a0products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-bundles\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"aa2518b5-ab19-4b75-bde9-60ca51e20f28\",\"slug\":\"woocommerce-product-bundles\",\"id\":18716},{\"title\":\"Multichannel for WooCommerce: Google, Amazon, eBay &amp; Walmart Integration\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/10\\/Woo-Extension-Store-Logo-v2.png\",\"excerpt\":\"Get the official Google, Amazon, eBay and Walmart extension and create, sync and manage multichannel listings directly from WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/amazon-ebay-integration\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"e4000666-9275-4c71-8619-be61fb41c9f9\",\"slug\":\"woocommerce-amazon-ebay-integration\",\"id\":3545890},{\"title\":\"Min\\/Max Quantities\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Min-Max-Qua-Dark.png\",\"excerpt\":\"Specify minimum and maximum allowed product quantities for orders to be completed.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/minmax-quantities\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"2b5188d90baecfb781a5aa2d6abb900a\",\"slug\":\"woocommerce-min-max-quantities\",\"id\":18616},{\"title\":\"FedEx Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/01\\/FedEx_Logo_Wallpaper.jpeg\",\"excerpt\":\"Get shipping rates from the FedEx API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/fedex-shipping-module\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"1a48b598b47a81559baadef15e320f64\",\"slug\":\"woocommerce-shipping-fedex\",\"id\":18620},{\"title\":\"LiveChat for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/11\\/LC_woo_regular-zmiaym.png\",\"excerpt\":\"Live Chat and messaging platform for sales and support -- increase average order value and overall sales through live conversations.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/livechat\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.livechat.com\\/livechat-for-ecommerce\\/?a=woocommerce&amp;utm_source=woocommerce.com&amp;utm_medium=integration&amp;utm_campaign=woocommerce.com\",\"price\":\"&#36;0.00\",\"hash\":\"5344cc1f-ed4a-4d00-beff-9d67f6d372f3\",\"slug\":\"livechat-woocommerce\",\"id\":1348888},{\"title\":\"Product CSV Import Suite\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Product-CSV-Import-Dark.png\",\"excerpt\":\"Import, merge, and export products and variations to and from WooCommerce using a CSV file.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-csv-import-suite\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"7ac9b00a1fe980fb61d28ab54d167d0d\",\"slug\":\"woocommerce-product-csv-import-suite\",\"id\":18680},{\"title\":\"Follow-Ups\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Follow-Ups-Dark.png\",\"excerpt\":\"Automatically contact customers after purchase - be it everyone, your most loyal or your biggest spenders - and keep your store top-of-mind.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/follow-up-emails\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"05ece68fe94558e65278fe54d9ec84d2\",\"slug\":\"woocommerce-follow-up-emails\",\"id\":18686},{\"title\":\"Authorize.Net\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/04\\/Thumbnail-Authorize.net-updated.png\",\"excerpt\":\"Authorize.Net gateway with support for pre-orders and subscriptions.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/authorize-net\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"8b61524fe53add7fdd1a8d1b00b9327d\",\"slug\":\"woocommerce-gateway-authorize-net-cim\",\"id\":178481},{\"title\":\"Australia Post Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/australia-post.gif\",\"excerpt\":\"Get shipping rates for your WooCommerce store from the Australia Post API, which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/australia-post-shipping-method\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"1dbd4dc6bd91a9cda1bd6b9e7a5e4f43\",\"slug\":\"woocommerce-shipping-australia-post\",\"id\":18622},{\"title\":\"Canada Post Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/canada-post.png\",\"excerpt\":\"Get shipping rates from the Canada Post Ratings API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/canada-post-shipping-method\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"ac029cdf3daba20b20c7b9be7dc00e0e\",\"slug\":\"woocommerce-shipping-canada-post\",\"id\":18623},{\"title\":\"WooCommerce Customer \\/ Order \\/ Coupon Export\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/02\\/Thumbnail-Customer-Order-Coupon-Export-updated.png\",\"excerpt\":\"Export customers, orders, and coupons from WooCommerce manually or on an automated schedule.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/ordercustomer-csv-export\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"914de15813a903c767b55445608bf290\",\"slug\":\"woocommerce-customer-order-csv-export\",\"id\":18652},{\"title\":\"Product Vendors\",\"image\":\"\",\"excerpt\":\"Turn your store into a multi-vendor marketplace\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-vendors\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"a97d99fccd651bbdd728f4d67d492c31\",\"slug\":\"woocommerce-product-vendors\",\"id\":219982},{\"title\":\"WooCommerce Accommodation Bookings\",\"image\":\"\",\"excerpt\":\"Book accommodation using WooCommerce and the WooCommerce Bookings extension.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-accommodation-bookings\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"99b2a7a4af90b6cefd2a733b3b1f78e7\",\"slug\":\"woocommerce-accommodation-bookings\",\"id\":1412069},{\"title\":\"Royal Mail\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/04\\/royalmail.png\",\"excerpt\":\"Offer Royal Mail shipping rates to your customers\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/royal-mail\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"03839cca1a16c4488fcb669aeb91a056\",\"slug\":\"woocommerce-shipping-royalmail\",\"id\":182719},{\"title\":\"WooCommerce Brands\",\"image\":\"\",\"excerpt\":\"Create, assign and list brands for products, and allow customers to view by brand.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/brands\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"8a88c7cbd2f1e73636c331c7a86f818c\",\"slug\":\"woocommerce-brands\",\"id\":18737},{\"title\":\"Xero\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2012\\/08\\/xero2.png\",\"excerpt\":\"Save time with automated sync between WooCommerce and your Xero account.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/xero\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"f0dd29d338d3c67cf6cee88eddf6869b\",\"slug\":\"woocommerce-xero\",\"id\":18733},{\"title\":\"Smart Coupons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/10\\/wc-product-smart-coupons.png\",\"excerpt\":\"Everything you need for discounts, coupons, credits, gift cards, product giveaways, offers, and promotions. Most popular and complete coupons plugin for WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/smart-coupons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/demo.storeapps.org\\/?demo=sc\",\"price\":\"&#36;99.00\",\"hash\":\"05c45f2aa466106a466de4402fff9dde\",\"slug\":\"woocommerce-smart-coupons\",\"id\":18729},{\"title\":\"AutomateWoo\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-AutomateWoo-Dark-1.png\",\"excerpt\":\"Powerful marketing automation for WooCommerce. AutomateWoo has the tools you need to grow your store and make more money.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/automatewoo\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"ba9299b8-1dba-4aa0-a313-28bc1755cb88\",\"slug\":\"automatewoo\",\"id\":4652610},{\"title\":\"Advanced Notifications\",\"image\":\"\",\"excerpt\":\"Easily setup \\\"new order\\\" and stock email notifications for multiple recipients of your choosing.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/advanced-notifications\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"112372c44b002fea2640bd6bfafbca27\",\"slug\":\"woocommerce-advanced-notifications\",\"id\":18740},{\"title\":\"WooCommerce Points and Rewards\",\"image\":\"\",\"excerpt\":\"Reward your customers for purchases and other actions with points which can be redeemed for discounts.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-points-and-rewards\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"1649b6cca5da8b923b01ca56b5cdd246\",\"slug\":\"woocommerce-points-and-rewards\",\"id\":210259},{\"title\":\"WooCommerce Zapier\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/woocommerce-zapier-logo.png\",\"excerpt\":\"Integrate with 3000+ cloud apps and services today.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-zapier\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"hash\":\"0782bdbe932c00f4978850268c6cfe40\",\"slug\":\"woocommerce-zapier\",\"id\":243589},{\"title\":\"WooCommerce Pre-Orders\",\"image\":\"\",\"excerpt\":\"Allow customers to order products before they are available.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-pre-orders\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"b2dc75e7d55e6f5bbfaccb59830f66b7\",\"slug\":\"woocommerce-pre-orders\",\"id\":178477},{\"title\":\"WooCommerce Subscription Downloads\",\"image\":\"\",\"excerpt\":\"Offer additional downloads to your subscribers, via downloadable products listed in your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-subscription-downloads\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"5be9e21c13953253e4406d2a700382ec\",\"slug\":\"woocommerce-subscription-downloads\",\"id\":420458},{\"title\":\"Dynamic Pricing\",\"image\":\"\",\"excerpt\":\"Bulk discounts, role-based pricing and much more\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/dynamic-pricing\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"9a41775bb33843f52c93c922b0053986\",\"slug\":\"woocommerce-dynamic-pricing\",\"id\":18643},{\"title\":\"Name Your Price\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2012\\/09\\/nyp-icon-dark-v83owf.png\",\"excerpt\":\"Allow customers to define the product price. Also useful for accepting user-set donations.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/name-your-price\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"31b4e11696cd99a3c0572975a84f1c08\",\"slug\":\"woocommerce-name-your-price\",\"id\":18738},{\"title\":\"WooCommerce Additional Variation Images\",\"image\":\"\",\"excerpt\":\"Add gallery images per variation on variable products within WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-additional-variation-images\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/themes.woocommerce.com\\/storefront\\/product\\/woo-single-1\\/\",\"price\":\"&#36;49.00\",\"hash\":\"c61dd6de57dcecb32bd7358866de4539\",\"slug\":\"woocommerce-additional-variation-images\",\"id\":477384},{\"title\":\"WooCommerce Print Invoices &amp; Packing lists\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/03\\/Thumbnail-Print-Invoices-Packing-lists-updated.png\",\"excerpt\":\"Generate invoices, packing slips, and pick lists for your WooCommerce orders.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/print-invoices-packing-lists\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"465de1126817cdfb42d97ebca7eea717\",\"slug\":\"woocommerce-pip\",\"id\":18666},{\"title\":\"WooCommerce Deposits\",\"image\":\"\",\"excerpt\":\"Enable customers to pay for products using a deposit or a payment plan.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-deposits\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;179.00\",\"hash\":\"de192a6cf12c4fd803248da5db700762\",\"slug\":\"woocommerce-deposits\",\"id\":977087},{\"title\":\"Amazon S3 Storage\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/amazon.png\",\"excerpt\":\"Serve digital products via Amazon S3\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/amazon-s3-storage\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"473bf6f221b865eff165c97881b473bb\",\"slug\":\"woocommerce-amazon-s3-storage\",\"id\":18663},{\"title\":\"Cart Add-ons\",\"image\":\"\",\"excerpt\":\"A powerful tool for driving incremental and impulse purchases by customers once they are in the shopping cart\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/cart-add-ons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"3a8ef25334396206f5da4cf208adeda3\",\"slug\":\"woocommerce-cart-add-ons\",\"id\":18717},{\"title\":\"Shipping Multiple Addresses\",\"image\":\"\",\"excerpt\":\"Allow your customers to ship individual items in a single order to multiple addresses.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipping-multiple-addresses\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"aa0eb6f777846d329952d5b891d6f8cc\",\"slug\":\"woocommerce-shipping-multiple-addresses\",\"id\":18741},{\"title\":\"Google Product Feed\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2011\\/11\\/logo-regular-lscryp.png\",\"excerpt\":\"Feed product data to Google Merchant Center for setting up Google product listings &amp; product ads.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-product-feed\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"d55b4f852872025741312839f142447e\",\"slug\":\"woocommerce-product-feeds\",\"id\":18619},{\"title\":\"WooCommerce AvaTax\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/01\\/Thumbnail-Avalara-updated.png\",\"excerpt\":\"Get 100% accurate sales tax calculations and on time tax return filing. No more tracking sales tax rates, rules, or jurisdictional boundaries.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-avatax\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"57077a4b28ba71cacf692bcf4a1a7f60\",\"slug\":\"woocommerce-avatax\",\"id\":1389326},{\"title\":\"TaxJar\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/10\\/taxjar-logotype.png\",\"excerpt\":\"Save hours every month by putting your sales tax on autopilot. Automated, multi-state sales tax calculation, reporting, and filing for your WooCommerce store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/taxjar\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"12072d8e-e933-4561-97b1-9db3c7eeed91\",\"slug\":\"taxjar-simplified-taxes-for-woocommerce\",\"id\":514914},{\"title\":\"Klarna Checkout\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/01\\/Partner_marketing_Klarna_Checkout_Black-1.png\",\"excerpt\":\"Klarna Checkout is a full checkout experience embedded on your site that includes all popular payment methods (Pay Now, Pay Later, Financing, Installments).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/klarna-checkout\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.krokedil.se\\/klarnacheckout\\/\",\"price\":\"&#36;0.00\",\"hash\":\"90f8ce584e785fcd8c2d739fd4f40d78\",\"slug\":\"klarna-checkout-for-woocommerce\",\"id\":2754152},{\"title\":\"Bulk Stock Management\",\"image\":\"\",\"excerpt\":\"Edit product and variation stock levels in bulk via this handy interface\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/bulk-stock-management\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"02f4328d52f324ebe06a78eaaae7934f\",\"slug\":\"woocommerce-bulk-stock-management\",\"id\":18670},{\"title\":\"WooCommerce Email Customizer\",\"image\":\"\",\"excerpt\":\"Connect with your customers with each email you send by visually modifying your email templates via the WordPress Customizer.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-email-customizer\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"bd909fa97874d431f203b5336c7e8873\",\"slug\":\"woocommerce-email-customizer\",\"id\":853277},{\"title\":\"Force Sells\",\"image\":\"\",\"excerpt\":\"Force products to be added to the cart\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/force-sells\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"3ebddfc491ca168a4ea4800b893302b0\",\"slug\":\"woocommerce-force-sells\",\"id\":18678},{\"title\":\"WooCommerce Quick View\",\"image\":\"\",\"excerpt\":\"Show a quick-view button to view product details and add to cart via lightbox popup\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-quick-view\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"619c6e57ce72c49c4b57e15b06eddb65\",\"slug\":\"woocommerce-quick-view\",\"id\":187509},{\"title\":\"WooCommerce Purchase Order Gateway\",\"image\":\"\",\"excerpt\":\"Receive purchase orders via your WooCommerce-powered online store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-purchase-order\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"573a92318244ece5facb449d63e74874\",\"slug\":\"woocommerce-gateway-purchase-order\",\"id\":478542},{\"title\":\"Returns and Warranty Requests\",\"image\":\"\",\"excerpt\":\"Manage the RMA process, add warranties to products &amp; let customers request &amp; manage returns \\/ exchanges from their account.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/warranty-requests\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"9b4c41102e6b61ea5f558e16f9b63e25\",\"slug\":\"woocommerce-warranty\",\"id\":228315},{\"title\":\"Product Enquiry Form\",\"image\":\"\",\"excerpt\":\"Allow visitors to contact you directly from the product details page via a reCAPTCHA protected form to enquire about a product.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-enquiry-form\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"5a0f5d72519a8ffcc86669f042296937\",\"slug\":\"woocommerce-product-enquiry-form\",\"id\":18601},{\"title\":\"WooCommerce Box Office\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-BO-Dark.png\",\"excerpt\":\"Sell tickets for your next event, concert, function, fundraiser or conference directly on your own site\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-box-office\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"e704c9160de318216a8fa657404b9131\",\"slug\":\"woocommerce-box-office\",\"id\":1628717},{\"title\":\"Gravity Forms Product Add-ons\",\"image\":\"\",\"excerpt\":\"Powerful product add-ons, Gravity style\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/gravity-forms-add-ons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.elementstark.com\\/woocommerce-extension-demos\\/product-category\\/gravity-forms\\/\",\"price\":\"&#36;99.00\",\"hash\":\"a6ac0ab1a1536e3a357ccf24c0650ed0\",\"slug\":\"woocommerce-gravityforms-product-addons\",\"id\":18633},{\"title\":\"Composite Products\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/07\\/Logo-CP.png?v=1\",\"excerpt\":\"Create product kit builders and custom product configurators using existing products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/composite-products\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"0343e0115bbcb97ccd98442b8326a0af\",\"slug\":\"woocommerce-composite-products\",\"id\":216836},{\"title\":\"WooCommerce Order Barcodes\",\"image\":\"\",\"excerpt\":\"Generates a unique barcode for each order on your site - perfect for e-tickets, packing slips, reservations and a variety of other uses.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-order-barcodes\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"889835bb29ee3400923653e1e44a3779\",\"slug\":\"woocommerce-order-barcodes\",\"id\":391708},{\"title\":\"WooCommerce 360\\u00ba Image\",\"image\":\"\",\"excerpt\":\"An easy way to add a dynamic, controllable 360\\u00ba image rotation to your WooCommerce site, by adding a group of images to a product\\u2019s gallery.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-360-image\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"24eb2cfa3738a66bf3b2587876668cd2\",\"slug\":\"woocommerce-360-image\",\"id\":512186},{\"title\":\"WooCommerce Photography\",\"image\":\"\",\"excerpt\":\"Sell photos in the blink of an eye using this simple as dragging &amp; dropping interface.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-photography\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"ee76e8b9daf1d97ca4d3874cc9e35687\",\"slug\":\"woocommerce-photography\",\"id\":583602},{\"title\":\"WooCommerce Bookings Availability\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Bookings-Aval-Dark.png\",\"excerpt\":\"Sell more bookings by presenting a calendar or schedule of available slots in a page or post.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/bookings-availability\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"30770d2a-e392-4e82-baaa-76cfc7d02ae3\",\"slug\":\"woocommerce-bookings-availability\",\"id\":4228225},{\"title\":\"Software Add-on\",\"image\":\"\",\"excerpt\":\"Sell License Keys for Software\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/software-add-on\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"79f6dbfe1f1d3a56a86f0509b6d6b04b\",\"slug\":\"woocommerce-software-add-on\",\"id\":18683},{\"title\":\"WooCommerce Products Compare\",\"image\":\"\",\"excerpt\":\"WooCommerce Products Compare will allow your potential customers to easily compare products within your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-products-compare\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"c3ba0a4a3199a0cc7a6112eb24414548\",\"slug\":\"woocommerce-products-compare\",\"id\":853117},{\"title\":\"WooCommerce Store Catalog PDF Download\",\"image\":\"\",\"excerpt\":\"Offer your customers a PDF download of your product catalog, generated by WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-store-catalog-pdf-download\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"79ca7aadafe706364e2d738b7c1090c4\",\"slug\":\"woocommerce-store-catalog-pdf-download\",\"id\":675790},{\"title\":\"WooCommerce Paid Courses\",\"image\":\"\",\"excerpt\":\"Sell your online courses using the most popular eCommerce platform on the web \\u2013 WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-paid-courses\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"bad2a02a063555b7e2bee59924690763\",\"slug\":\"woothemes-sensei\",\"id\":152116},{\"title\":\"eWAY\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/10\\/eway-logo-3000-2000.jpg\",\"excerpt\":\"Take credit card payments securely via eWay (SG, MY, HK, AU, and NZ) keeping customers on your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/eway\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"2c497769d98d025e0d340cd0b5ea5da1\",\"slug\":\"woocommerce-gateway-eway\",\"id\":18604},{\"title\":\"PayPal\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2020\\/10\\/PPCP-Tile-PayPal-Logo-and-Cart-Art-2x-2-uozwz8.jpg\",\"excerpt\":\"PayPal\\u2019s latest, most complete payment processing solution. Accept PayPal exclusives, credit\\/debit cards and local payment methods. Turn on only PayPal options or process a full suite of payment methods. Enable global transactions with extensive currency and country coverage. Built and supported by WooCommerce and PayPal.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-paypal-payments\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"934115ab-e3f3-4435-9580-345b1ce21899\",\"slug\":\"woocommerce-paypal-payments\",\"id\":6410731},{\"title\":\"Catalog Visibility Options\",\"image\":\"\",\"excerpt\":\"Transform WooCommerce into an online catalog by removing eCommerce functionality\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/catalog-visibility-options\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"12e791110365fdbb5865c8658907967e\",\"slug\":\"woocommerce-catalog-visibility-options\",\"id\":18648},{\"title\":\"QuickBooks Sync for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/04\\/woocommerce-com-logo-1-hyhzbh.png\",\"excerpt\":\"Automatic two-way sync for orders, customers, products, inventory and more between WooCommerce and QuickBooks (Online, Desktop, or POS).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/quickbooks-sync-for-woocommerce\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"c5e32e20-7c1f-4585-8b15-d930c2d842ac\",\"slug\":\"myworks-woo-sync-for-quickbooks-online\",\"id\":4065824},{\"title\":\"WooCommerce Blocks\",\"image\":\"\",\"excerpt\":\"WooCommerce Blocks offers a range of Gutenberg blocks you can use to build and customise your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gutenberg-products-block\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"c2e9f13a-f90c-4ffe-a8a5-b432399ec263\",\"slug\":\"woo-gutenberg-products-block\",\"id\":3076677},{\"title\":\"Conditional Shipping and Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/07\\/Logo-CSP.png?v=1\",\"excerpt\":\"Use conditional logic to restrict the shipping and payment options available on your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/conditional-shipping-and-payments\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"1f56ff002fa830b77017b0107505211a\",\"slug\":\"woocommerce-conditional-shipping-and-payments\",\"id\":680253},{\"title\":\"Sequential Order Numbers Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/05\\/Thumbnail-Sequential-Order-Numbers-Pro-updated.png\",\"excerpt\":\"Tame your order numbers! Advanced &amp; sequential order numbers with optional prefixes \\/ suffixes\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sequential-order-numbers-pro\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"0b18a2816e016ba9988b93b1cd8fe766\",\"slug\":\"woocommerce-sequential-order-numbers-pro\",\"id\":18688},{\"title\":\"WooCommerce Order Status Manager\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/02\\/Thumbnail-Order-Status-Manager-updated.png\",\"excerpt\":\"Create, edit, and delete completely custom order statuses and integrate them seamlessly into your order management flow.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-order-status-manager\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"51fd9ab45394b4cad5a0ebf58d012342\",\"slug\":\"woocommerce-order-status-manager\",\"id\":588398},{\"title\":\"WooCommerce Checkout Add-Ons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/07\\/Thumbnail-Checkout-Add-Ons-updated.png\",\"excerpt\":\"Highlight relevant products, offers like free shipping and other up-sells during checkout.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-checkout-add-ons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"8fdca00b4000b7a8cc26371d0e470a8f\",\"slug\":\"woocommerce-checkout-add-ons\",\"id\":466854},{\"title\":\"WooCommerce Google Analytics Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/01\\/Thumbnail-GAPro-updated.png\",\"excerpt\":\"Add advanced event tracking and enhanced eCommerce tracking to your WooCommerce site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-google-analytics-pro\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"d8aed8b7306b509eec1589e59abe319f\",\"slug\":\"woocommerce-google-analytics-pro\",\"id\":1312497},{\"title\":\"WooCommerce One Page Checkout\",\"image\":\"\",\"excerpt\":\"Create special pages where customers can choose products, checkout &amp; pay all on the one page.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-one-page-checkout\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"c9ba8f8352cd71b5508af5161268619a\",\"slug\":\"woocommerce-one-page-checkout\",\"id\":527886},{\"title\":\"Coupon Shortcodes\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/09\\/woocommerce-coupon-shortcodes-product-image-1870x960-1-vc5gux.png\",\"excerpt\":\"Show coupon discount info using shortcodes. Allows to render coupon information and content conditionally, based on the validity of coupons.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/coupon-shortcodes\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"ac5d9d51-70b2-4d8f-8b89-24200eea1394\",\"slug\":\"woocommerce-coupon-shortcodes\",\"id\":244762},{\"title\":\"WooCommerce Product Search\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2014\\/10\\/woocommerce-product-search-product-image-1870x960-1-jvsljj.png\",\"excerpt\":\"The perfect search engine helps customers to find and buy products quickly \\u2013 essential for every WooCommerce store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-product-search\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.itthinx.com\\/wps\\/\",\"price\":\"&#36;49.00\",\"hash\":\"c84cc8ca16ddac3408e6b6c5871133a8\",\"slug\":\"woocommerce-product-search\",\"id\":512174},{\"title\":\"First Data\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/02\\/Thumbnail-FirstData-updated.png\",\"excerpt\":\"FirstData gateway for WooCommerce\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/firstdata\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"eb3e32663ec0810592eaf0d097796230\",\"slug\":\"woocommerce-gateway-firstdata\",\"id\":18645},{\"title\":\"Jilt\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2017\\/12\\/Thumbnail-Jilt-updated.png\",\"excerpt\":\"All-in-one email marketing platform built for WooCommerce stores. Send newsletters, abandoned cart reminders, win-backs, welcome automations, and more.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/jilt\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"b53aafb64dca33835e41ee06de7e9816\",\"slug\":\"jilt-for-woocommerce\",\"id\":2754876},{\"title\":\"WooSlider\",\"image\":\"\",\"excerpt\":\"WooSlider is the ultimate responsive slideshow WordPress slider plugin\\r\\n\\r\\n\\u00a0\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/wooslider\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/www.wooslider.com\\/\",\"price\":\"&#36;49.00\",\"hash\":\"209d98f3ccde6cc3de7e8732a2b20b6a\",\"slug\":\"wooslider\",\"id\":46506},{\"title\":\"WooCommerce Social Login\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/08\\/Thumbnail-Social-Login-updated.png\",\"excerpt\":\"Enable Social Login for seamless checkout and account creation.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-social-login\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/demos.skyverge.com\\/woocommerce-social-login\\/\",\"price\":\"&#36;79.00\",\"hash\":\"b231cd6367a79cc8a53b7d992d77525d\",\"slug\":\"woocommerce-social-login\",\"id\":473617},{\"title\":\"WooCommerce Order Status Control\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/06\\/Thumbnail-Order-Status-Control-updated.png\",\"excerpt\":\"Use this extension to automatically change the order status to \\\"completed\\\" after successful payment.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-order-status-control\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"32400e509c7c36dcc1cd368e8267d981\",\"slug\":\"woocommerce-order-status-control\",\"id\":439037},{\"title\":\"Variation Swatches and Photos\",\"image\":\"\",\"excerpt\":\"Show color and image swatches instead of dropdowns for variable products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/variation-swatches-and-photos\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.elementstark.com\\/woocommerce-extension-demos\\/product-category\\/swatches-and-photos\\/\",\"price\":\"&#36;99.00\",\"hash\":\"37bea8d549df279c8278878d081b062f\",\"slug\":\"woocommerce-variation-swatches-and-photos\",\"id\":18697},{\"title\":\"Opayo Payment Suite\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/10\\/Opayo_logo_RGB.png\",\"excerpt\":\"Take payments on your WooCommerce store via Opayo (formally SagePay).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sage-pay-form\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"6bc0cca47d0274d8ef9b164f6fbec1cc\",\"slug\":\"woocommerce-gateway-sagepay-form\",\"id\":18599},{\"title\":\"EU VAT Number\",\"image\":\"\",\"excerpt\":\"Collect VAT numbers at checkout and remove the VAT charge for eligible EU businesses.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/eu-vat-number\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"d2720c4b4bb8d6908e530355b7a2d734\",\"slug\":\"woocommerce-eu-vat-number\",\"id\":18592},{\"title\":\"HubSpot for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2020\\/04\\/hubspotlogo-web-color-pxebeq.png\",\"excerpt\":\"Integrate HubSpot with WooCommerce to connect your store with HubSpot\'s CRM, abandoned cart tracking, marketing automation &amp; more.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/hubspot-for-woocommerce\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"e50acec8-3a6c-454c-8562-2da4898fa6c1\",\"slug\":\"hubspot-for-woocommerce\",\"id\":5785079},{\"title\":\"Customer\\/Order\\/Coupon CSV Import Suite\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/07\\/Thumbnail-Customer-Order-Coupon-CSV-Import-Suite-updated.png\",\"excerpt\":\"Import both customers and orders into WooCommerce from a CSV file.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/customerorder-csv-import-suite\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"eb00ca8317a0f64dbe185c995e5ea3df\",\"slug\":\"woocommerce-customer-order-csv-import\",\"id\":18709},{\"title\":\"WooCommerce Tab Manager\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/11\\/Thumbnail-Tab-Manager-updated.png\",\"excerpt\":\"Gives you complete control over your product page tabs, create local and global tabs using a visual drag-and-drop interface, and more.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-tab-manager\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"89a9ac74850855cfe772b4b4ee1e31e0\",\"slug\":\"woocommerce-tab-manager\",\"id\":132195}]}\";s:3:\"raw\";s:48959:\"HTTP/1.1 200 OK\r\nServer: nginx\r\nDate: Wed, 07 Jul 2021 21:15:54 GMT\r\nContent-Type: application/json; charset=UTF-8\r\nContent-Length: 11628\r\nConnection: close\r\nX-Robots-Tag: noindex\r\nLink: <https://woocommerce.com/wp-json/>; rel=\"https://api.w.org/\"\r\nX-Content-Type-Options: nosniff\r\nAccess-Control-Expose-Headers: X-WP-Total, X-WP-TotalPages, Link\r\nAccess-Control-Allow-Headers: Authorization, X-WP-Nonce, Content-Disposition, Content-MD5, Content-Type\r\nX-WCCOM-Cache: HIT\r\nCache-Control: max-age=60\r\nAllow: GET\r\nContent-Encoding: gzip\r\nX-rq: bur6 0 4 9980\r\nAge: 54\r\nX-Cache: hit\r\nVary: Accept-Encoding, Origin\r\nAccept-Ranges: bytes\r\n\r\n{\"products\":[{\"title\":\"WooCommerce Google Analytics\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/GA-Dark.png\",\"excerpt\":\"Understand your customers and increase revenue with world\\u2019s leading analytics platform - integrated with WooCommerce for free.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-google-analytics\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"2d21f7de14dfb8e9885a4622be701ddf\",\"slug\":\"woocommerce-google-analytics-integration\",\"id\":1442927},{\"title\":\"WooCommerce Tax\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Tax-Dark.png\",\"excerpt\":\"Automatically calculate how much sales tax should be collected for WooCommerce orders - by city, country, or state - at checkout.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/tax\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"f31b3b9273cce188cc2b27f7849d02dd\",\"slug\":\"woocommerce-services\",\"id\":3220291},{\"title\":\"Stripe\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Stripe-Dark-1.png\",\"excerpt\":\"Accept all major debit and credit cards as well as local payment methods with Stripe.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/stripe\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"50bb7a985c691bb943a9da4d2c8b5efd\",\"slug\":\"woocommerce-gateway-stripe\",\"id\":18627},{\"title\":\"Jetpack\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Jetpack-Dark.png\",\"excerpt\":\"Power up and protect your store with Jetpack\\r\\n\\r\\nFor free security, insights and monitoring, connect to Jetpack. It\'s everything you need for a strong, secure start.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/jetpack\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"d5bfef9700b62b2b132c74c74c3193eb\",\"slug\":\"jetpack\",\"id\":2725249},{\"title\":\"Facebook for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Facebook-Dark.png\",\"excerpt\":\"Get the Official Facebook for WooCommerce plugin for three powerful ways to help grow your business.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/facebook\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"0ea4fe4c2d7ca6338f8a322fb3e4e187\",\"slug\":\"facebook-for-woocommerce\",\"id\":2127297},{\"title\":\"Amazon Pay\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Amazon-Pay-Dark.png\",\"excerpt\":\"Amazon Pay is embedded in your WooCommerce store. Transactions take place via\\u00a0Amazon widgets, so the buyer never leaves your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/pay-with-amazon\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"9865e043bbbe4f8c9735af31cb509b53\",\"slug\":\"woocommerce-gateway-amazon-payments-advanced\",\"id\":238816},{\"title\":\"Square for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Square-Dark.png\",\"excerpt\":\"Accepting payments is easy with Square. Clear rates, fast deposits (1-2 business days). Sell online and in person, and sync all payments, items and inventory.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/square\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"e907be8b86d7df0c8f8e0d0020b52638\",\"slug\":\"woocommerce-square\",\"id\":1770503},{\"title\":\"WooCommerce Shipping\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Ship-Dark-1.png\",\"excerpt\":\"Print USPS and DHL labels right from your WooCommerce dashboard and instantly save up to 90%. WooCommerce Shipping is free to use and saves you time and money.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipping\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"f31b3b9273cce188cc2b27f7849d02dd\",\"slug\":\"woocommerce-services\",\"id\":2165910},{\"title\":\"WooCommerce Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Pay-Dark.png\",\"excerpt\":\"Securely accept payments, track cash flow, and manage recurring revenue from your dashboard \\u2014 all without setup costs or monthly fees.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-payments\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"8c6319ca-8f41-4e69-be63-6b15ee37773b\",\"slug\":\"woocommerce-payments\",\"id\":5278104},{\"title\":\"Mailchimp for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/09\\/logo-mailchimp-dark-v2.png\",\"excerpt\":\"Increase traffic, drive repeat purchases, and personalize your marketing when you connect to Mailchimp.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/mailchimp-for-woocommerce\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"b4481616ebece8b1ff68fc59b90c1a91\",\"slug\":\"mailchimp-for-woocommerce\",\"id\":2545166},{\"title\":\"WooCommerce Subscriptions\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Subscriptions-Dark.png\",\"excerpt\":\"Let customers subscribe to your products or services and pay on a weekly, monthly or annual basis.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-subscriptions\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;199.00\",\"hash\":\"6115e6d7e297b623a169fdcf5728b224\",\"slug\":\"woocommerce-subscriptions\",\"id\":27147},{\"title\":\"ShipStation Integration\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Shipstation-Dark.png\",\"excerpt\":\"Fulfill all your Woo orders (and wherever else you sell) quickly and easily using ShipStation. Try it free for 30 days today!\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipstation-integration\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"9de8640767ba64237808ed7f245a49bb\",\"slug\":\"woocommerce-shipstation-integration\",\"id\":18734},{\"title\":\"Product Add-Ons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Product-Add-Ons-Dark.png\",\"excerpt\":\"Offer add-ons like gift wrapping, special messages or other special options for your products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-add-ons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"147d0077e591e16db9d0d67daeb8c484\",\"slug\":\"woocommerce-product-addons\",\"id\":18618},{\"title\":\"PayFast Payment Gateway\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Payfast-Dark-1.png\",\"excerpt\":\"Take payments on your WooCommerce store via PayFast (redirect method).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/payfast-payment-gateway\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"557bf07293ad916f20c207c6c9cd15ff\",\"slug\":\"woocommerce-payfast-gateway\",\"id\":18596},{\"title\":\"USPS Shipping Method\",\"image\":\"\",\"excerpt\":\"Get shipping rates from the USPS API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/usps-shipping-method\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"83d1524e8f5f1913e58889f83d442c32\",\"slug\":\"woocommerce-shipping-usps\",\"id\":18657},{\"title\":\"Google Ads &amp; Marketing by Kliken\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/02\\/GA-for-Woo-Logo-374x192px-qu3duk.png\",\"excerpt\":\"Get in front of shoppers and drive traffic to your store so you can grow your business with Smart Shopping Campaigns and free listings.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-ads-and-marketing\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"bf66e173-a220-4da7-9512-b5728c20fc16\",\"slug\":\"kliken-marketing-for-google\",\"id\":3866145},{\"title\":\"UPS Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/UPS-Shipping-Method-Dark.png\",\"excerpt\":\"Get shipping rates from the UPS API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/ups-shipping-method\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"8dae58502913bac0fbcdcaba515ea998\",\"slug\":\"woocommerce-shipping-ups\",\"id\":18665},{\"title\":\"Shipment Tracking\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Ship-Tracking-Dark-1.png\",\"excerpt\":\"Add shipment tracking information to your orders.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipment-tracking\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"1968e199038a8a001c9f9966fd06bf88\",\"slug\":\"woocommerce-shipment-tracking\",\"id\":18693},{\"title\":\"Table Rate Shipping\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Product-Table-Rate-Shipping-Dark.png\",\"excerpt\":\"Advanced, flexible shipping. Define multiple shipping rates based on location, price, weight, shipping class or item count.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/table-rate-shipping\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"3034ed8aff427b0f635fe4c86bbf008a\",\"slug\":\"woocommerce-table-rate-shipping\",\"id\":18718},{\"title\":\"Checkout Field Editor\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Checkout-Field-Editor-Dark.png\",\"excerpt\":\"Optimize your checkout process by adding, removing or editing fields to suit your needs.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-checkout-field-editor\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"2b8029f0d7cdd1118f4d843eb3ab43ff\",\"slug\":\"woocommerce-checkout-field-editor\",\"id\":184594},{\"title\":\"Braintree for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/02\\/braintree-black-copy.png\",\"excerpt\":\"Accept PayPal, credit cards and debit cards with a single payment gateway solution \\u2014 PayPal Powered by Braintree.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-paypal-powered-by-braintree\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"27f010c8e34ca65b205ddec88ad14536\",\"slug\":\"woocommerce-gateway-paypal-powered-by-braintree\",\"id\":1489837},{\"title\":\"WooCommerce Bookings\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Bookings-Dark.png\",\"excerpt\":\"Allow customers to book appointments, make reservations or rent equipment without leaving your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-bookings\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/themes.woocommerce.com\\/hotel\\/\",\"price\":\"&#36;249.00\",\"hash\":\"911c438934af094c2b38d5560b9f50f3\",\"slug\":\"WooCommerce Bookings\",\"id\":390890},{\"title\":\"WooCommerce Memberships\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/Thumbnail-Memberships-updated.png\",\"excerpt\":\"Give members access to restricted content or products, for a fee or for free.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-memberships\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;199.00\",\"hash\":\"9288e7609ad0b487b81ef6232efa5cfc\",\"slug\":\"woocommerce-memberships\",\"id\":958589},{\"title\":\"Product Bundles\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/07\\/Logo-PB.png?v=1\",\"excerpt\":\"Offer personalized product bundles, bulk discount packages, and assembled\\u00a0products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-bundles\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"aa2518b5-ab19-4b75-bde9-60ca51e20f28\",\"slug\":\"woocommerce-product-bundles\",\"id\":18716},{\"title\":\"Multichannel for WooCommerce: Google, Amazon, eBay &amp; Walmart Integration\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/10\\/Woo-Extension-Store-Logo-v2.png\",\"excerpt\":\"Get the official Google, Amazon, eBay and Walmart extension and create, sync and manage multichannel listings directly from WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/amazon-ebay-integration\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"e4000666-9275-4c71-8619-be61fb41c9f9\",\"slug\":\"woocommerce-amazon-ebay-integration\",\"id\":3545890},{\"title\":\"Min\\/Max Quantities\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Min-Max-Qua-Dark.png\",\"excerpt\":\"Specify minimum and maximum allowed product quantities for orders to be completed.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/minmax-quantities\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"2b5188d90baecfb781a5aa2d6abb900a\",\"slug\":\"woocommerce-min-max-quantities\",\"id\":18616},{\"title\":\"FedEx Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/01\\/FedEx_Logo_Wallpaper.jpeg\",\"excerpt\":\"Get shipping rates from the FedEx API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/fedex-shipping-module\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"1a48b598b47a81559baadef15e320f64\",\"slug\":\"woocommerce-shipping-fedex\",\"id\":18620},{\"title\":\"LiveChat for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/11\\/LC_woo_regular-zmiaym.png\",\"excerpt\":\"Live Chat and messaging platform for sales and support -- increase average order value and overall sales through live conversations.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/livechat\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.livechat.com\\/livechat-for-ecommerce\\/?a=woocommerce&amp;utm_source=woocommerce.com&amp;utm_medium=integration&amp;utm_campaign=woocommerce.com\",\"price\":\"&#36;0.00\",\"hash\":\"5344cc1f-ed4a-4d00-beff-9d67f6d372f3\",\"slug\":\"livechat-woocommerce\",\"id\":1348888},{\"title\":\"Product CSV Import Suite\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Product-CSV-Import-Dark.png\",\"excerpt\":\"Import, merge, and export products and variations to and from WooCommerce using a CSV file.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-csv-import-suite\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"7ac9b00a1fe980fb61d28ab54d167d0d\",\"slug\":\"woocommerce-product-csv-import-suite\",\"id\":18680},{\"title\":\"Follow-Ups\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Follow-Ups-Dark.png\",\"excerpt\":\"Automatically contact customers after purchase - be it everyone, your most loyal or your biggest spenders - and keep your store top-of-mind.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/follow-up-emails\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"05ece68fe94558e65278fe54d9ec84d2\",\"slug\":\"woocommerce-follow-up-emails\",\"id\":18686},{\"title\":\"Authorize.Net\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/04\\/Thumbnail-Authorize.net-updated.png\",\"excerpt\":\"Authorize.Net gateway with support for pre-orders and subscriptions.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/authorize-net\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"8b61524fe53add7fdd1a8d1b00b9327d\",\"slug\":\"woocommerce-gateway-authorize-net-cim\",\"id\":178481},{\"title\":\"Australia Post Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/australia-post.gif\",\"excerpt\":\"Get shipping rates for your WooCommerce store from the Australia Post API, which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/australia-post-shipping-method\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"1dbd4dc6bd91a9cda1bd6b9e7a5e4f43\",\"slug\":\"woocommerce-shipping-australia-post\",\"id\":18622},{\"title\":\"Canada Post Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/canada-post.png\",\"excerpt\":\"Get shipping rates from the Canada Post Ratings API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/canada-post-shipping-method\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"ac029cdf3daba20b20c7b9be7dc00e0e\",\"slug\":\"woocommerce-shipping-canada-post\",\"id\":18623},{\"title\":\"WooCommerce Customer \\/ Order \\/ Coupon Export\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/02\\/Thumbnail-Customer-Order-Coupon-Export-updated.png\",\"excerpt\":\"Export customers, orders, and coupons from WooCommerce manually or on an automated schedule.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/ordercustomer-csv-export\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"914de15813a903c767b55445608bf290\",\"slug\":\"woocommerce-customer-order-csv-export\",\"id\":18652},{\"title\":\"Product Vendors\",\"image\":\"\",\"excerpt\":\"Turn your store into a multi-vendor marketplace\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-vendors\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"a97d99fccd651bbdd728f4d67d492c31\",\"slug\":\"woocommerce-product-vendors\",\"id\":219982},{\"title\":\"WooCommerce Accommodation Bookings\",\"image\":\"\",\"excerpt\":\"Book accommodation using WooCommerce and the WooCommerce Bookings extension.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-accommodation-bookings\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"99b2a7a4af90b6cefd2a733b3b1f78e7\",\"slug\":\"woocommerce-accommodation-bookings\",\"id\":1412069},{\"title\":\"Royal Mail\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/04\\/royalmail.png\",\"excerpt\":\"Offer Royal Mail shipping rates to your customers\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/royal-mail\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"03839cca1a16c4488fcb669aeb91a056\",\"slug\":\"woocommerce-shipping-royalmail\",\"id\":182719},{\"title\":\"WooCommerce Brands\",\"image\":\"\",\"excerpt\":\"Create, assign and list brands for products, and allow customers to view by brand.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/brands\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"8a88c7cbd2f1e73636c331c7a86f818c\",\"slug\":\"woocommerce-brands\",\"id\":18737},{\"title\":\"Xero\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2012\\/08\\/xero2.png\",\"excerpt\":\"Save time with automated sync between WooCommerce and your Xero account.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/xero\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"f0dd29d338d3c67cf6cee88eddf6869b\",\"slug\":\"woocommerce-xero\",\"id\":18733},{\"title\":\"Smart Coupons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/10\\/wc-product-smart-coupons.png\",\"excerpt\":\"Everything you need for discounts, coupons, credits, gift cards, product giveaways, offers, and promotions. Most popular and complete coupons plugin for WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/smart-coupons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/demo.storeapps.org\\/?demo=sc\",\"price\":\"&#36;99.00\",\"hash\":\"05c45f2aa466106a466de4402fff9dde\",\"slug\":\"woocommerce-smart-coupons\",\"id\":18729},{\"title\":\"AutomateWoo\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-AutomateWoo-Dark-1.png\",\"excerpt\":\"Powerful marketing automation for WooCommerce. AutomateWoo has the tools you need to grow your store and make more money.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/automatewoo\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"ba9299b8-1dba-4aa0-a313-28bc1755cb88\",\"slug\":\"automatewoo\",\"id\":4652610},{\"title\":\"Advanced Notifications\",\"image\":\"\",\"excerpt\":\"Easily setup \\\"new order\\\" and stock email notifications for multiple recipients of your choosing.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/advanced-notifications\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"112372c44b002fea2640bd6bfafbca27\",\"slug\":\"woocommerce-advanced-notifications\",\"id\":18740},{\"title\":\"WooCommerce Points and Rewards\",\"image\":\"\",\"excerpt\":\"Reward your customers for purchases and other actions with points which can be redeemed for discounts.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-points-and-rewards\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"1649b6cca5da8b923b01ca56b5cdd246\",\"slug\":\"woocommerce-points-and-rewards\",\"id\":210259},{\"title\":\"WooCommerce Zapier\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/woocommerce-zapier-logo.png\",\"excerpt\":\"Integrate with 3000+ cloud apps and services today.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-zapier\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"hash\":\"0782bdbe932c00f4978850268c6cfe40\",\"slug\":\"woocommerce-zapier\",\"id\":243589},{\"title\":\"WooCommerce Pre-Orders\",\"image\":\"\",\"excerpt\":\"Allow customers to order products before they are available.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-pre-orders\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"b2dc75e7d55e6f5bbfaccb59830f66b7\",\"slug\":\"woocommerce-pre-orders\",\"id\":178477},{\"title\":\"WooCommerce Subscription Downloads\",\"image\":\"\",\"excerpt\":\"Offer additional downloads to your subscribers, via downloadable products listed in your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-subscription-downloads\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"5be9e21c13953253e4406d2a700382ec\",\"slug\":\"woocommerce-subscription-downloads\",\"id\":420458},{\"title\":\"Dynamic Pricing\",\"image\":\"\",\"excerpt\":\"Bulk discounts, role-based pricing and much more\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/dynamic-pricing\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"9a41775bb33843f52c93c922b0053986\",\"slug\":\"woocommerce-dynamic-pricing\",\"id\":18643},{\"title\":\"Name Your Price\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2012\\/09\\/nyp-icon-dark-v83owf.png\",\"excerpt\":\"Allow customers to define the product price. Also useful for accepting user-set donations.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/name-your-price\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"31b4e11696cd99a3c0572975a84f1c08\",\"slug\":\"woocommerce-name-your-price\",\"id\":18738},{\"title\":\"WooCommerce Additional Variation Images\",\"image\":\"\",\"excerpt\":\"Add gallery images per variation on variable products within WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-additional-variation-images\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/themes.woocommerce.com\\/storefront\\/product\\/woo-single-1\\/\",\"price\":\"&#36;49.00\",\"hash\":\"c61dd6de57dcecb32bd7358866de4539\",\"slug\":\"woocommerce-additional-variation-images\",\"id\":477384},{\"title\":\"WooCommerce Print Invoices &amp; Packing lists\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/03\\/Thumbnail-Print-Invoices-Packing-lists-updated.png\",\"excerpt\":\"Generate invoices, packing slips, and pick lists for your WooCommerce orders.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/print-invoices-packing-lists\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"465de1126817cdfb42d97ebca7eea717\",\"slug\":\"woocommerce-pip\",\"id\":18666},{\"title\":\"WooCommerce Deposits\",\"image\":\"\",\"excerpt\":\"Enable customers to pay for products using a deposit or a payment plan.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-deposits\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;179.00\",\"hash\":\"de192a6cf12c4fd803248da5db700762\",\"slug\":\"woocommerce-deposits\",\"id\":977087},{\"title\":\"Amazon S3 Storage\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/amazon.png\",\"excerpt\":\"Serve digital products via Amazon S3\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/amazon-s3-storage\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"473bf6f221b865eff165c97881b473bb\",\"slug\":\"woocommerce-amazon-s3-storage\",\"id\":18663},{\"title\":\"Cart Add-ons\",\"image\":\"\",\"excerpt\":\"A powerful tool for driving incremental and impulse purchases by customers once they are in the shopping cart\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/cart-add-ons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"3a8ef25334396206f5da4cf208adeda3\",\"slug\":\"woocommerce-cart-add-ons\",\"id\":18717},{\"title\":\"Shipping Multiple Addresses\",\"image\":\"\",\"excerpt\":\"Allow your customers to ship individual items in a single order to multiple addresses.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipping-multiple-addresses\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"aa0eb6f777846d329952d5b891d6f8cc\",\"slug\":\"woocommerce-shipping-multiple-addresses\",\"id\":18741},{\"title\":\"Google Product Feed\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2011\\/11\\/logo-regular-lscryp.png\",\"excerpt\":\"Feed product data to Google Merchant Center for setting up Google product listings &amp; product ads.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-product-feed\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"d55b4f852872025741312839f142447e\",\"slug\":\"woocommerce-product-feeds\",\"id\":18619},{\"title\":\"WooCommerce AvaTax\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/01\\/Thumbnail-Avalara-updated.png\",\"excerpt\":\"Get 100% accurate sales tax calculations and on time tax return filing. No more tracking sales tax rates, rules, or jurisdictional boundaries.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-avatax\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"57077a4b28ba71cacf692bcf4a1a7f60\",\"slug\":\"woocommerce-avatax\",\"id\":1389326},{\"title\":\"TaxJar\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/10\\/taxjar-logotype.png\",\"excerpt\":\"Save hours every month by putting your sales tax on autopilot. Automated, multi-state sales tax calculation, reporting, and filing for your WooCommerce store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/taxjar\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"12072d8e-e933-4561-97b1-9db3c7eeed91\",\"slug\":\"taxjar-simplified-taxes-for-woocommerce\",\"id\":514914},{\"title\":\"Klarna Checkout\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/01\\/Partner_marketing_Klarna_Checkout_Black-1.png\",\"excerpt\":\"Klarna Checkout is a full checkout experience embedded on your site that includes all popular payment methods (Pay Now, Pay Later, Financing, Installments).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/klarna-checkout\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.krokedil.se\\/klarnacheckout\\/\",\"price\":\"&#36;0.00\",\"hash\":\"90f8ce584e785fcd8c2d739fd4f40d78\",\"slug\":\"klarna-checkout-for-woocommerce\",\"id\":2754152},{\"title\":\"Bulk Stock Management\",\"image\":\"\",\"excerpt\":\"Edit product and variation stock levels in bulk via this handy interface\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/bulk-stock-management\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"02f4328d52f324ebe06a78eaaae7934f\",\"slug\":\"woocommerce-bulk-stock-management\",\"id\":18670},{\"title\":\"WooCommerce Email Customizer\",\"image\":\"\",\"excerpt\":\"Connect with your customers with each email you send by visually modifying your email templates via the WordPress Customizer.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-email-customizer\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"bd909fa97874d431f203b5336c7e8873\",\"slug\":\"woocommerce-email-customizer\",\"id\":853277},{\"title\":\"Force Sells\",\"image\":\"\",\"excerpt\":\"Force products to be added to the cart\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/force-sells\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"3ebddfc491ca168a4ea4800b893302b0\",\"slug\":\"woocommerce-force-sells\",\"id\":18678},{\"title\":\"WooCommerce Quick View\",\"image\":\"\",\"excerpt\":\"Show a quick-view button to view product details and add to cart via lightbox popup\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-quick-view\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"619c6e57ce72c49c4b57e15b06eddb65\",\"slug\":\"woocommerce-quick-view\",\"id\":187509},{\"title\":\"WooCommerce Purchase Order Gateway\",\"image\":\"\",\"excerpt\":\"Receive purchase orders via your WooCommerce-powered online store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-purchase-order\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"573a92318244ece5facb449d63e74874\",\"slug\":\"woocommerce-gateway-purchase-order\",\"id\":478542},{\"title\":\"Returns and Warranty Requests\",\"image\":\"\",\"excerpt\":\"Manage the RMA process, add warranties to products &amp; let customers request &amp; manage returns \\/ exchanges from their account.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/warranty-requests\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"9b4c41102e6b61ea5f558e16f9b63e25\",\"slug\":\"woocommerce-warranty\",\"id\":228315},{\"title\":\"Product Enquiry Form\",\"image\":\"\",\"excerpt\":\"Allow visitors to contact you directly from the product details page via a reCAPTCHA protected form to enquire about a product.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-enquiry-form\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"5a0f5d72519a8ffcc86669f042296937\",\"slug\":\"woocommerce-product-enquiry-form\",\"id\":18601},{\"title\":\"WooCommerce Box Office\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-BO-Dark.png\",\"excerpt\":\"Sell tickets for your next event, concert, function, fundraiser or conference directly on your own site\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-box-office\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"e704c9160de318216a8fa657404b9131\",\"slug\":\"woocommerce-box-office\",\"id\":1628717},{\"title\":\"Gravity Forms Product Add-ons\",\"image\":\"\",\"excerpt\":\"Powerful product add-ons, Gravity style\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/gravity-forms-add-ons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.elementstark.com\\/woocommerce-extension-demos\\/product-category\\/gravity-forms\\/\",\"price\":\"&#36;99.00\",\"hash\":\"a6ac0ab1a1536e3a357ccf24c0650ed0\",\"slug\":\"woocommerce-gravityforms-product-addons\",\"id\":18633},{\"title\":\"Composite Products\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/07\\/Logo-CP.png?v=1\",\"excerpt\":\"Create product kit builders and custom product configurators using existing products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/composite-products\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"0343e0115bbcb97ccd98442b8326a0af\",\"slug\":\"woocommerce-composite-products\",\"id\":216836},{\"title\":\"WooCommerce Order Barcodes\",\"image\":\"\",\"excerpt\":\"Generates a unique barcode for each order on your site - perfect for e-tickets, packing slips, reservations and a variety of other uses.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-order-barcodes\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"889835bb29ee3400923653e1e44a3779\",\"slug\":\"woocommerce-order-barcodes\",\"id\":391708},{\"title\":\"WooCommerce 360\\u00ba Image\",\"image\":\"\",\"excerpt\":\"An easy way to add a dynamic, controllable 360\\u00ba image rotation to your WooCommerce site, by adding a group of images to a product\\u2019s gallery.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-360-image\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"24eb2cfa3738a66bf3b2587876668cd2\",\"slug\":\"woocommerce-360-image\",\"id\":512186},{\"title\":\"WooCommerce Photography\",\"image\":\"\",\"excerpt\":\"Sell photos in the blink of an eye using this simple as dragging &amp; dropping interface.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-photography\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"ee76e8b9daf1d97ca4d3874cc9e35687\",\"slug\":\"woocommerce-photography\",\"id\":583602},{\"title\":\"WooCommerce Bookings Availability\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Bookings-Aval-Dark.png\",\"excerpt\":\"Sell more bookings by presenting a calendar or schedule of available slots in a page or post.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/bookings-availability\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"30770d2a-e392-4e82-baaa-76cfc7d02ae3\",\"slug\":\"woocommerce-bookings-availability\",\"id\":4228225},{\"title\":\"Software Add-on\",\"image\":\"\",\"excerpt\":\"Sell License Keys for Software\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/software-add-on\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"79f6dbfe1f1d3a56a86f0509b6d6b04b\",\"slug\":\"woocommerce-software-add-on\",\"id\":18683},{\"title\":\"WooCommerce Products Compare\",\"image\":\"\",\"excerpt\":\"WooCommerce Products Compare will allow your potential customers to easily compare products within your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-products-compare\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"c3ba0a4a3199a0cc7a6112eb24414548\",\"slug\":\"woocommerce-products-compare\",\"id\":853117},{\"title\":\"WooCommerce Store Catalog PDF Download\",\"image\":\"\",\"excerpt\":\"Offer your customers a PDF download of your product catalog, generated by WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-store-catalog-pdf-download\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"79ca7aadafe706364e2d738b7c1090c4\",\"slug\":\"woocommerce-store-catalog-pdf-download\",\"id\":675790},{\"title\":\"WooCommerce Paid Courses\",\"image\":\"\",\"excerpt\":\"Sell your online courses using the most popular eCommerce platform on the web \\u2013 WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-paid-courses\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"bad2a02a063555b7e2bee59924690763\",\"slug\":\"woothemes-sensei\",\"id\":152116},{\"title\":\"eWAY\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/10\\/eway-logo-3000-2000.jpg\",\"excerpt\":\"Take credit card payments securely via eWay (SG, MY, HK, AU, and NZ) keeping customers on your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/eway\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"2c497769d98d025e0d340cd0b5ea5da1\",\"slug\":\"woocommerce-gateway-eway\",\"id\":18604},{\"title\":\"PayPal\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2020\\/10\\/PPCP-Tile-PayPal-Logo-and-Cart-Art-2x-2-uozwz8.jpg\",\"excerpt\":\"PayPal\\u2019s latest, most complete payment processing solution. Accept PayPal exclusives, credit\\/debit cards and local payment methods. Turn on only PayPal options or process a full suite of payment methods. Enable global transactions with extensive currency and country coverage. Built and supported by WooCommerce and PayPal.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-paypal-payments\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"934115ab-e3f3-4435-9580-345b1ce21899\",\"slug\":\"woocommerce-paypal-payments\",\"id\":6410731},{\"title\":\"Catalog Visibility Options\",\"image\":\"\",\"excerpt\":\"Transform WooCommerce into an online catalog by removing eCommerce functionality\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/catalog-visibility-options\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"12e791110365fdbb5865c8658907967e\",\"slug\":\"woocommerce-catalog-visibility-options\",\"id\":18648},{\"title\":\"QuickBooks Sync for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/04\\/woocommerce-com-logo-1-hyhzbh.png\",\"excerpt\":\"Automatic two-way sync for orders, customers, products, inventory and more between WooCommerce and QuickBooks (Online, Desktop, or POS).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/quickbooks-sync-for-woocommerce\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"c5e32e20-7c1f-4585-8b15-d930c2d842ac\",\"slug\":\"myworks-woo-sync-for-quickbooks-online\",\"id\":4065824},{\"title\":\"WooCommerce Blocks\",\"image\":\"\",\"excerpt\":\"WooCommerce Blocks offers a range of Gutenberg blocks you can use to build and customise your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gutenberg-products-block\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"c2e9f13a-f90c-4ffe-a8a5-b432399ec263\",\"slug\":\"woo-gutenberg-products-block\",\"id\":3076677},{\"title\":\"Conditional Shipping and Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/07\\/Logo-CSP.png?v=1\",\"excerpt\":\"Use conditional logic to restrict the shipping and payment options available on your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/conditional-shipping-and-payments\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"1f56ff002fa830b77017b0107505211a\",\"slug\":\"woocommerce-conditional-shipping-and-payments\",\"id\":680253},{\"title\":\"Sequential Order Numbers Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/05\\/Thumbnail-Sequential-Order-Numbers-Pro-updated.png\",\"excerpt\":\"Tame your order numbers! Advanced &amp; sequential order numbers with optional prefixes \\/ suffixes\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sequential-order-numbers-pro\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"0b18a2816e016ba9988b93b1cd8fe766\",\"slug\":\"woocommerce-sequential-order-numbers-pro\",\"id\":18688},{\"title\":\"WooCommerce Order Status Manager\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/02\\/Thumbnail-Order-Status-Manager-updated.png\",\"excerpt\":\"Create, edit, and delete completely custom order statuses and integrate them seamlessly into your order management flow.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-order-status-manager\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"51fd9ab45394b4cad5a0ebf58d012342\",\"slug\":\"woocommerce-order-status-manager\",\"id\":588398},{\"title\":\"WooCommerce Checkout Add-Ons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/07\\/Thumbnail-Checkout-Add-Ons-updated.png\",\"excerpt\":\"Highlight relevant products, offers like free shipping and other up-sells during checkout.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-checkout-add-ons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"8fdca00b4000b7a8cc26371d0e470a8f\",\"slug\":\"woocommerce-checkout-add-ons\",\"id\":466854},{\"title\":\"WooCommerce Google Analytics Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/01\\/Thumbnail-GAPro-updated.png\",\"excerpt\":\"Add advanced event tracking and enhanced eCommerce tracking to your WooCommerce site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-google-analytics-pro\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"d8aed8b7306b509eec1589e59abe319f\",\"slug\":\"woocommerce-google-analytics-pro\",\"id\":1312497},{\"title\":\"WooCommerce One Page Checkout\",\"image\":\"\",\"excerpt\":\"Create special pages where customers can choose products, checkout &amp; pay all on the one page.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-one-page-checkout\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"c9ba8f8352cd71b5508af5161268619a\",\"slug\":\"woocommerce-one-page-checkout\",\"id\":527886},{\"title\":\"Coupon Shortcodes\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/09\\/woocommerce-coupon-shortcodes-product-image-1870x960-1-vc5gux.png\",\"excerpt\":\"Show coupon discount info using shortcodes. Allows to render coupon information and content conditionally, based on the validity of coupons.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/coupon-shortcodes\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"ac5d9d51-70b2-4d8f-8b89-24200eea1394\",\"slug\":\"woocommerce-coupon-shortcodes\",\"id\":244762},{\"title\":\"WooCommerce Product Search\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2014\\/10\\/woocommerce-product-search-product-image-1870x960-1-jvsljj.png\",\"excerpt\":\"The perfect search engine helps customers to find and buy products quickly \\u2013 essential for every WooCommerce store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-product-search\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.itthinx.com\\/wps\\/\",\"price\":\"&#36;49.00\",\"hash\":\"c84cc8ca16ddac3408e6b6c5871133a8\",\"slug\":\"woocommerce-product-search\",\"id\":512174},{\"title\":\"First Data\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/02\\/Thumbnail-FirstData-updated.png\",\"excerpt\":\"FirstData gateway for WooCommerce\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/firstdata\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"eb3e32663ec0810592eaf0d097796230\",\"slug\":\"woocommerce-gateway-firstdata\",\"id\":18645},{\"title\":\"Jilt\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2017\\/12\\/Thumbnail-Jilt-updated.png\",\"excerpt\":\"All-in-one email marketing platform built for WooCommerce stores. Send newsletters, abandoned cart reminders, win-backs, welcome automations, and more.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/jilt\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"b53aafb64dca33835e41ee06de7e9816\",\"slug\":\"jilt-for-woocommerce\",\"id\":2754876},{\"title\":\"WooSlider\",\"image\":\"\",\"excerpt\":\"WooSlider is the ultimate responsive slideshow WordPress slider plugin\\r\\n\\r\\n\\u00a0\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/wooslider\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/www.wooslider.com\\/\",\"price\":\"&#36;49.00\",\"hash\":\"209d98f3ccde6cc3de7e8732a2b20b6a\",\"slug\":\"wooslider\",\"id\":46506},{\"title\":\"WooCommerce Social Login\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/08\\/Thumbnail-Social-Login-updated.png\",\"excerpt\":\"Enable Social Login for seamless checkout and account creation.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-social-login\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/demos.skyverge.com\\/woocommerce-social-login\\/\",\"price\":\"&#36;79.00\",\"hash\":\"b231cd6367a79cc8a53b7d992d77525d\",\"slug\":\"woocommerce-social-login\",\"id\":473617},{\"title\":\"WooCommerce Order Status Control\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/06\\/Thumbnail-Order-Status-Control-updated.png\",\"excerpt\":\"Use this extension to automatically change the order status to \\\"completed\\\" after successful payment.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-order-status-control\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"32400e509c7c36dcc1cd368e8267d981\",\"slug\":\"woocommerce-order-status-control\",\"id\":439037},{\"title\":\"Variation Swatches and Photos\",\"image\":\"\",\"excerpt\":\"Show color and image swatches instead of dropdowns for variable products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/variation-swatches-and-photos\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.elementstark.com\\/woocommerce-extension-demos\\/product-category\\/swatches-and-photos\\/\",\"price\":\"&#36;99.00\",\"hash\":\"37bea8d549df279c8278878d081b062f\",\"slug\":\"woocommerce-variation-swatches-and-photos\",\"id\":18697},{\"title\":\"Opayo Payment Suite\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/10\\/Opayo_logo_RGB.png\",\"excerpt\":\"Take payments on your WooCommerce store via Opayo (formally SagePay).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sage-pay-form\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"6bc0cca47d0274d8ef9b164f6fbec1cc\",\"slug\":\"woocommerce-gateway-sagepay-form\",\"id\":18599},{\"title\":\"EU VAT Number\",\"image\":\"\",\"excerpt\":\"Collect VAT numbers at checkout and remove the VAT charge for eligible EU businesses.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/eu-vat-number\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"d2720c4b4bb8d6908e530355b7a2d734\",\"slug\":\"woocommerce-eu-vat-number\",\"id\":18592},{\"title\":\"HubSpot for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2020\\/04\\/hubspotlogo-web-color-pxebeq.png\",\"excerpt\":\"Integrate HubSpot with WooCommerce to connect your store with HubSpot\'s CRM, abandoned cart tracking, marketing automation &amp; more.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/hubspot-for-woocommerce\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"e50acec8-3a6c-454c-8562-2da4898fa6c1\",\"slug\":\"hubspot-for-woocommerce\",\"id\":5785079},{\"title\":\"Customer\\/Order\\/Coupon CSV Import Suite\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/07\\/Thumbnail-Customer-Order-Coupon-CSV-Import-Suite-updated.png\",\"excerpt\":\"Import both customers and orders into WooCommerce from a CSV file.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/customerorder-csv-import-suite\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"eb00ca8317a0f64dbe185c995e5ea3df\",\"slug\":\"woocommerce-customer-order-csv-import\",\"id\":18709},{\"title\":\"WooCommerce Tab Manager\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/11\\/Thumbnail-Tab-Manager-updated.png\",\"excerpt\":\"Gives you complete control over your product page tabs, create local and global tabs using a visual drag-and-drop interface, and more.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-tab-manager\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"89a9ac74850855cfe772b4b4ee1e31e0\",\"slug\":\"woocommerce-tab-manager\",\"id\":132195}]}\";s:7:\"headers\";O:25:\"Requests_Response_Headers\":1:{s:7:\"\0*\0data\";a:18:{s:6:\"server\";a:1:{i:0;s:5:\"nginx\";}s:4:\"date\";a:1:{i:0;s:29:\"Wed, 07 Jul 2021 21:15:54 GMT\";}s:12:\"content-type\";a:1:{i:0;s:31:\"application/json; charset=UTF-8\";}s:14:\"content-length\";a:1:{i:0;s:5:\"11628\";}s:12:\"x-robots-tag\";a:1:{i:0;s:7:\"noindex\";}s:4:\"link\";a:1:{i:0;s:60:\"<https://woocommerce.com/wp-json/>; rel=\"https://api.w.org/\"\";}s:22:\"x-content-type-options\";a:1:{i:0;s:7:\"nosniff\";}s:29:\"access-control-expose-headers\";a:1:{i:0;s:33:\"X-WP-Total, X-WP-TotalPages, Link\";}s:28:\"access-control-allow-headers\";a:1:{i:0;s:73:\"Authorization, X-WP-Nonce, Content-Disposition, Content-MD5, Content-Type\";}s:13:\"x-wccom-cache\";a:1:{i:0;s:3:\"HIT\";}s:13:\"cache-control\";a:1:{i:0;s:10:\"max-age=60\";}s:5:\"allow\";a:1:{i:0;s:3:\"GET\";}s:16:\"content-encoding\";a:1:{i:0;s:4:\"gzip\";}s:4:\"x-rq\";a:1:{i:0;s:13:\"bur6 0 4 9980\";}s:3:\"age\";a:1:{i:0;s:2:\"54\";}s:7:\"x-cache\";a:1:{i:0;s:3:\"hit\";}s:4:\"vary\";a:1:{i:0;s:23:\"Accept-Encoding, Origin\";}s:13:\"accept-ranges\";a:1:{i:0;s:5:\"bytes\";}}}s:11:\"status_code\";i:200;s:16:\"protocol_version\";d:1.100000000000000088817841970012523233890533447265625;s:7:\"success\";b:1;s:9:\"redirects\";i:0;s:3:\"url\";s:59:\"https://woocommerce.com/wp-json/wccom-extensions/1.0/search\";s:7:\"history\";a:0:{}s:7:\"cookies\";O:19:\"Requests_Cookie_Jar\":1:{s:10:\"\0*\0cookies\";a:0:{}}}s:11:\"\0*\0filename\";N;s:4:\"data\";N;s:7:\"headers\";N;s:6:\"status\";N;}}','no'),(145,'can_compress_scripts','1','no'),(176,'current_theme','Consultio','yes'),(177,'theme_mods_consultio','a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:3:{s:7:\"primary\";i:48;s:9:\"menu-left\";i:49;s:10:\"menu-right\";i:50;}s:18:\"custom_css_post_id\";i:-1;}','yes'),(178,'theme_switched','','yes'),(179,'elementor_cpt_support','a:7:{i:0;s:4:\"page\";i:1;s:4:\"post\";i:2;s:9:\"portfolio\";i:3;s:7:\"service\";i:4;s:10:\"case-study\";i:5;s:6:\"footer\";i:6;s:12:\"ct-mega-menu\";}','yes'),(416,'woocommerce_meta_box_errors','a:0:{}','yes'),(417,'newsletter_diagnostic_cron_calls','a:100:{i:0;i:1621619245;i:1;i:1621619395;i:2;i:1621619412;i:3;i:1621619609;i:4;i:1621620273;i:5;i:1621637543;i:6;i:1621637544;i:7;i:1621637553;i:8;i:1621637658;i:9;i:1621637740;i:10;i:1621637834;i:11;i:1621660301;i:12;i:1621660331;i:13;i:1621670168;i:14;i:1621739402;i:15;i:1621739414;i:16;i:1621739471;i:17;i:1621739682;i:18;i:1621784938;i:19;i:1621922959;i:20;i:1621922969;i:21;i:1622000818;i:22;i:1622000826;i:23;i:1622039035;i:24;i:1622260180;i:25;i:1622283905;i:26;i:1622352024;i:27;i:1622352036;i:28;i:1622499452;i:29;i:1622538421;i:30;i:1622742670;i:31;i:1622743851;i:32;i:1622751211;i:33;i:1622786929;i:34;i:1622786952;i:35;i:1622843795;i:36;i:1622961135;i:37;i:1622961149;i:38;i:1622980734;i:39;i:1622983644;i:40;i:1623117570;i:41;i:1623171121;i:42;i:1623249979;i:43;i:1623250001;i:44;i:1623269305;i:45;i:1623269314;i:46;i:1623269415;i:47;i:1623269687;i:48;i:1623269731;i:49;i:1623273006;i:50;i:1623280621;i:51;i:1623280653;i:52;i:1623340670;i:53;i:1623408173;i:54;i:1623460991;i:55;i:1623480589;i:56;i:1623509194;i:57;i:1623541725;i:58;i:1623548767;i:59;i:1623548772;i:60;i:1623558888;i:61;i:1623561036;i:62;i:1623578128;i:63;i:1623608670;i:64;i:1623608714;i:65;i:1623830771;i:66;i:1623830781;i:67;i:1623997427;i:68;i:1623997436;i:69;i:1623997497;i:70;i:1624021930;i:71;i:1624021992;i:72;i:1624165503;i:73;i:1624203243;i:74;i:1624212593;i:75;i:1624212625;i:76;i:1624243936;i:77;i:1624243939;i:78;i:1624307270;i:79;i:1624436184;i:80;i:1624491834;i:81;i:1624491898;i:82;i:1624491919;i:83;i:1624599832;i:84;i:1624599847;i:85;i:1624599852;i:86;i:1624716250;i:87;i:1624738437;i:88;i:1625084513;i:89;i:1625084514;i:90;i:1625125610;i:91;i:1625173909;i:92;i:1625173910;i:93;i:1625173943;i:94;i:1625232433;i:95;i:1625692535;i:96;i:1625726322;i:97;i:1625729370;i:98;i:1625776533;i:99;i:1625776595;}','no'),(418,'newsletter_diagnostic_cron_data','a:3:{s:4:\"mean\";d:41572.5;s:3:\"max\";i:460102;s:3:\"min\";i:1;}','no'),(184,'wpcf7','a:2:{s:7:\"version\";s:3:\"5.4\";s:13:\"bulk_validate\";a:4:{s:9:\"timestamp\";i:1616787476;s:7:\"version\";s:3:\"5.4\";s:11:\"count_valid\";i:1;s:13:\"count_invalid\";i:0;}}','yes'),(187,'sbi_statuses','a:3:{s:8:\"database\";a:1:{s:14:\"hashtag_column\";b:1;}s:13:\"first_install\";i:1616787514;s:4:\"gdpr\";a:1:{s:19:\"from_update_success\";b:1;}}','no'),(188,'sbi_usage_tracking','a:2:{s:7:\"enabled\";b:0;s:9:\"last_send\";i:0;}','yes'),(189,'newsletter_logger_secret','e38315e3','yes'),(430,'wc_blocks_db_schema_version','260','yes'),(191,'newsletter_main_first_install_time','1616787479','no'),(192,'newsletter_main','a:32:{s:11:\"return_path\";s:0:\"\";s:8:\"reply_to\";s:0:\"\";s:12:\"sender_email\";s:28:\"newsletter@sa7717.dev34.info\";s:11:\"sender_name\";s:16:\"System Amusement\";s:6:\"editor\";i:0;s:13:\"scheduler_max\";i:100;s:9:\"phpmailer\";i:0;s:5:\"debug\";i:0;s:5:\"track\";i:1;s:3:\"css\";s:0:\"\";s:12:\"css_disabled\";i:0;s:2:\"ip\";s:0:\"\";s:4:\"page\";i:0;s:19:\"disable_cron_notice\";i:0;s:13:\"do_shortcodes\";i:0;s:11:\"header_logo\";s:0:\"\";s:12:\"header_title\";s:16:\"System Amusement\";s:10:\"header_sub\";s:8:\"Services\";s:12:\"footer_title\";s:0:\"\";s:14:\"footer_contact\";s:0:\"\";s:12:\"footer_legal\";s:0:\"\";s:12:\"facebook_url\";s:0:\"\";s:11:\"twitter_url\";s:0:\"\";s:13:\"instagram_url\";s:0:\"\";s:13:\"pinterest_url\";s:0:\"\";s:12:\"linkedin_url\";s:0:\"\";s:10:\"tumblr_url\";s:0:\"\";s:11:\"youtube_url\";s:0:\"\";s:9:\"vimeo_url\";s:0:\"\";s:14:\"soundcloud_url\";s:0:\"\";s:12:\"telegram_url\";s:0:\"\";s:6:\"vk_url\";s:0:\"\";}','yes'),(193,'newsletter_main_info','a:17:{s:11:\"header_logo\";a:1:{s:2:\"id\";i:0;}s:12:\"header_title\";s:16:\"System Amusement\";s:10:\"header_sub\";s:8:\"Services\";s:12:\"footer_title\";s:0:\"\";s:14:\"footer_contact\";s:0:\"\";s:12:\"footer_legal\";s:0:\"\";s:12:\"facebook_url\";s:0:\"\";s:11:\"twitter_url\";s:0:\"\";s:13:\"instagram_url\";s:0:\"\";s:13:\"pinterest_url\";s:0:\"\";s:12:\"linkedin_url\";s:0:\"\";s:10:\"tumblr_url\";s:0:\"\";s:11:\"youtube_url\";s:0:\"\";s:9:\"vimeo_url\";s:0:\"\";s:14:\"soundcloud_url\";s:0:\"\";s:12:\"telegram_url\";s:0:\"\";s:6:\"vk_url\";s:0:\"\";}','yes'),(194,'newsletter_main_smtp','a:7:{s:7:\"enabled\";i:0;s:4:\"host\";s:0:\"\";s:4:\"user\";s:0:\"\";s:4:\"pass\";s:0:\"\";s:4:\"port\";i:25;s:6:\"secure\";s:0:\"\";s:12:\"ssl_insecure\";i:0;}','yes'),(195,'newsletter_main_version','1.6.6','yes'),(196,'newsletter_subscription_first_install_time','1616787479','no'),(197,'newsletter','a:14:{s:14:\"noconfirmation\";i:1;s:12:\"notify_email\";s:19:\"alex@inspirable.com\";s:8:\"multiple\";i:1;s:6:\"notify\";i:0;s:10:\"error_text\";s:87:\"<p>This email address is already subscribed, please contact the site administrator.</p>\";s:17:\"subscription_text\";s:19:\"{subscription_form}\";s:17:\"confirmation_text\";s:104:\"<p>A confirmation email is on the way. Follow the instructions and check the spam folder. Thank you.</p>\";s:20:\"confirmation_subject\";s:32:\"Please confirm your subscription\";s:21:\"confirmation_tracking\";s:0:\"\";s:20:\"confirmation_message\";s:94:\"<p>Please confirm your subscription <a href=\"{subscription_confirm_url}\">clicking here</a></p>\";s:14:\"confirmed_text\";s:43:\"<p>Your subscription has been confirmed</p>\";s:17:\"confirmed_subject\";s:7:\"Welcome\";s:17:\"confirmed_message\";s:130:\"<p>This message confirms your subscription to our newsletter. Thank you!</p><hr><p><a href=\"{profile_url}\">Change your profile</p>\";s:18:\"confirmed_tracking\";s:0:\"\";}','yes'),(202,'newsletter_subscription_version','2.2.7','yes'),(203,'newsletter_unsubscription_first_install_time','1616787479','no'),(204,'newsletter_unsubscription','a:6:{s:16:\"unsubscribe_text\";s:103:\"<p>Please confirm you want to unsubscribe <a href=\"{unsubscription_confirm_url}\">clicking here</a>.</p>\";s:10:\"error_text\";s:99:\"<p>Subscriber not found, it probably has already been removed. No further actions are required.</p>\";s:17:\"unsubscribed_text\";s:124:\"<p>Your subscription has been deleted. If that was an error you can <a href=\"{reactivate_url}\">subscribe again here</a>.</p>\";s:20:\"unsubscribed_subject\";s:7:\"Goodbye\";s:20:\"unsubscribed_message\";s:87:\"<p>This message confirms that you have unsubscribed from our newsletter. Thank you.</p>\";s:16:\"reactivated_text\";s:46:\"<p>Your subscription has been reactivated.</p>\";}','yes'),(198,'newsletter_subscription_lists','a:240:{s:6:\"list_1\";s:0:\"\";s:13:\"list_1_status\";i:0;s:14:\"list_1_checked\";i:0;s:13:\"list_1_forced\";i:0;s:19:\"list_1_subscription\";i:0;s:14:\"list_1_profile\";i:0;s:6:\"list_2\";s:0:\"\";s:13:\"list_2_status\";i:0;s:14:\"list_2_checked\";i:0;s:13:\"list_2_forced\";i:0;s:19:\"list_2_subscription\";i:0;s:14:\"list_2_profile\";i:0;s:6:\"list_3\";s:0:\"\";s:13:\"list_3_status\";i:0;s:14:\"list_3_checked\";i:0;s:13:\"list_3_forced\";i:0;s:19:\"list_3_subscription\";i:0;s:14:\"list_3_profile\";i:0;s:6:\"list_4\";s:0:\"\";s:13:\"list_4_status\";i:0;s:14:\"list_4_checked\";i:0;s:13:\"list_4_forced\";i:0;s:19:\"list_4_subscription\";i:0;s:14:\"list_4_profile\";i:0;s:6:\"list_5\";s:0:\"\";s:13:\"list_5_status\";i:0;s:14:\"list_5_checked\";i:0;s:13:\"list_5_forced\";i:0;s:19:\"list_5_subscription\";i:0;s:14:\"list_5_profile\";i:0;s:6:\"list_6\";s:0:\"\";s:13:\"list_6_status\";i:0;s:14:\"list_6_checked\";i:0;s:13:\"list_6_forced\";i:0;s:19:\"list_6_subscription\";i:0;s:14:\"list_6_profile\";i:0;s:6:\"list_7\";s:0:\"\";s:13:\"list_7_status\";i:0;s:14:\"list_7_checked\";i:0;s:13:\"list_7_forced\";i:0;s:19:\"list_7_subscription\";i:0;s:14:\"list_7_profile\";i:0;s:6:\"list_8\";s:0:\"\";s:13:\"list_8_status\";i:0;s:14:\"list_8_checked\";i:0;s:13:\"list_8_forced\";i:0;s:19:\"list_8_subscription\";i:0;s:14:\"list_8_profile\";i:0;s:6:\"list_9\";s:0:\"\";s:13:\"list_9_status\";i:0;s:14:\"list_9_checked\";i:0;s:13:\"list_9_forced\";i:0;s:19:\"list_9_subscription\";i:0;s:14:\"list_9_profile\";i:0;s:7:\"list_10\";s:0:\"\";s:14:\"list_10_status\";i:0;s:15:\"list_10_checked\";i:0;s:14:\"list_10_forced\";i:0;s:20:\"list_10_subscription\";i:0;s:15:\"list_10_profile\";i:0;s:7:\"list_11\";s:0:\"\";s:14:\"list_11_status\";i:0;s:15:\"list_11_checked\";i:0;s:14:\"list_11_forced\";i:0;s:20:\"list_11_subscription\";i:0;s:15:\"list_11_profile\";i:0;s:7:\"list_12\";s:0:\"\";s:14:\"list_12_status\";i:0;s:15:\"list_12_checked\";i:0;s:14:\"list_12_forced\";i:0;s:20:\"list_12_subscription\";i:0;s:15:\"list_12_profile\";i:0;s:7:\"list_13\";s:0:\"\";s:14:\"list_13_status\";i:0;s:15:\"list_13_checked\";i:0;s:14:\"list_13_forced\";i:0;s:20:\"list_13_subscription\";i:0;s:15:\"list_13_profile\";i:0;s:7:\"list_14\";s:0:\"\";s:14:\"list_14_status\";i:0;s:15:\"list_14_checked\";i:0;s:14:\"list_14_forced\";i:0;s:20:\"list_14_subscription\";i:0;s:15:\"list_14_profile\";i:0;s:7:\"list_15\";s:0:\"\";s:14:\"list_15_status\";i:0;s:15:\"list_15_checked\";i:0;s:14:\"list_15_forced\";i:0;s:20:\"list_15_subscription\";i:0;s:15:\"list_15_profile\";i:0;s:7:\"list_16\";s:0:\"\";s:14:\"list_16_status\";i:0;s:15:\"list_16_checked\";i:0;s:14:\"list_16_forced\";i:0;s:20:\"list_16_subscription\";i:0;s:15:\"list_16_profile\";i:0;s:7:\"list_17\";s:0:\"\";s:14:\"list_17_status\";i:0;s:15:\"list_17_checked\";i:0;s:14:\"list_17_forced\";i:0;s:20:\"list_17_subscription\";i:0;s:15:\"list_17_profile\";i:0;s:7:\"list_18\";s:0:\"\";s:14:\"list_18_status\";i:0;s:15:\"list_18_checked\";i:0;s:14:\"list_18_forced\";i:0;s:20:\"list_18_subscription\";i:0;s:15:\"list_18_profile\";i:0;s:7:\"list_19\";s:0:\"\";s:14:\"list_19_status\";i:0;s:15:\"list_19_checked\";i:0;s:14:\"list_19_forced\";i:0;s:20:\"list_19_subscription\";i:0;s:15:\"list_19_profile\";i:0;s:7:\"list_20\";s:0:\"\";s:14:\"list_20_status\";i:0;s:15:\"list_20_checked\";i:0;s:14:\"list_20_forced\";i:0;s:20:\"list_20_subscription\";i:0;s:15:\"list_20_profile\";i:0;s:7:\"list_21\";s:0:\"\";s:14:\"list_21_status\";i:0;s:15:\"list_21_checked\";i:0;s:14:\"list_21_forced\";i:0;s:20:\"list_21_subscription\";i:0;s:15:\"list_21_profile\";i:0;s:7:\"list_22\";s:0:\"\";s:14:\"list_22_status\";i:0;s:15:\"list_22_checked\";i:0;s:14:\"list_22_forced\";i:0;s:20:\"list_22_subscription\";i:0;s:15:\"list_22_profile\";i:0;s:7:\"list_23\";s:0:\"\";s:14:\"list_23_status\";i:0;s:15:\"list_23_checked\";i:0;s:14:\"list_23_forced\";i:0;s:20:\"list_23_subscription\";i:0;s:15:\"list_23_profile\";i:0;s:7:\"list_24\";s:0:\"\";s:14:\"list_24_status\";i:0;s:15:\"list_24_checked\";i:0;s:14:\"list_24_forced\";i:0;s:20:\"list_24_subscription\";i:0;s:15:\"list_24_profile\";i:0;s:7:\"list_25\";s:0:\"\";s:14:\"list_25_status\";i:0;s:15:\"list_25_checked\";i:0;s:14:\"list_25_forced\";i:0;s:20:\"list_25_subscription\";i:0;s:15:\"list_25_profile\";i:0;s:7:\"list_26\";s:0:\"\";s:14:\"list_26_status\";i:0;s:15:\"list_26_checked\";i:0;s:14:\"list_26_forced\";i:0;s:20:\"list_26_subscription\";i:0;s:15:\"list_26_profile\";i:0;s:7:\"list_27\";s:0:\"\";s:14:\"list_27_status\";i:0;s:15:\"list_27_checked\";i:0;s:14:\"list_27_forced\";i:0;s:20:\"list_27_subscription\";i:0;s:15:\"list_27_profile\";i:0;s:7:\"list_28\";s:0:\"\";s:14:\"list_28_status\";i:0;s:15:\"list_28_checked\";i:0;s:14:\"list_28_forced\";i:0;s:20:\"list_28_subscription\";i:0;s:15:\"list_28_profile\";i:0;s:7:\"list_29\";s:0:\"\";s:14:\"list_29_status\";i:0;s:15:\"list_29_checked\";i:0;s:14:\"list_29_forced\";i:0;s:20:\"list_29_subscription\";i:0;s:15:\"list_29_profile\";i:0;s:7:\"list_30\";s:0:\"\";s:14:\"list_30_status\";i:0;s:15:\"list_30_checked\";i:0;s:14:\"list_30_forced\";i:0;s:20:\"list_30_subscription\";i:0;s:15:\"list_30_profile\";i:0;s:7:\"list_31\";s:0:\"\";s:14:\"list_31_status\";i:0;s:15:\"list_31_checked\";i:0;s:14:\"list_31_forced\";i:0;s:20:\"list_31_subscription\";i:0;s:15:\"list_31_profile\";i:0;s:7:\"list_32\";s:0:\"\";s:14:\"list_32_status\";i:0;s:15:\"list_32_checked\";i:0;s:14:\"list_32_forced\";i:0;s:20:\"list_32_subscription\";i:0;s:15:\"list_32_profile\";i:0;s:7:\"list_33\";s:0:\"\";s:14:\"list_33_status\";i:0;s:15:\"list_33_checked\";i:0;s:14:\"list_33_forced\";i:0;s:20:\"list_33_subscription\";i:0;s:15:\"list_33_profile\";i:0;s:7:\"list_34\";s:0:\"\";s:14:\"list_34_status\";i:0;s:15:\"list_34_checked\";i:0;s:14:\"list_34_forced\";i:0;s:20:\"list_34_subscription\";i:0;s:15:\"list_34_profile\";i:0;s:7:\"list_35\";s:0:\"\";s:14:\"list_35_status\";i:0;s:15:\"list_35_checked\";i:0;s:14:\"list_35_forced\";i:0;s:20:\"list_35_subscription\";i:0;s:15:\"list_35_profile\";i:0;s:7:\"list_36\";s:0:\"\";s:14:\"list_36_status\";i:0;s:15:\"list_36_checked\";i:0;s:14:\"list_36_forced\";i:0;s:20:\"list_36_subscription\";i:0;s:15:\"list_36_profile\";i:0;s:7:\"list_37\";s:0:\"\";s:14:\"list_37_status\";i:0;s:15:\"list_37_checked\";i:0;s:14:\"list_37_forced\";i:0;s:20:\"list_37_subscription\";i:0;s:15:\"list_37_profile\";i:0;s:7:\"list_38\";s:0:\"\";s:14:\"list_38_status\";i:0;s:15:\"list_38_checked\";i:0;s:14:\"list_38_forced\";i:0;s:20:\"list_38_subscription\";i:0;s:15:\"list_38_profile\";i:0;s:7:\"list_39\";s:0:\"\";s:14:\"list_39_status\";i:0;s:15:\"list_39_checked\";i:0;s:14:\"list_39_forced\";i:0;s:20:\"list_39_subscription\";i:0;s:15:\"list_39_profile\";i:0;s:7:\"list_40\";s:0:\"\";s:14:\"list_40_status\";i:0;s:15:\"list_40_checked\";i:0;s:14:\"list_40_forced\";i:0;s:20:\"list_40_subscription\";i:0;s:15:\"list_40_profile\";i:0;}','yes'),(199,'newsletter_subscription_template','a:1:{s:8:\"template\";s:2365:\"<!DOCTYPE html>\n<html>\n    <head>\n        <!-- General styles, not used by all email clients -->\n        <style type=\"text/css\" media=\"all\">\n            a {\n                text-decoration: none;\n                color: #0088cc;\n            }\n            hr {\n                border-top: 1px solid #999;\n            }\n        </style>\n    </head>\n\n    <!-- KEEP THE LAYOUT SIMPLE: THOSE ARE SERVICE MESSAGES. -->\n    <body style=\"margin: 0; padding: 0;\">\n\n        <!-- Top title with dark background -->\n        <table style=\"background-color: #444; width: 100%;\" cellspacing=\"0\" cellpadding=\"0\">\n            <tr>\n                <td style=\"padding: 20px; text-align: center; font-family: sans-serif; color: #fff; font-size: 28px\">\n                    {blog_title}\n                </td>\n            </tr>\n        </table>\n\n        <!-- Main table 100% wide with background color #eee -->    \n        <table style=\"background-color: #eee; width: 100%;\">\n            <tr>\n                <td align=\"center\" style=\"padding: 15px;\">\n\n                    <!-- Content table with backgdound color #fff, width 500px -->\n                    <table style=\"background-color: #fff; max-width: 600px; width: 100%; border: 1px solid #ddd;\">\n                        <tr>\n                            <td style=\"padding: 15px; color: #333; font-size: 16px; font-family: sans-serif\">\n                                <!-- The \"message\" tag below is replaced with one of confirmation, welcome or goodbye messages -->\n                                <!-- Messages content can be configured on Newsletter List Building panels --> \n\n                                {message}\n\n                                <hr>\n                                <!-- Signature if not already added to single messages (surround with <p>) -->\n                                <p>\n                                    <small>\n                                        <a href=\"{blog_url}\">{blog_url}</a><br>\n                                        {company_name}<br>\n                                        {company_address}\n                                    </small>\n                                </p>\n                                \n\n                            </td>\n                        </tr>\n                    </table>\n\n                </td>\n            </tr>\n        </table>\n\n    </body>\n</html>\";}','yes'),(200,'newsletter_profile','a:180:{s:5:\"email\";s:5:\"Email\";s:11:\"email_error\";s:28:\"Email address is not correct\";s:4:\"name\";s:23:\"First name or full name\";s:11:\"name_status\";i:0;s:10:\"name_rules\";i:0;s:7:\"surname\";s:9:\"Last name\";s:14:\"surname_status\";i:0;s:10:\"sex_status\";i:0;s:3:\"sex\";s:3:\"I\'m\";s:7:\"privacy\";s:44:\"By continuing, you accept the privacy policy\";s:14:\"privacy_status\";i:0;s:11:\"privacy_url\";s:0:\"\";s:18:\"privacy_use_wp_url\";i:0;s:9:\"subscribe\";s:9:\"Subscribe\";s:12:\"title_female\";s:3:\"Ms.\";s:10:\"title_male\";s:3:\"Mr.\";s:10:\"title_none\";s:4:\"Dear\";s:8:\"sex_male\";s:3:\"Man\";s:10:\"sex_female\";s:5:\"Woman\";s:8:\"sex_none\";s:13:\"Not specified\";s:16:\"profile_1_status\";i:0;s:9:\"profile_1\";s:0:\"\";s:14:\"profile_1_type\";s:4:\"text\";s:21:\"profile_1_placeholder\";s:0:\"\";s:15:\"profile_1_rules\";i:0;s:17:\"profile_1_options\";s:0:\"\";s:16:\"profile_2_status\";i:0;s:9:\"profile_2\";s:0:\"\";s:14:\"profile_2_type\";s:4:\"text\";s:21:\"profile_2_placeholder\";s:0:\"\";s:15:\"profile_2_rules\";i:0;s:17:\"profile_2_options\";s:0:\"\";s:16:\"profile_3_status\";i:0;s:9:\"profile_3\";s:0:\"\";s:14:\"profile_3_type\";s:4:\"text\";s:21:\"profile_3_placeholder\";s:0:\"\";s:15:\"profile_3_rules\";i:0;s:17:\"profile_3_options\";s:0:\"\";s:16:\"profile_4_status\";i:0;s:9:\"profile_4\";s:0:\"\";s:14:\"profile_4_type\";s:4:\"text\";s:21:\"profile_4_placeholder\";s:0:\"\";s:15:\"profile_4_rules\";i:0;s:17:\"profile_4_options\";s:0:\"\";s:16:\"profile_5_status\";i:0;s:9:\"profile_5\";s:0:\"\";s:14:\"profile_5_type\";s:4:\"text\";s:21:\"profile_5_placeholder\";s:0:\"\";s:15:\"profile_5_rules\";i:0;s:17:\"profile_5_options\";s:0:\"\";s:16:\"profile_6_status\";i:0;s:9:\"profile_6\";s:0:\"\";s:14:\"profile_6_type\";s:4:\"text\";s:21:\"profile_6_placeholder\";s:0:\"\";s:15:\"profile_6_rules\";i:0;s:17:\"profile_6_options\";s:0:\"\";s:16:\"profile_7_status\";i:0;s:9:\"profile_7\";s:0:\"\";s:14:\"profile_7_type\";s:4:\"text\";s:21:\"profile_7_placeholder\";s:0:\"\";s:15:\"profile_7_rules\";i:0;s:17:\"profile_7_options\";s:0:\"\";s:16:\"profile_8_status\";i:0;s:9:\"profile_8\";s:0:\"\";s:14:\"profile_8_type\";s:4:\"text\";s:21:\"profile_8_placeholder\";s:0:\"\";s:15:\"profile_8_rules\";i:0;s:17:\"profile_8_options\";s:0:\"\";s:16:\"profile_9_status\";i:0;s:9:\"profile_9\";s:0:\"\";s:14:\"profile_9_type\";s:4:\"text\";s:21:\"profile_9_placeholder\";s:0:\"\";s:15:\"profile_9_rules\";i:0;s:17:\"profile_9_options\";s:0:\"\";s:17:\"profile_10_status\";i:0;s:10:\"profile_10\";s:0:\"\";s:15:\"profile_10_type\";s:4:\"text\";s:22:\"profile_10_placeholder\";s:0:\"\";s:16:\"profile_10_rules\";i:0;s:18:\"profile_10_options\";s:0:\"\";s:17:\"profile_11_status\";i:0;s:10:\"profile_11\";s:0:\"\";s:15:\"profile_11_type\";s:4:\"text\";s:22:\"profile_11_placeholder\";s:0:\"\";s:16:\"profile_11_rules\";i:0;s:18:\"profile_11_options\";s:0:\"\";s:17:\"profile_12_status\";i:0;s:10:\"profile_12\";s:0:\"\";s:15:\"profile_12_type\";s:4:\"text\";s:22:\"profile_12_placeholder\";s:0:\"\";s:16:\"profile_12_rules\";i:0;s:18:\"profile_12_options\";s:0:\"\";s:17:\"profile_13_status\";i:0;s:10:\"profile_13\";s:0:\"\";s:15:\"profile_13_type\";s:4:\"text\";s:22:\"profile_13_placeholder\";s:0:\"\";s:16:\"profile_13_rules\";i:0;s:18:\"profile_13_options\";s:0:\"\";s:17:\"profile_14_status\";i:0;s:10:\"profile_14\";s:0:\"\";s:15:\"profile_14_type\";s:4:\"text\";s:22:\"profile_14_placeholder\";s:0:\"\";s:16:\"profile_14_rules\";i:0;s:18:\"profile_14_options\";s:0:\"\";s:17:\"profile_15_status\";i:0;s:10:\"profile_15\";s:0:\"\";s:15:\"profile_15_type\";s:4:\"text\";s:22:\"profile_15_placeholder\";s:0:\"\";s:16:\"profile_15_rules\";i:0;s:18:\"profile_15_options\";s:0:\"\";s:17:\"profile_16_status\";i:0;s:10:\"profile_16\";s:0:\"\";s:15:\"profile_16_type\";s:4:\"text\";s:22:\"profile_16_placeholder\";s:0:\"\";s:16:\"profile_16_rules\";i:0;s:18:\"profile_16_options\";s:0:\"\";s:17:\"profile_17_status\";i:0;s:10:\"profile_17\";s:0:\"\";s:15:\"profile_17_type\";s:4:\"text\";s:22:\"profile_17_placeholder\";s:0:\"\";s:16:\"profile_17_rules\";i:0;s:18:\"profile_17_options\";s:0:\"\";s:17:\"profile_18_status\";i:0;s:10:\"profile_18\";s:0:\"\";s:15:\"profile_18_type\";s:4:\"text\";s:22:\"profile_18_placeholder\";s:0:\"\";s:16:\"profile_18_rules\";i:0;s:18:\"profile_18_options\";s:0:\"\";s:17:\"profile_19_status\";i:0;s:10:\"profile_19\";s:0:\"\";s:15:\"profile_19_type\";s:4:\"text\";s:22:\"profile_19_placeholder\";s:0:\"\";s:16:\"profile_19_rules\";i:0;s:18:\"profile_19_options\";s:0:\"\";s:17:\"profile_20_status\";i:0;s:10:\"profile_20\";s:0:\"\";s:15:\"profile_20_type\";s:4:\"text\";s:22:\"profile_20_placeholder\";s:0:\"\";s:16:\"profile_20_rules\";i:0;s:18:\"profile_20_options\";s:0:\"\";s:13:\"list_1_forced\";i:0;s:13:\"list_2_forced\";i:0;s:13:\"list_3_forced\";i:0;s:13:\"list_4_forced\";i:0;s:13:\"list_5_forced\";i:0;s:13:\"list_6_forced\";i:0;s:13:\"list_7_forced\";i:0;s:13:\"list_8_forced\";i:0;s:13:\"list_9_forced\";i:0;s:14:\"list_10_forced\";i:0;s:14:\"list_11_forced\";i:0;s:14:\"list_12_forced\";i:0;s:14:\"list_13_forced\";i:0;s:14:\"list_14_forced\";i:0;s:14:\"list_15_forced\";i:0;s:14:\"list_16_forced\";i:0;s:14:\"list_17_forced\";i:0;s:14:\"list_18_forced\";i:0;s:14:\"list_19_forced\";i:0;s:14:\"list_20_forced\";i:0;s:14:\"list_21_forced\";i:0;s:14:\"list_22_forced\";i:0;s:14:\"list_23_forced\";i:0;s:14:\"list_24_forced\";i:0;s:14:\"list_25_forced\";i:0;s:14:\"list_26_forced\";i:0;s:14:\"list_27_forced\";i:0;s:14:\"list_28_forced\";i:0;s:14:\"list_29_forced\";i:0;s:14:\"list_30_forced\";i:0;s:14:\"list_31_forced\";i:0;s:14:\"list_32_forced\";i:0;s:14:\"list_33_forced\";i:0;s:14:\"list_34_forced\";i:0;s:14:\"list_35_forced\";i:0;s:14:\"list_36_forced\";i:0;s:14:\"list_37_forced\";i:0;s:14:\"list_38_forced\";i:0;s:14:\"list_39_forced\";i:0;s:14:\"list_40_forced\";i:0;}','yes'),(201,'newsletter_subscription_antibot','a:6:{s:12:\"ip_blacklist\";a:0:{}s:17:\"address_blacklist\";a:0:{}s:9:\"antiflood\";i:60;s:7:\"akismet\";i:0;s:7:\"captcha\";i:0;s:8:\"disabled\";i:0;}','yes'),(205,'newsletter_unsubscription_version','1.0.3','yes'),(206,'newsletter_profile_first_install_time','1616787479','no'),(207,'newsletter_profile_main','a:8:{s:4:\"text\";s:188:\"{profile_form}\n    <p>If you change your email address, a confirmation email will be sent to activate it.</p>\n    <p><a href=\"{unsubscription_confirm_url}\">Cancel your subscription</a></p>\";s:13:\"email_changed\";s:81:\"Your email has been changed, an activation email has been sent with instructions.\";s:5:\"error\";s:42:\"Your email is not valid or already in use.\";s:10:\"save_label\";s:4:\"Save\";s:13:\"privacy_label\";s:21:\"Read our privacy note\";s:5:\"saved\";s:14:\"Profile saved.\";s:18:\"export_newsletters\";i:0;s:3:\"url\";s:0:\"\";}','yes'),(208,'newsletter_profile_version','1.1.0','yes'),(209,'newsletter_emails_first_install_time','1616787479','no'),(210,'newsletter_emails','a:1:{s:5:\"theme\";s:7:\"default\";}','yes'),(211,'newsletter_emails_theme_default','a:0:{}','no'),(212,'newsletter_emails_version','1.1.5','yes'),(213,'newsletter_users_first_install_time','1616787479','no'),(214,'newsletter_users','a:0:{}','yes'),(215,'newsletter_users_version','1.3.0','yes'),(216,'newsletter_statistics_first_install_time','1616787479','no'),(217,'newsletter_statistics','a:1:{s:3:\"key\";s:32:\"a3abd87fe466d3a8276ad3b387071495\";}','yes'),(218,'newsletter_statistics_version','1.2.8','yes'),(219,'newsletter_install_time','1616787482','no'),(220,'revslider_servers','a:7:{i:0;s:22:\"themepunch-ext-b.tools\";i:1;s:16:\"themepunch.tools\";i:2;s:22:\"themepunch-ext-a.tools\";i:3;s:22:\"themepunch-ext-a.tools\";i:4;s:22:\"themepunch-ext-a.tools\";i:5;s:22:\"themepunch-ext-b.tools\";i:6;s:22:\"themepunch-ext-b.tools\";}','yes'),(221,'revslider_server_refresh','1625692524','yes'),(222,'revslider-update-check-short','1625692550','yes'),(223,'revslider-connection','1','yes'),(224,'revslider-update-hash','7688b2ae423c88554c147c52bed62d7f','yes'),(225,'revslider-latest-version','6.5.4','yes'),(226,'revslider-stable-version','4.2.0','yes'),(227,'revslider-notices','a:3:{i:0;O:8:\"stdClass\":8:{s:7:\"version\";s:5:\"1.0.0\";s:4:\"text\";s:316:\"<div style=\"display: block; background-color: #1C0950; text-align: \ncenter;\"><a \nhref=\"https://mailchi.mp/sliderrevolution/the-update-your-website-deserves\"\n target=\"_blank\"><img alt=\"wow\" src=\"//updates.themepunch-ext-b.tools/banners/6411_banner.jpg\" width=\"960\" height=\"250\" style=\"margin-bottom: -5px;\"></a></div>\";s:4:\"code\";s:12:\"TPRSV6411-01\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;s:4:\"type\";s:1:\"3\";s:10:\"additional\";a:0:{}}i:1;O:8:\"stdClass\":8:{s:7:\"version\";s:5:\"1.0.0\";s:4:\"text\";s:485:\"<div style=\"display: block; background: linear-gradient(90deg, rgb(247, 52, 94) 0%, rgb(247, 52, 94) 25%, rgb(0, 206, 171) 75%, rgb(0, 206, 171) 100%); text-align: \ncenter;\"><a \nhref=\"https://account.sliderrevolution.com/portal/pricing/?utm_source=admin&utm_medium=banner&utm_campaign=everyone&utm_content=summersale21\"\n target=\"_blank\"><img alt=\"summersale\" src=\"//updates.themepunch-ext-b.tools/banners/summersale.jpg\" width=\"960\" height=\"250\" style=\"margin-bottom: -5px;\"></a></div>\";s:4:\"code\";s:11:\"TPRSV652-01\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;s:4:\"type\";s:1:\"3\";s:10:\"additional\";a:0:{}}i:2;O:8:\"stdClass\":8:{s:7:\"version\";s:5:\"9.9.9\";s:4:\"text\";s:551:\"<div style=\"display: block; background: #fff; text-align: center; height: 250px;\"><a href=\"https://account.sliderrevolution.com/portal/pricing/?utm_source=admin&utm_medium=banner&utm_campaign=srusers&utm_content=getpremium\" target=\"_blank\" rel=\"noopener\"><video style=\"object-fit: cover; background-size: cover; opacity: 1; width: 960px; height: 250px; display: inline-block;\" muted=\"\" loop=\"\" autoplay=\"\" preload=\"auto\"><source src=\"https://www.sliderrevolution.com/wp-content/uploads/2021/07/adminpremiumvid4.mp4\" type=\"video/mp4\"></video></a></div>\";s:4:\"code\";s:11:\"TPRSV654-01\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;s:4:\"type\";s:1:\"3\";s:10:\"additional\";a:0:{}}}','yes'),(228,'revslider-additions','O:8:\"stdClass\":1:{s:7:\"selling\";b:1;}','yes'),(229,'rs-addons-counter','30','yes'),(230,'revslider-addons','O:8:\"stdClass\":30:{s:22:\"revslider-backup-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:22:\"revslider-backup-addon\";s:12:\"version_from\";s:5:\"5.2.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Backup\";s:6:\"line_1\";s:12:\"Make Backups\";s:6:\"line_2\";s:25:\"Revisions for your safety\";s:9:\"available\";s:5:\"2.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_backup.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"BU\";}}s:23:\"revslider-gallery-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:23:\"revslider-gallery-addon\";s:12:\"version_from\";s:5:\"5.2.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:17:\"WordPress Gallery\";s:6:\"line_1\";s:31:\"Replace the standard WP Gallery\";s:6:\"line_2\";s:31:\"with the Sliders of your choice\";s:9:\"available\";s:5:\"2.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_wpgallery.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"GA\";}}s:25:\"revslider-rel-posts-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:25:\"revslider-rel-posts-addon\";s:12:\"version_from\";s:7:\"5.2.4.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:13:\"Related Posts\";s:6:\"line_1\";s:25:\"Add related Posts Sliders\";s:6:\"line_2\";s:31:\"at the end of your post content\";s:9:\"available\";s:5:\"2.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_wprelated.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"RP\";}}s:26:\"revslider-typewriter-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:26:\"revslider-typewriter-addon\";s:12:\"version_from\";s:5:\"6.4.4\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:17:\"Typewriter Effect\";s:6:\"line_1\";s:27:\"Enhance your slider\'s text \";s:6:\"line_2\";s:24:\"with typewriter effects \";s:9:\"available\";s:5:\"2.1.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_typewriter.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"TW\";}}s:23:\"revslider-sharing-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:23:\"revslider-sharing-addon\";s:12:\"version_from\";s:5:\"5.3.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:14:\"Social Sharing\";s:6:\"line_1\";s:17:\"Share your slides\";s:6:\"line_2\";s:50:\"with RevSlider \"actions\" because sharing is caring\";s:9:\"available\";s:5:\"2.0.5\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:80:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_socialsharing.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"SH\";}}s:27:\"revslider-maintenance-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:27:\"revslider-maintenance-addon\";s:12:\"version_from\";s:5:\"5.3.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:15:\"Coming & Maint.\";s:6:\"line_1\";s:37:\"Simple Coming Soon & Maintenance Page\";s:6:\"line_2\";s:42:\"Let your visitors know what\'s up and when!\";s:9:\"available\";s:5:\"2.1.3\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:84:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_underconstruction.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"MT\";}}s:20:\"revslider-snow-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:20:\"revslider-snow-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:12:\"Holiday Snow\";s:6:\"line_1\";s:12:\"Let it snow!\";s:6:\"line_2\";s:32:\"Add animated snow to any Slider \";s:9:\"available\";s:5:\"2.0.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:71:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_snow.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"SN\";}}s:24:\"revslider-polyfold-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:24:\"revslider-polyfold-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:22:\"Polyfold Scroll Effect\";s:6:\"line_1\";s:32:\"Add sharp edges to your sliders \";s:6:\"line_2\";s:35:\"as they scroll into and out of view\";s:9:\"available\";s:5:\"2.0.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:75:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_polyfold.jpg\";s:5:\"color\";s:7:\"#3e186f\";s:4:\"text\";s:2:\"PF\";}}s:19:\"revslider-404-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:19:\"revslider-404-addon\";s:12:\"version_from\";s:3:\"5.3\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:3:\"404\";s:6:\"line_1\";s:39:\"Build custom 404 \"Page not Found\" Pages\";s:6:\"line_2\";s:28:\"with Slider Revolution swag!\";s:9:\"available\";s:5:\"2.0.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:70:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_404.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:3:\"404\";}}s:30:\"revslider-prevnext-posts-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:30:\"revslider-prevnext-posts-addon\";s:12:\"version_from\";s:3:\"5.4\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:14:\"Adjacent Posts\";s:6:\"line_1\";s:30:\"Display previous and next post\";s:6:\"line_2\";s:28:\"to the currently showing one\";s:9:\"available\";s:5:\"2.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_wpadjacent.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PN\";}}s:25:\"revslider-filmstrip-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:25:\"revslider-filmstrip-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:9:\"Filmstrip\";s:6:\"line_1\";s:44:\"Display a continously rotating set of images\";s:6:\"line_2\";s:26:\"for your slide backgrounds\";s:9:\"available\";s:5:\"2.0.4\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_filmstrip.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"FS\";}}s:21:\"revslider-login-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:21:\"revslider-login-addon\";s:12:\"version_from\";s:3:\"5.4\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:10:\"Login Page\";s:6:\"line_1\";s:25:\"Very simple WP Login Page\";s:6:\"line_2\";s:34:\"enhanced with your favorite slider\";s:9:\"available\";s:5:\"2.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:72:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_login.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"LI\";}}s:24:\"revslider-featured-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:24:\"revslider-featured-addon\";s:12:\"version_from\";s:3:\"5.4\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:20:\"Post Featured Slider\";s:6:\"line_1\";s:25:\"Display a featured Slider\";s:6:\"line_2\";s:41:\"instead of a featured Image in your Posts\";s:9:\"available\";s:5:\"2.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_wpfeatured.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"FT\";}}s:23:\"revslider-weather-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:23:\"revslider-weather-addon\";s:12:\"version_from\";s:7:\"5.4.5.2\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:7:\"Weather\";s:6:\"line_1\";s:21:\"Every where you go...\";s:6:\"line_2\";s:36:\"...always take the weather with you!\";s:9:\"available\";s:5:\"2.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:74:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_weather.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"WT\";}}s:24:\"revslider-panorama-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:24:\"revslider-panorama-addon\";s:12:\"version_from\";s:7:\"5.4.5.2\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:8:\"Panorama\";s:6:\"line_1\";s:14:\"Panorama AddOn\";s:6:\"line_2\";s:28:\"Display images in 360 degree\";s:9:\"available\";s:5:\"2.1.3\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:75:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_panorama.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PN\";}}s:30:\"revslider-duotonefilters-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:30:\"revslider-duotonefilters-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:7:\"Duotone\";s:6:\"line_1\";s:7:\"Duotone\";s:6:\"line_2\";s:25:\"Because one is not enough\";s:9:\"available\";s:5:\"2.0.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:74:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_duotone.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:3:\"DTF\";}}s:23:\"revslider-refresh-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:23:\"revslider-refresh-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:8:\"(Re)Load\";s:6:\"line_1\";s:39:\"Reload the current page or a custom URL\";s:6:\"line_2\";s:34:\"after a certain time, loops, slide\";s:9:\"available\";s:5:\"2.0.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_reload.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"RF\";}}s:28:\"revslider-liquideffect-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:28:\"revslider-liquideffect-addon\";s:12:\"version_from\";s:5:\"6.4.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:10:\"Distortion\";s:6:\"line_1\";s:22:\"Add Distortion Effects\";s:6:\"line_2\";s:30:\"to your slides and transitions\";s:9:\"available\";s:5:\"2.1.3\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_distortion.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"LE\";}}s:31:\"revslider-explodinglayers-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:31:\"revslider-explodinglayers-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:16:\"Exploding Layers\";s:6:\"line_1\";s:23:\"Add explosive particles\";s:6:\"line_2\";s:24:\"to your layers animation\";s:9:\"available\";s:5:\"2.1.4\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_exploding.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"EL\";}}s:26:\"revslider-paintbrush-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:26:\"revslider-paintbrush-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:10:\"Paintbrush\";s:6:\"line_1\";s:14:\"Paint or Erase\";s:6:\"line_2\";s:22:\"your background images\";s:9:\"available\";s:5:\"2.1.9\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_paintbrush.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PB\";}}s:29:\"revslider-domain-switch-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:29:\"revslider-domain-switch-addon\";s:12:\"version_from\";s:5:\"6.0.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:13:\"Domain Switch\";s:6:\"line_1\";s:17:\"Switch Image URLs\";s:6:\"line_2\";s:37:\"in sliders from one domain to another\";s:9:\"available\";s:5:\"1.0.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:79:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_domainswitch.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"DS\";}}s:25:\"revslider-mousetrap-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:25:\"revslider-mousetrap-addon\";s:12:\"version_from\";s:6:\"6.2.23\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:9:\"Mousetrap\";s:6:\"line_1\";s:31:\"Create all kinds of interesting\";s:6:\"line_2\";s:19:\" mouse interactions\";s:9:\"available\";s:5:\"2.0.8\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_mousetrap.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"MT\";}}s:26:\"revslider-whiteboard-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:26:\"revslider-whiteboard-addon\";s:12:\"version_from\";s:5:\"5.2.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:10:\"Whiteboard\";s:6:\"line_1\";s:31:\"Create Hand-Drawn Presentations\";s:6:\"line_2\";s:45:\"that are understandable, memorable & engaging\";s:9:\"available\";s:5:\"2.2.3\";s:10:\"background\";s:81:\"//updates.themepunch-ext-b.tools/revslider/addons/images/whiteboard_widget_bg.jpg\";s:6:\"button\";s:11:\"How to use?\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_whiteboard.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"WB\";}}s:27:\"revslider-scrollvideo-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:27:\"revslider-scrollvideo-addon\";s:12:\"version_from\";s:5:\"6.3.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:12:\"Scroll Video\";s:6:\"line_1\";s:114:\"This addon allows you to generate a sequence of images from any html5 video and play them with scroll interaction.\";s:6:\"line_2\";s:49:\"Quality options are included for optimal results!\";s:9:\"available\";s:5:\"2.0.4\";s:10:\"background\";s:78:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_scrollvideo.jpg\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:78:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_scrollvideo.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"SV\";}}s:22:\"revslider-slicey-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:22:\"revslider-slicey-addon\";s:12:\"version_from\";s:5:\"6.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Slicey\";s:6:\"line_1\";s:20:\"Slice \'em up nicely!\";s:6:\"line_2\";s:38:\"Create image slices of your background\";s:9:\"available\";s:5:\"2.1.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_slicey.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"SL\";}}s:24:\"revslider-revealer-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:24:\"revslider-revealer-addon\";s:12:\"version_from\";s:5:\"6.4.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Reveal\";s:6:\"line_1\";s:9:\"Reveal...\";s:6:\"line_2\";s:37:\"...your inner beast... and RevSliders\";s:9:\"available\";s:5:\"2.2.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_reveal.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"RV\";}}s:25:\"revslider-particles-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:25:\"revslider-particles-addon\";s:12:\"version_from\";s:5:\"6.3.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:16:\"Particle Effects\";s:6:\"line_1\";s:17:\"Let\'s Parti(cle)!\";s:6:\"line_2\";s:51:\"Add interactive particle animations to your sliders\";s:9:\"available\";s:5:\"2.3.4\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_particles.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PT\";}}s:27:\"revslider-beforeafter-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:27:\"revslider-beforeafter-addon\";s:12:\"version_from\";s:5:\"6.4.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:14:\"Before & After\";s:6:\"line_1\";s:35:\"Compare two slides before and after\";s:6:\"line_2\";s:33:\"use it vertically or horizontally\";s:9:\"available\";s:5:\"2.1.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:0:\"\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:78:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_beforeafter.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"BA\";}}s:27:\"revslider-bubblemorph-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:27:\"revslider-bubblemorph-addon\";s:12:\"version_from\";s:6:\"6.2.50\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:11:\"BubbleMorph\";s:6:\"line_1\";s:26:\"Include BubbleMorph Layers\";s:6:\"line_2\";s:33:\"for a decorative lava lamp effect\";s:9:\"available\";s:5:\"2.2.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:78:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_bubblemorph.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"BM\";}}s:22:\"revslider-lottie-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:22:\"revslider-lottie-addon\";s:12:\"version_from\";s:5:\"6.4.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Lottie\";s:6:\"line_1\";s:53:\"Adds support for the popular Lottie Animation format,\";s:6:\"line_2\";s:70:\" including animation control, style customization and a local library.\";s:9:\"available\";s:5:\"2.0.6\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_lottie.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"LT\";}}}','yes'),(231,'revslider-library-check','1625173938','yes'),(232,'revslider-library-hash','dae3de1eb57eeeee008b70e9a23844b5','yes'),(233,'rs-library','a:3:{s:4:\"hash\";s:32:\"dae3de1eb57eeeee008b70e9a23844b5\";s:7:\"objects\";a:417:{i:0;a:12:{s:2:\"id\";s:3:\"198\";s:6:\"handle\";s:16:\"object_dvd_1.png\";s:4:\"name\";s:3:\"DVD\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:43:17\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:1;a:12:{s:2:\"id\";s:3:\"188\";s:6:\"handle\";s:18:\"object_plant_1.png\";s:4:\"name\";s:7:\"Plant 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-12 16:25:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:2;a:12:{s:2:\"id\";s:3:\"187\";s:6:\"handle\";s:16:\"object_pen_1.png\";s:4:\"name\";s:5:\"Pen 1\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-12 16:25:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:3;a:12:{s:2:\"id\";s:3:\"172\";s:6:\"handle\";s:16:\"object_egg_1.png\";s:4:\"name\";s:3:\"Egg\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:4;a:12:{s:2:\"id\";s:3:\"171\";s:6:\"handle\";s:19:\"object_guitar_1.png\";s:4:\"name\";s:6:\"Guitar\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:5;a:12:{s:2:\"id\";s:3:\"170\";s:6:\"handle\";s:21:\"object_envelope_1.png\";s:4:\"name\";s:15:\"Closed Envelope\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:6;a:12:{s:2:\"id\";s:3:\"169\";s:6:\"handle\";s:19:\"object_postit_2.png\";s:4:\"name\";s:18:\"Postit Label White\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:7;a:12:{s:2:\"id\";s:3:\"168\";s:6:\"handle\";s:21:\"object_envelope_2.png\";s:4:\"name\";s:13:\"Open Envelope\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:8;a:12:{s:2:\"id\";s:3:\"167\";s:6:\"handle\";s:17:\"object_eggs_1.png\";s:4:\"name\";s:10:\"Egg Carton\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:9;a:12:{s:2:\"id\";s:3:\"166\";s:6:\"handle\";s:25:\"object_bottleopener_1.png\";s:4:\"name\";s:13:\"Bottle Opener\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:10;a:12:{s:2:\"id\";s:3:\"165\";s:6:\"handle\";s:23:\"object_blueprints_1.png\";s:4:\"name\";s:10:\"Blueprints\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:11;a:12:{s:2:\"id\";s:3:\"164\";s:6:\"handle\";s:22:\"object_holepunch_1.png\";s:4:\"name\";s:10:\"Hole punch\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:12;a:12:{s:2:\"id\";s:3:\"163\";s:6:\"handle\";s:20:\"object_speaker_1.png\";s:4:\"name\";s:13:\"Black Speaker\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:13;a:12:{s:2:\"id\";s:3:\"162\";s:6:\"handle\";s:19:\"object_eraser_1.png\";s:4:\"name\";s:6:\"Eraser\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:14;a:12:{s:2:\"id\";s:3:\"161\";s:6:\"handle\";s:23:\"object_vinylcover_1.png\";s:4:\"name\";s:11:\"Vinyl Cover\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:15;a:12:{s:2:\"id\";s:3:\"160\";s:6:\"handle\";s:20:\"object_booklet_1.png\";s:4:\"name\";s:9:\"Booklet 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:16;a:12:{s:2:\"id\";s:3:\"159\";s:6:\"handle\";s:22:\"object_earphones_2.png\";s:4:\"name\";s:11:\"Earphones 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:17;a:12:{s:2:\"id\";s:3:\"158\";s:6:\"handle\";s:18:\"object_vinyl_1.png\";s:4:\"name\";s:5:\"Vinyl\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:18;a:12:{s:2:\"id\";s:3:\"157\";s:6:\"handle\";s:19:\"object_postit_1.png\";s:4:\"name\";s:17:\"Postit Label Pink\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:19;a:12:{s:2:\"id\";s:3:\"156\";s:6:\"handle\";s:23:\"object_mechpencil_1.png\";s:4:\"name\";s:17:\"Mechanical Pencil\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:20;a:12:{s:2:\"id\";s:3:\"155\";s:6:\"handle\";s:22:\"object_turntable_1.png\";s:4:\"name\";s:9:\"Turntable\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:21;a:12:{s:2:\"id\";s:3:\"154\";s:6:\"handle\";s:19:\"object_folder_2.png\";s:4:\"name\";s:19:\"Closed Folder Black\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:22;a:12:{s:2:\"id\";s:3:\"153\";s:6:\"handle\";s:19:\"object_postit_4.png\";s:4:\"name\";s:18:\"Postit Label Green\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:23;a:12:{s:2:\"id\";s:3:\"152\";s:6:\"handle\";s:19:\"object_folder_1.png\";s:4:\"name\";s:12:\"Blank Folder\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:24;a:12:{s:2:\"id\";s:3:\"151\";s:6:\"handle\";s:19:\"object_pencup_1.png\";s:4:\"name\";s:7:\"Pen Cup\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:25;a:12:{s:2:\"id\";s:3:\"150\";s:6:\"handle\";s:23:\"object_winebottle_1.png\";s:4:\"name\";s:15:\"Red Wine Bottle\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:26;a:12:{s:2:\"id\";s:3:\"149\";s:6:\"handle\";s:23:\"object_headphones_1.png\";s:4:\"name\";s:10:\"Headphones\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:27;a:12:{s:2:\"id\";s:3:\"148\";s:6:\"handle\";s:22:\"object_earphones_1.png\";s:4:\"name\";s:9:\"Earphones\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:28;a:12:{s:2:\"id\";s:3:\"147\";s:6:\"handle\";s:19:\"object_postit_3.png\";s:4:\"name\";s:19:\"Postit Label Yellow\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:29;a:12:{s:2:\"id\";s:3:\"146\";s:6:\"handle\";s:22:\"object_corkscrew_1.png\";s:4:\"name\";s:23:\"Corkscrew Bottle Opener\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1300\";s:6:\"height\";s:4:\"1300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:30;a:12:{s:2:\"id\";s:3:\"145\";s:6:\"handle\";s:19:\"object_muffin_1.png\";s:4:\"name\";s:16:\"Chocolate Muffin\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:31;a:12:{s:2:\"id\";s:3:\"144\";s:6:\"handle\";s:18:\"object_chair_2.png\";s:4:\"name\";s:12:\"Yellow Chair\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:32;a:12:{s:2:\"id\";s:3:\"143\";s:6:\"handle\";s:18:\"object_knife_2.png\";s:4:\"name\";s:7:\"Knife 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:33;a:12:{s:2:\"id\";s:3:\"142\";s:6:\"handle\";s:26:\"object_choppingboard_2.png\";s:4:\"name\";s:16:\"Chopping Board 3\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:34;a:12:{s:2:\"id\";s:3:\"141\";s:6:\"handle\";s:26:\"object_choppingboard_3.png\";s:4:\"name\";s:16:\"Chopping Board 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:35;a:12:{s:2:\"id\";s:3:\"140\";s:6:\"handle\";s:19:\"object_coffee_2.png\";s:4:\"name\";s:12:\"Coffee Cup 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:4:\"1200\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:36;a:12:{s:2:\"id\";s:3:\"139\";s:6:\"handle\";s:18:\"object_bread_1.png\";s:4:\"name\";s:15:\"Croissant Bread\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:37;a:12:{s:2:\"id\";s:3:\"138\";s:6:\"handle\";s:18:\"object_spoon_2.png\";s:4:\"name\";s:12:\"Wodden Spoon\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:38;a:12:{s:2:\"id\";s:3:\"137\";s:6:\"handle\";s:26:\"object_choppingboard_1.png\";s:4:\"name\";s:16:\"Chopping Board 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:39;a:12:{s:2:\"id\";s:3:\"136\";s:6:\"handle\";s:16:\"object_cup_2.png\";s:4:\"name\";s:11:\"Empty Cup 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:40;a:12:{s:2:\"id\";s:3:\"135\";s:6:\"handle\";s:18:\"object_knife_1.png\";s:4:\"name\";s:5:\"Knife\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:41;a:12:{s:2:\"id\";s:3:\"134\";s:6:\"handle\";s:18:\"object_spoon_1.png\";s:4:\"name\";s:5:\"Spoon\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:42;a:12:{s:2:\"id\";s:3:\"133\";s:6:\"handle\";s:16:\"object_cup_1.png\";s:4:\"name\";s:9:\"Empty Cup\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:43;a:12:{s:2:\"id\";s:3:\"132\";s:6:\"handle\";s:18:\"object_chair_3.png\";s:4:\"name\";s:11:\"White Chair\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:44;a:12:{s:2:\"id\";s:3:\"131\";s:6:\"handle\";s:19:\"object_coffee_1.png\";s:4:\"name\";s:10:\"Coffee Cup\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:45;a:12:{s:2:\"id\";s:3:\"130\";s:6:\"handle\";s:19:\"object_frypan_2.png\";s:4:\"name\";s:9:\"Fry Pan 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:46;a:12:{s:2:\"id\";s:3:\"129\";s:6:\"handle\";s:19:\"object_frypan_1.png\";s:4:\"name\";s:9:\"Fry Pan 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:47;a:12:{s:2:\"id\";s:3:\"128\";s:6:\"handle\";s:17:\"object_fork_1.png\";s:4:\"name\";s:4:\"Fork\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:48;a:12:{s:2:\"id\";s:3:\"127\";s:6:\"handle\";s:20:\"object_dishrag_1.png\";s:4:\"name\";s:13:\"Dishrag Cloth\";s:4:\"tags\";a:0:{}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:49;a:12:{s:2:\"id\";s:3:\"126\";s:6:\"handle\";s:20:\"object_wacom_pen.png\";s:4:\"name\";s:17:\"Wacom Drawing Pen\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:2;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1060\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:50;a:12:{s:2:\"id\";s:3:\"125\";s:6:\"handle\";s:21:\"object_occulus_vr.png\";s:4:\"name\";s:23:\"Occulus Virtual Reality\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:51;a:12:{s:2:\"id\";s:3:\"124\";s:6:\"handle\";s:18:\"object_antenna.png\";s:4:\"name\";s:13:\"Antenna Radar\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:52;a:12:{s:2:\"id\";s:3:\"123\";s:6:\"handle\";s:21:\"object_solarpanel.png\";s:4:\"name\";s:11:\"Solar Panel\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:53;a:12:{s:2:\"id\";s:3:\"122\";s:6:\"handle\";s:16:\"object_wacom.png\";s:4:\"name\";s:20:\"Wacom Drawing Tablet\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:2;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:54;a:12:{s:2:\"id\";s:3:\"121\";s:6:\"handle\";s:18:\"object_earth_2.png\";s:4:\"name\";s:20:\"Earth Globe Planet 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:55;a:12:{s:2:\"id\";s:3:\"120\";s:6:\"handle\";s:18:\"object_chair_1.png\";s:4:\"name\";s:12:\"Office Chair\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:56;a:12:{s:2:\"id\";s:3:\"119\";s:6:\"handle\";s:24:\"object_windturbine_2.png\";s:4:\"name\";s:14:\"Wind Turbine 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:57;a:12:{s:2:\"id\";s:3:\"118\";s:6:\"handle\";s:22:\"object_windturbine.png\";s:4:\"name\";s:12:\"Wind Turbine\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:58;a:12:{s:2:\"id\";s:3:\"117\";s:6:\"handle\";s:16:\"object_earth.png\";s:4:\"name\";s:18:\"Earth Globe Planet\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:59;a:12:{s:2:\"id\";s:2:\"88\";s:6:\"handle\";s:24:\"object_eiffeltower_2.png\";s:4:\"name\";s:13:\"Eiffeltower 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"700\";s:6:\"height\";s:3:\"700\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:60;a:12:{s:2:\"id\";s:2:\"87\";s:6:\"handle\";s:21:\"object_notebook_1.png\";s:4:\"name\";s:11:\"Notebook PC\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:61;a:12:{s:2:\"id\";s:2:\"86\";s:6:\"handle\";s:20:\"object_macbook_1.png\";s:4:\"name\";s:20:\"Apple Macbook Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:62;a:12:{s:2:\"id\";s:2:\"85\";s:6:\"handle\";s:18:\"object_canon_2.png\";s:4:\"name\";s:21:\"Canon Camera DSLR Top\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:63;a:12:{s:2:\"id\";s:2:\"84\";s:6:\"handle\";s:19:\"object_iphone_3.png\";s:4:\"name\";s:25:\"Apple iPhone Silver White\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:64;a:12:{s:2:\"id\";s:2:\"83\";s:6:\"handle\";s:18:\"object_candy_2.png\";s:4:\"name\";s:15:\"Candy Colored 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:65;a:12:{s:2:\"id\";s:2:\"82\";s:6:\"handle\";s:21:\"object_macmouse_1.png\";s:4:\"name\";s:15:\"Apple Mac Mouse\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:66;a:12:{s:2:\"id\";s:2:\"81\";s:6:\"handle\";s:19:\"object_iphone_1.png\";s:4:\"name\";s:18:\"Apple iPhone Black\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:67;a:12:{s:2:\"id\";s:2:\"80\";s:6:\"handle\";s:17:\"object_deco_1.png\";s:4:\"name\";s:17:\"White Deco Object\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:68;a:12:{s:2:\"id\";s:2:\"79\";s:6:\"handle\";s:23:\"object_applewatch_1.png\";s:4:\"name\";s:24:\"Apple Watch White Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:69;a:12:{s:2:\"id\";s:2:\"78\";s:6:\"handle\";s:23:\"object_swissknife_1.png\";s:4:\"name\";s:11:\"Swiss Knife\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:70;a:12:{s:2:\"id\";s:2:\"77\";s:6:\"handle\";s:23:\"object_applewatch_2.png\";s:4:\"name\";s:17:\"Apple Watch Black\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:71;a:12:{s:2:\"id\";s:2:\"76\";s:6:\"handle\";s:18:\"object_candy_1.png\";s:4:\"name\";s:13:\"Candy Colored\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:72;a:12:{s:2:\"id\";s:2:\"75\";s:6:\"handle\";s:17:\"object_ipad_1.png\";s:4:\"name\";s:16:\"Apple iPad Black\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:73;a:12:{s:2:\"id\";s:2:\"74\";s:6:\"handle\";s:17:\"object_lamp_2.png\";s:4:\"name\";s:15:\"Black Desk Lamp\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:74;a:12:{s:2:\"id\";s:2:\"73\";s:6:\"handle\";s:18:\"object_canon_1.png\";s:4:\"name\";s:17:\"Canon Camera DLSR\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:75;a:12:{s:2:\"id\";s:2:\"72\";s:6:\"handle\";s:23:\"object_blackberry_2.png\";s:4:\"name\";s:12:\"Blackberry 3\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:76;a:12:{s:2:\"id\";s:2:\"71\";s:6:\"handle\";s:19:\"object_iphone_2.png\";s:4:\"name\";s:19:\"Apple iPhone Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:77;a:12:{s:2:\"id\";s:2:\"70\";s:6:\"handle\";s:17:\"object_ipad_2.png\";s:4:\"name\";s:15:\"Apple iPad Gold\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:78;a:12:{s:2:\"id\";s:2:\"69\";s:6:\"handle\";s:20:\"object_printer_1.png\";s:4:\"name\";s:7:\"Printer\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:79;a:12:{s:2:\"id\";s:2:\"68\";s:6:\"handle\";s:20:\"object_pcmouse_1.png\";s:4:\"name\";s:14:\"Black PC Mouse\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:80;a:12:{s:2:\"id\";s:2:\"67\";s:6:\"handle\";s:17:\"object_ipad_3.png\";s:4:\"name\";s:17:\"Apple iPad Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:81;a:12:{s:2:\"id\";s:2:\"66\";s:6:\"handle\";s:17:\"object_lamp_1.png\";s:4:\"name\";s:13:\"Desk Lamp Top\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:82;a:12:{s:2:\"id\";s:2:\"65\";s:6:\"handle\";s:22:\"object_macscreen_1.png\";s:4:\"name\";s:16:\"Apple Mac Screen\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:83;a:12:{s:2:\"id\";s:2:\"64\";s:6:\"handle\";s:23:\"object_blackberry_3.png\";s:4:\"name\";s:12:\"Blackberry 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:84;a:12:{s:2:\"id\";s:2:\"63\";s:6:\"handle\";s:23:\"object_applewatch_3.png\";s:4:\"name\";s:16:\"Apple Watch Gold\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:85;a:12:{s:2:\"id\";s:2:\"62\";s:6:\"handle\";s:23:\"object_blackberry_1.png\";s:4:\"name\";s:10:\"Blackberry\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:86;a:12:{s:2:\"id\";s:2:\"49\";s:6:\"handle\";s:19:\"object_bottle_1.png\";s:4:\"name\";s:18:\"Brown Glass Bottle\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:87;a:12:{s:2:\"id\";s:2:\"48\";s:6:\"handle\";s:20:\"object_glasses_1.png\";s:4:\"name\";s:19:\"Hipster Glasses Top\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:88;a:12:{s:2:\"id\";s:2:\"47\";s:6:\"handle\";s:21:\"object_magazine_1.png\";s:4:\"name\";s:14:\"Blank Magazine\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:89;a:12:{s:2:\"id\";s:2:\"46\";s:6:\"handle\";s:28:\"object_leatherdocument_2.png\";s:4:\"name\";s:24:\"Black Leather Document 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:90;a:12:{s:2:\"id\";s:2:\"45\";s:6:\"handle\";s:18:\"object_purse_2.png\";s:4:\"name\";s:13:\"Black Purse 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:91;a:12:{s:2:\"id\";s:2:\"44\";s:6:\"handle\";s:23:\"object_typewriter_1.png\";s:4:\"name\";s:18:\"Retro Typewriter 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:92;a:12:{s:2:\"id\";s:2:\"43\";s:6:\"handle\";s:17:\"object_book_5.png\";s:4:\"name\";s:9:\"Old Books\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:93;a:12:{s:2:\"id\";s:2:\"42\";s:6:\"handle\";s:28:\"object_leatherdocument_1.png\";s:4:\"name\";s:29:\"Black Leather Document Closed\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:94;a:12:{s:2:\"id\";s:2:\"41\";s:6:\"handle\";s:17:\"object_book_4.png\";s:4:\"name\";s:8:\"Old Book\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:95;a:12:{s:2:\"id\";s:2:\"40\";s:6:\"handle\";s:19:\"object_wallet_2.png\";s:4:\"name\";s:22:\"Black Leather Document\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:96;a:12:{s:2:\"id\";s:2:\"39\";s:6:\"handle\";s:18:\"object_quill_2.png\";s:4:\"name\";s:15:\"Quill Feather 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:97;a:12:{s:2:\"id\";s:2:\"38\";s:6:\"handle\";s:24:\"object_eiffeltower_1.png\";s:4:\"name\";s:11:\"Eiffeltower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:98;a:12:{s:2:\"id\";s:2:\"37\";s:6:\"handle\";s:21:\"object_magazine_2.png\";s:4:\"name\";s:11:\"Open Book 3\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1333\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:99;a:12:{s:2:\"id\";s:2:\"36\";s:6:\"handle\";s:17:\"object_book_1.png\";s:4:\"name\";s:10:\"Blank Book\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:100;a:12:{s:2:\"id\";s:2:\"35\";s:6:\"handle\";s:20:\"object_glasses_2.png\";s:4:\"name\";s:15:\"Hipster Glasses\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:101;a:12:{s:2:\"id\";s:2:\"34\";s:6:\"handle\";s:17:\"object_book_2.png\";s:4:\"name\";s:11:\"Open Book 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:102;a:12:{s:2:\"id\";s:2:\"33\";s:6:\"handle\";s:19:\"object_gloves_1.png\";s:4:\"name\";s:12:\"Black Gloves\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:103;a:12:{s:2:\"id\";s:2:\"32\";s:6:\"handle\";s:23:\"object_typewriter_2.png\";s:4:\"name\";s:16:\"Retro Typewriter\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:104;a:12:{s:2:\"id\";s:2:\"31\";s:6:\"handle\";s:17:\"object_book_3.png\";s:4:\"name\";s:9:\"Open Book\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:105;a:12:{s:2:\"id\";s:2:\"30\";s:6:\"handle\";s:19:\"object_wallet_1.png\";s:4:\"name\";s:12:\"Black Wallet\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:106;a:12:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:18:\"object_purse_1.png\";s:4:\"name\";s:11:\"Black Purse\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:107;a:12:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:18:\"object_quill_1.png\";s:4:\"name\";s:13:\"Quill Feather\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:108;a:12:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:19:\"object_artbox_2.png\";s:4:\"name\";s:16:\"Art Box Colors 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:109;a:12:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:18:\"object_cloth_1.png\";s:4:\"name\";s:17:\"Cloth Paint Color\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:110;a:12:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:21:\"object_brushpot_1.png\";s:4:\"name\";s:9:\"Brush Pot\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"984\";s:6:\"height\";s:3:\"984\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:111;a:12:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:24:\"object_paintbucket_1.png\";s:4:\"name\";s:12:\"Paint Bucket\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:112;a:12:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:23:\"object_paintbrush_2.png\";s:4:\"name\";s:12:\"Paintbrush 3\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"700\";s:6:\"height\";s:3:\"700\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:113;a:12:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:19:\"object_artbox_1.png\";s:4:\"name\";s:14:\"Art Box Colors\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:114;a:12:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:23:\"object_paintbrush_3.png\";s:4:\"name\";s:12:\"Paintbrush 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1100\";s:6:\"height\";s:4:\"1100\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:115;a:12:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:23:\"object_paintbrush_1.png\";s:4:\"name\";s:12:\"Paintbrush 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:116;a:12:{s:2:\"id\";s:2:\"11\";s:6:\"handle\";s:21:\"table_radio_right.png\";s:4:\"name\";s:18:\"Radio Speaker Wood\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:117;a:12:{s:2:\"id\";s:2:\"10\";s:6:\"handle\";s:18:\"keyboard_apple.png\";s:4:\"name\";s:14:\"Apple Keyboard\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:118;a:12:{s:2:\"id\";s:1:\"9\";s:6:\"handle\";s:20:\"macbook_top_gold.png\";s:4:\"name\";s:18:\"Apple Macbook Gold\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:119;a:12:{s:2:\"id\";s:1:\"8\";s:6:\"handle\";s:21:\"nexus6_front_blue.png\";s:4:\"name\";s:19:\"Google Nexus 6 Blue\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1100\";s:6:\"height\";s:4:\"1100\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:120;a:12:{s:2:\"id\";s:3:\"479\";s:6:\"handle\";s:31:\"Tram-beside-waiting-station.jpg\";s:4:\"name\";s:27:\"Tram beside waiting station\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1450\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:52:06\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:121;a:12:{s:2:\"id\";s:3:\"478\";s:6:\"handle\";s:14:\"Pulling-up.jpg\";s:4:\"name\";s:10:\"Pulling up\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1297\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:41:20\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:122;a:12:{s:2:\"id\";s:3:\"477\";s:6:\"handle\";s:16:\"Snowboarding.jpg\";s:4:\"name\";s:12:\"Snowboarding\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1290\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:41:20\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:123;a:12:{s:2:\"id\";s:3:\"476\";s:6:\"handle\";s:16:\"Morning-yoga.jpg\";s:4:\"name\";s:12:\"Morning yoga\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1346\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:124;a:12:{s:2:\"id\";s:3:\"475\";s:6:\"handle\";s:8:\"Yoga.jpg\";s:4:\"name\";s:4:\"Yoga\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1079\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:125;a:12:{s:2:\"id\";s:3:\"474\";s:6:\"handle\";s:14:\"Golf-balls.jpg\";s:4:\"name\";s:10:\"Golf balls\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:126;a:12:{s:2:\"id\";s:3:\"473\";s:6:\"handle\";s:19:\"Confident-Boxer.jpg\";s:4:\"name\";s:15:\"Confident Boxer\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:127;a:12:{s:2:\"id\";s:3:\"472\";s:6:\"handle\";s:11:\"Aerobic.jpg\";s:4:\"name\";s:7:\"Aerobic\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:128;a:12:{s:2:\"id\";s:3:\"471\";s:6:\"handle\";s:18:\"Riding-bicycle.jpg\";s:4:\"name\";s:14:\"Riding bicycle\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1358\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:129;a:12:{s:2:\"id\";s:3:\"470\";s:6:\"handle\";s:27:\"woman-with-barbell-back.jpg\";s:4:\"name\";s:23:\"woman with barbell back\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:130;a:12:{s:2:\"id\";s:3:\"469\";s:6:\"handle\";s:24:\"Woman-lying-on-floor.jpg\";s:4:\"name\";s:20:\"Woman lying on floor\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1318\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:131;a:12:{s:2:\"id\";s:3:\"468\";s:6:\"handle\";s:27:\"Holding-black-dumbbells.jpg\";s:4:\"name\";s:23:\"Holding black dumbbells\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1275\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:132;a:12:{s:2:\"id\";s:3:\"467\";s:6:\"handle\";s:25:\"Woman-using-dumbbells.jpg\";s:4:\"name\";s:21:\"Woman using dumbbells\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1425\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:133;a:12:{s:2:\"id\";s:3:\"466\";s:6:\"handle\";s:16:\"Soccer-cleat.jpg\";s:4:\"name\";s:12:\"Soccer cleat\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:134;a:12:{s:2:\"id\";s:3:\"465\";s:6:\"handle\";s:16:\"Soccer-field.jpg\";s:4:\"name\";s:12:\"Soccer field\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:135;a:12:{s:2:\"id\";s:3:\"464\";s:6:\"handle\";s:23:\"Man-tying-his-shoes.jpg\";s:4:\"name\";s:19:\"Man tying his shoes\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1200\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:136;a:12:{s:2:\"id\";s:3:\"463\";s:6:\"handle\";s:10:\"Boxing.jpg\";s:4:\"name\";s:6:\"Boxing\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:137;a:12:{s:2:\"id\";s:3:\"462\";s:6:\"handle\";s:22:\"woman-with-barbell.jpg\";s:4:\"name\";s:18:\"woman with barbell\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:138;a:12:{s:2:\"id\";s:3:\"461\";s:6:\"handle\";s:12:\"Crossfit.jpg\";s:4:\"name\";s:8:\"Crossfit\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:139;a:12:{s:2:\"id\";s:3:\"460\";s:6:\"handle\";s:25:\"Man-and-woman-jogging.jpg\";s:4:\"name\";s:21:\"Man and woman jogging\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:140;a:12:{s:2:\"id\";s:3:\"459\";s:6:\"handle\";s:16:\"Playing-golf.jpg\";s:4:\"name\";s:12:\"Playing golf\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:141;a:12:{s:2:\"id\";s:3:\"458\";s:6:\"handle\";s:18:\"Surfer-in-wave.jpg\";s:4:\"name\";s:14:\"Surfer in wave\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:142;a:12:{s:2:\"id\";s:3:\"457\";s:6:\"handle\";s:25:\"Woman-lifting-barbell.jpg\";s:4:\"name\";s:21:\"Woman lifting barbell\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:143;a:12:{s:2:\"id\";s:3:\"456\";s:6:\"handle\";s:14:\"Stretching.jpg\";s:4:\"name\";s:10:\"Stretching\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:144;a:12:{s:2:\"id\";s:3:\"455\";s:6:\"handle\";s:18:\"Snowboarding-2.jpg\";s:4:\"name\";s:14:\"Snowboarding 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:145;a:12:{s:2:\"id\";s:3:\"454\";s:6:\"handle\";s:11:\"Balance.jpg\";s:4:\"name\";s:7:\"Balance\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1920\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:146;a:12:{s:2:\"id\";s:3:\"453\";s:6:\"handle\";s:19:\"Pool-meditation.jpg\";s:4:\"name\";s:15:\"Pool meditation\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:147;a:12:{s:2:\"id\";s:3:\"452\";s:6:\"handle\";s:18:\"Soccer-stadium.jpg\";s:4:\"name\";s:14:\"Soccer stadium\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:148;a:12:{s:2:\"id\";s:3:\"451\";s:6:\"handle\";s:25:\"Soccer-field-top-view.jpg\";s:4:\"name\";s:21:\"Soccer field top view\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:149;a:12:{s:2:\"id\";s:3:\"450\";s:6:\"handle\";s:14:\"Basketball.jpg\";s:4:\"name\";s:10:\"Basketball\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:150;a:12:{s:2:\"id\";s:3:\"449\";s:6:\"handle\";s:14:\"in-the-fog.jpg\";s:4:\"name\";s:10:\"in the fog\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:151;a:12:{s:2:\"id\";s:3:\"448\";s:6:\"handle\";s:13:\"Handstand.jpg\";s:4:\"name\";s:9:\"Handstand\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1079\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:152;a:12:{s:2:\"id\";s:3:\"447\";s:6:\"handle\";s:11:\"Friends.jpg\";s:4:\"name\";s:7:\"Friends\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:153;a:12:{s:2:\"id\";s:3:\"446\";s:6:\"handle\";s:28:\"Sneakers-on-the-railroad.jpg\";s:4:\"name\";s:24:\"Sneakers on the railroad\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:154;a:12:{s:2:\"id\";s:3:\"445\";s:6:\"handle\";s:23:\"Family-on-the-ocean.jpg\";s:4:\"name\";s:19:\"Family on the ocean\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:155;a:12:{s:2:\"id\";s:3:\"444\";s:6:\"handle\";s:10:\"Sunset.jpg\";s:4:\"name\";s:6:\"Sunset\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:156;a:12:{s:2:\"id\";s:3:\"443\";s:6:\"handle\";s:9:\"Books.jpg\";s:4:\"name\";s:5:\"Books\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1275\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:157;a:12:{s:2:\"id\";s:3:\"442\";s:6:\"handle\";s:25:\"Looking-at-the-window.jpg\";s:4:\"name\";s:21:\"Looking at the window\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:158;a:12:{s:2:\"id\";s:3:\"441\";s:6:\"handle\";s:48:\"woman-standing-near-buildings-during-daytime.jpg\";s:4:\"name\";s:44:\"woman standing near buildings during daytime\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:159;a:12:{s:2:\"id\";s:3:\"440\";s:6:\"handle\";s:12:\"Lollipop.jpg\";s:4:\"name\";s:8:\"Lollipop\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1395\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:160;a:12:{s:2:\"id\";s:3:\"439\";s:6:\"handle\";s:26:\"People-crossing-street.jpg\";s:4:\"name\";s:22:\"People crossing street\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:161;a:12:{s:2:\"id\";s:3:\"438\";s:6:\"handle\";s:24:\"Friends-on-the-shore.jpg\";s:4:\"name\";s:20:\"Friends on the shore\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:162;a:12:{s:2:\"id\";s:3:\"437\";s:6:\"handle\";s:13:\"Coworkers.jpg\";s:4:\"name\";s:9:\"Coworkers\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:163;a:12:{s:2:\"id\";s:3:\"436\";s:6:\"handle\";s:27:\"Hiking-in-the-Dolomites.jpg\";s:4:\"name\";s:23:\"Hiking in the Dolomites\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:164;a:12:{s:2:\"id\";s:3:\"435\";s:6:\"handle\";s:18:\"Successful-man.jpg\";s:4:\"name\";s:14:\"Successful man\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:165;a:12:{s:2:\"id\";s:3:\"434\";s:6:\"handle\";s:23:\"Beautiful-sunny-day.jpg\";s:4:\"name\";s:19:\"Beautiful sunny day\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:166;a:12:{s:2:\"id\";s:3:\"433\";s:6:\"handle\";s:8:\"Guys.jpg\";s:4:\"name\";s:4:\"Guys\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:167;a:12:{s:2:\"id\";s:3:\"432\";s:6:\"handle\";s:19:\"Confetti-Shower.jpg\";s:4:\"name\";s:15:\"Confetti Shower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:168;a:12:{s:2:\"id\";s:3:\"431\";s:6:\"handle\";s:24:\"Sun-was-setting-down.jpg\";s:4:\"name\";s:20:\"Sun was setting down\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:169;a:12:{s:2:\"id\";s:3:\"430\";s:6:\"handle\";s:9:\"Jumps.jpg\";s:4:\"name\";s:5:\"Jumps\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:170;a:12:{s:2:\"id\";s:3:\"429\";s:6:\"handle\";s:23:\"Friends-by-the-fire.jpg\";s:4:\"name\";s:19:\"Friends by the fire\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:171;a:12:{s:2:\"id\";s:3:\"428\";s:6:\"handle\";s:21:\"Under-the-blanket.jpg\";s:4:\"name\";s:17:\"Under the blanket\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1413\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:172;a:12:{s:2:\"id\";s:3:\"427\";s:6:\"handle\";s:18:\"Pretty-in-Pink.jpg\";s:4:\"name\";s:14:\"Pretty in Pink\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1394\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:173;a:12:{s:2:\"id\";s:3:\"426\";s:6:\"handle\";s:31:\"Discussions-at-a-long-table.jpg\";s:4:\"name\";s:27:\"Discussions at a long table\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1268\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:174;a:12:{s:2:\"id\";s:3:\"425\";s:6:\"handle\";s:18:\"Lost-in-Lemons.jpg\";s:4:\"name\";s:14:\"Lost in Lemons\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:175;a:12:{s:2:\"id\";s:3:\"424\";s:6:\"handle\";s:13:\"Team-work.jpg\";s:4:\"name\";s:9:\"Team work\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:176;a:12:{s:2:\"id\";s:3:\"423\";s:6:\"handle\";s:20:\"Romantic-evening.jpg\";s:4:\"name\";s:16:\"Romantic evening\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1263\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:177;a:12:{s:2:\"id\";s:3:\"422\";s:6:\"handle\";s:19:\"Crew-collective.jpg\";s:4:\"name\";s:15:\"Crew collective\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:178;a:12:{s:2:\"id\";s:3:\"421\";s:6:\"handle\";s:8:\"Code.jpg\";s:4:\"name\";s:4:\"Code\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:179;a:12:{s:2:\"id\";s:3:\"420\";s:6:\"handle\";s:48:\"Yellow-ceramic-mug-beside-gray-aluminum-iMac.jpg\";s:4:\"name\";s:44:\"Yellow ceramic mug beside gray aluminum iMac\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:180;a:12:{s:2:\"id\";s:3:\"419\";s:6:\"handle\";s:11:\"My-desk.jpg\";s:4:\"name\";s:7:\"My desk\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1315\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:181;a:12:{s:2:\"id\";s:3:\"418\";s:6:\"handle\";s:17:\"Cooperation-2.jpg\";s:4:\"name\";s:13:\"Cooperation 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:182;a:12:{s:2:\"id\";s:3:\"417\";s:6:\"handle\";s:33:\"MacBook-on-top-of-brown-table.jpg\";s:4:\"name\";s:29:\"MacBook on top of brown table\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:183;a:12:{s:2:\"id\";s:3:\"416\";s:6:\"handle\";s:27:\"Beautiful-working-place.jpg\";s:4:\"name\";s:23:\"Beautiful working place\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:184;a:12:{s:2:\"id\";s:3:\"415\";s:6:\"handle\";s:14:\"Typewriter.jpg\";s:4:\"name\";s:10:\"Typewriter\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:185;a:12:{s:2:\"id\";s:3:\"414\";s:6:\"handle\";s:19:\"White-desk-lamp.jpg\";s:4:\"name\";s:15:\"White desk lamp\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:186;a:12:{s:2:\"id\";s:3:\"413\";s:6:\"handle\";s:18:\"Office-working.jpg\";s:4:\"name\";s:14:\"Office working\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:187;a:12:{s:2:\"id\";s:3:\"412\";s:6:\"handle\";s:36:\"Silver-iMac-on-brown-wooden-desk.jpg\";s:4:\"name\";s:32:\"Silver iMac on brown wooden desk\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1240\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:188;a:12:{s:2:\"id\";s:3:\"411\";s:6:\"handle\";s:23:\"Working-in-progress.jpg\";s:4:\"name\";s:19:\"Working in progress\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:189;a:12:{s:2:\"id\";s:3:\"410\";s:6:\"handle\";s:15:\"Cooperation.jpg\";s:4:\"name\";s:11:\"Cooperation\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:190;a:12:{s:2:\"id\";s:3:\"409\";s:6:\"handle\";s:17:\"Working-place.jpg\";s:4:\"name\";s:13:\"Working place\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:191;a:12:{s:2:\"id\";s:3:\"408\";s:6:\"handle\";s:16:\"Working-desk.jpg\";s:4:\"name\";s:12:\"Working desk\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:192;a:12:{s:2:\"id\";s:3:\"407\";s:6:\"handle\";s:23:\"low-angle-of-forest.jpg\";s:4:\"name\";s:19:\"low angle of forest\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:193;a:12:{s:2:\"id\";s:3:\"406\";s:6:\"handle\";s:23:\"Lake-under-blue-sky.jpg\";s:4:\"name\";s:19:\"Lake under blue sky\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1351\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:194;a:12:{s:2:\"id\";s:3:\"405\";s:6:\"handle\";s:21:\"Blue-starry-night.jpg\";s:4:\"name\";s:17:\"Blue starry night\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:195;a:12:{s:2:\"id\";s:3:\"404\";s:6:\"handle\";s:22:\"Aerial-photography.jpg\";s:4:\"name\";s:18:\"Aerial photography\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:196;a:12:{s:2:\"id\";s:3:\"403\";s:6:\"handle\";s:14:\"Red-clouds.jpg\";s:4:\"name\";s:10:\"Red clouds\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:197;a:12:{s:2:\"id\";s:3:\"402\";s:6:\"handle\";s:14:\"Snow-field.jpg\";s:4:\"name\";s:10:\"Snow field\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1227\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:198;a:12:{s:2:\"id\";s:3:\"401\";s:6:\"handle\";s:13:\"White-sky.jpg\";s:4:\"name\";s:9:\"White sky\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:199;a:12:{s:2:\"id\";s:3:\"400\";s:6:\"handle\";s:24:\"Trees-covered-by-fog.jpg\";s:4:\"name\";s:20:\"Trees covered by fog\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:200;a:12:{s:2:\"id\";s:3:\"399\";s:6:\"handle\";s:26:\"Red-and-white-mushroom.jpg\";s:4:\"name\";s:22:\"Red and white mushroom\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:201;a:12:{s:2:\"id\";s:3:\"398\";s:6:\"handle\";s:24:\"Lake-near-pine-trees.jpg\";s:4:\"name\";s:20:\"Lake near pine trees\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:202;a:12:{s:2:\"id\";s:3:\"397\";s:6:\"handle\";s:35:\"After-a-long-day-of-backpacking.jpg\";s:4:\"name\";s:31:\"After a long day of backpacking\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:203;a:12:{s:2:\"id\";s:3:\"396\";s:6:\"handle\";s:32:\"Mountains-during-golden-hour.jpg\";s:4:\"name\";s:28:\"Mountains during golden hour\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:204;a:12:{s:2:\"id\";s:3:\"395\";s:6:\"handle\";s:27:\"Man-looking-on-mountain.jpg\";s:4:\"name\";s:23:\"Man looking on mountain\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:205;a:12:{s:2:\"id\";s:3:\"394\";s:6:\"handle\";s:19:\"Body-of-water-2.jpg\";s:4:\"name\";s:15:\"Body of water 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:206;a:12:{s:2:\"id\";s:3:\"393\";s:6:\"handle\";s:15:\"Brown-cliff.jpg\";s:4:\"name\";s:11:\"Brown cliff\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:207;a:12:{s:2:\"id\";s:3:\"392\";s:6:\"handle\";s:20:\"Green-foggy-tree.jpg\";s:4:\"name\";s:16:\"Green foggy tree\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1417\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:208;a:12:{s:2:\"id\";s:3:\"391\";s:6:\"handle\";s:32:\"Grayscale-photo-of-mountains.jpg\";s:4:\"name\";s:28:\"Grayscale photo of mountains\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:209;a:12:{s:2:\"id\";s:3:\"390\";s:6:\"handle\";s:19:\"Under-sunny-sky.jpg\";s:4:\"name\";s:15:\"Under sunny sky\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:210;a:12:{s:2:\"id\";s:3:\"389\";s:6:\"handle\";s:16:\"Rock-concert.jpg\";s:4:\"name\";s:12:\"Rock concert\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1443\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:211;a:12:{s:2:\"id\";s:3:\"388\";s:6:\"handle\";s:30:\"Group-of-people-in-concert.jpg\";s:4:\"name\";s:26:\"Group of people in concert\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:212;a:12:{s:2:\"id\";s:3:\"387\";s:6:\"handle\";s:6:\"DJ.jpg\";s:4:\"name\";s:2:\"DJ\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:213;a:12:{s:2:\"id\";s:3:\"386\";s:6:\"handle\";s:56:\"Woman-standing-watching-LED-light-musical-instrument.jpg\";s:4:\"name\";s:52:\"Woman standing watching LED light musical instrument\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:214;a:12:{s:2:\"id\";s:3:\"385\";s:6:\"handle\";s:16:\"Concert-hall.jpg\";s:4:\"name\";s:12:\"Concert hall\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:215;a:12:{s:2:\"id\";s:3:\"384\";s:6:\"handle\";s:18:\"Concert-hall-2.jpg\";s:4:\"name\";s:14:\"Concert hall 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:216;a:12:{s:2:\"id\";s:3:\"383\";s:6:\"handle\";s:29:\"man-playing-upright-piano.jpg\";s:4:\"name\";s:25:\"man playing upright piano\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1340\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:217;a:12:{s:2:\"id\";s:3:\"382\";s:6:\"handle\";s:30:\"person-performing-on-stage.jpg\";s:4:\"name\";s:26:\"person performing on stage\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:218;a:12:{s:2:\"id\";s:3:\"381\";s:6:\"handle\";s:27:\"Brown-string-instrument.jpg\";s:4:\"name\";s:23:\"Brown string instrument\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1272\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:219;a:12:{s:2:\"id\";s:3:\"380\";s:6:\"handle\";s:36:\"silhouette-of-person-with-guitar.jpg\";s:4:\"name\";s:32:\"silhouette of person with guitar\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:220;a:12:{s:2:\"id\";s:3:\"379\";s:6:\"handle\";s:14:\"Party-fans.jpg\";s:4:\"name\";s:10:\"Party fans\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:221;a:12:{s:2:\"id\";s:3:\"378\";s:6:\"handle\";s:24:\"Condenser-microphone.jpg\";s:4:\"name\";s:20:\"Condenser microphone\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:222;a:12:{s:2:\"id\";s:3:\"377\";s:6:\"handle\";s:42:\"Low-angle-photo-of-high-rise-buildings.jpg\";s:4:\"name\";s:38:\"Low angle photo of high rise buildings\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:223;a:12:{s:2:\"id\";s:3:\"376\";s:6:\"handle\";s:23:\"High-rise-buildings.jpg\";s:4:\"name\";s:19:\"High rise buildings\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:224;a:12:{s:2:\"id\";s:3:\"375\";s:6:\"handle\";s:16:\"Cable-bridge.jpg\";s:4:\"name\";s:12:\"Cable bridge\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1272\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:225;a:12:{s:2:\"id\";s:3:\"374\";s:6:\"handle\";s:35:\"Bokeh-effect-from-street-lights.jpg\";s:4:\"name\";s:31:\"Bokeh effect from street lights\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:226;a:12:{s:2:\"id\";s:3:\"373\";s:6:\"handle\";s:18:\"Low-angle-view.jpg\";s:4:\"name\";s:14:\"Low angle view\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:227;a:12:{s:2:\"id\";s:3:\"372\";s:6:\"handle\";s:21:\"Double-decker-bus.jpg\";s:4:\"name\";s:17:\"Double decker bus\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1373\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:228;a:12:{s:2:\"id\";s:3:\"371\";s:6:\"handle\";s:32:\"Buildings-near-body-of-water.jpg\";s:4:\"name\";s:28:\"Buildings near body of water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1370\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:229;a:12:{s:2:\"id\";s:3:\"370\";s:6:\"handle\";s:18:\"Satellite-view.jpg\";s:4:\"name\";s:14:\"Satellite view\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:230;a:12:{s:2:\"id\";s:3:\"369\";s:6:\"handle\";s:14:\"Twin-Tower.jpg\";s:4:\"name\";s:10:\"Twin Tower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:231;a:12:{s:2:\"id\";s:3:\"368\";s:6:\"handle\";s:22:\"Two-person-walking.jpg\";s:4:\"name\";s:18:\"Two person walking\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1345\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:232;a:12:{s:2:\"id\";s:3:\"367\";s:6:\"handle\";s:15:\"Sears-Tower.jpg\";s:4:\"name\";s:11:\"Sears Tower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:233;a:12:{s:2:\"id\";s:3:\"366\";s:6:\"handle\";s:19:\"Night-cityscape.jpg\";s:4:\"name\";s:15:\"Night cityscape\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:234;a:12:{s:2:\"id\";s:3:\"365\";s:6:\"handle\";s:25:\"Empire-State-Building.jpg\";s:4:\"name\";s:21:\"Empire State Building\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:235;a:12:{s:2:\"id\";s:3:\"364\";s:6:\"handle\";s:9:\"Paris.jpg\";s:4:\"name\";s:5:\"Paris\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:236;a:12:{s:2:\"id\";s:3:\"363\";s:6:\"handle\";s:31:\"Building-during-golden-hour.jpg\";s:4:\"name\";s:27:\"Building during golden hour\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1288\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:237;a:12:{s:2:\"id\";s:3:\"362\";s:6:\"handle\";s:21:\"Afternoon-skyline.jpg\";s:4:\"name\";s:17:\"Afternoon skyline\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:238;a:12:{s:2:\"id\";s:3:\"361\";s:6:\"handle\";s:22:\"Concrete-buildings.jpg\";s:4:\"name\";s:18:\"Concrete buildings\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:239;a:12:{s:2:\"id\";s:3:\"360\";s:6:\"handle\";s:26:\"Architectural-building.jpg\";s:4:\"name\";s:22:\"Architectural building\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1382\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:240;a:12:{s:2:\"id\";s:3:\"359\";s:6:\"handle\";s:23:\"Skyline-photography.jpg\";s:4:\"name\";s:19:\"Skyline photography\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:241;a:12:{s:2:\"id\";s:3:\"358\";s:6:\"handle\";s:38:\"People-standing-on-pedestrian-lane.jpg\";s:4:\"name\";s:34:\"People standing on pedestrian lane\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1154\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:242;a:12:{s:2:\"id\";s:3:\"357\";s:6:\"handle\";s:16:\"Burj-Khalifa.jpg\";s:4:\"name\";s:12:\"Burj Khalifa\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:243;a:12:{s:2:\"id\";s:3:\"356\";s:6:\"handle\";s:13:\"Skycraper.jpg\";s:4:\"name\";s:9:\"Skycraper\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:244;a:12:{s:2:\"id\";s:3:\"355\";s:6:\"handle\";s:14:\"Gray-tower.jpg\";s:4:\"name\";s:10:\"Gray tower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1433\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:245;a:12:{s:2:\"id\";s:3:\"354\";s:6:\"handle\";s:28:\"One-fine-day-in-Maldives.jpg\";s:4:\"name\";s:24:\"One fine day in Maldives\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1116\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:246;a:12:{s:2:\"id\";s:3:\"353\";s:6:\"handle\";s:25:\"Boat-on-body-of-water.jpg\";s:4:\"name\";s:21:\"Boat on body of water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:247;a:12:{s:2:\"id\";s:3:\"352\";s:6:\"handle\";s:33:\"Aerial-photo-of-body-of-water.jpg\";s:4:\"name\";s:29:\"Aerial photo of body of water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1078\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:248;a:12:{s:2:\"id\";s:3:\"351\";s:6:\"handle\";s:31:\"Assorted-color-beach-houses.jpg\";s:4:\"name\";s:27:\"Assorted color beach houses\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1135\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:249;a:12:{s:2:\"id\";s:3:\"350\";s:6:\"handle\";s:36:\"Woman-leaning-on-tree-near-beach.jpg\";s:4:\"name\";s:32:\"Woman leaning on tree near beach\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1559\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:250;a:12:{s:2:\"id\";s:3:\"349\";s:6:\"handle\";s:17:\"Body-of-water.jpg\";s:4:\"name\";s:13:\"Body of water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1269\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:251;a:12:{s:2:\"id\";s:3:\"348\";s:6:\"handle\";s:17:\"People-on-sea.jpg\";s:4:\"name\";s:13:\"People on sea\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:252;a:12:{s:2:\"id\";s:3:\"347\";s:6:\"handle\";s:31:\"Man-sitting-beside-of-woman.jpg\";s:4:\"name\";s:27:\"Man sitting beside of woman\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:253;a:12:{s:2:\"id\";s:3:\"346\";s:6:\"handle\";s:22:\"woman-in-the-water.jpg\";s:4:\"name\";s:18:\"woman in the water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:254;a:12:{s:2:\"id\";s:3:\"345\";s:6:\"handle\";s:39:\"Brown-stone-near-sea-at-golden-hour.jpg\";s:4:\"name\";s:35:\"Brown stone near sea at golden hour\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:255;a:12:{s:2:\"id\";s:3:\"344\";s:6:\"handle\";s:18:\"Birds-eye-view.jpg\";s:4:\"name\";s:14:\"Birds eye view\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1079\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:256;a:12:{s:2:\"id\";s:3:\"343\";s:6:\"handle\";s:18:\"Empty-seashore.jpg\";s:4:\"name\";s:14:\"Empty seashore\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1365\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:257;a:12:{s:2:\"id\";s:3:\"342\";s:6:\"handle\";s:31:\"Seashore-during-golden-hour.jpg\";s:4:\"name\";s:27:\"Seashore during golden hour\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1439\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:258;a:12:{s:2:\"id\";s:3:\"341\";s:6:\"handle\";s:16:\"Coconut-tree.jpg\";s:4:\"name\";s:12:\"Coconut tree\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:259;a:12:{s:2:\"id\";s:3:\"340\";s:6:\"handle\";s:37:\"Aerial-photography-of-beach-shore.jpg\";s:4:\"name\";s:33:\"Aerial photography of beach shore\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1439\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:260;a:12:{s:2:\"id\";s:3:\"197\";s:6:\"handle\";s:17:\"relax_hammock.jpg\";s:4:\"name\";s:13:\"Relax Hammock\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:261;a:12:{s:2:\"id\";s:3:\"196\";s:6:\"handle\";s:16:\"beach_houses.jpg\";s:4:\"name\";s:12:\"Beach Houses\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:262;a:12:{s:2:\"id\";s:3:\"195\";s:6:\"handle\";s:17:\"forest_road_2.jpg\";s:4:\"name\";s:13:\"Forest Road 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:263;a:12:{s:2:\"id\";s:3:\"194\";s:6:\"handle\";s:14:\"clean_desk.jpg\";s:4:\"name\";s:10:\"Clean Desk\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:264;a:12:{s:2:\"id\";s:3:\"193\";s:6:\"handle\";s:19:\"mountain_view_6.jpg\";s:4:\"name\";s:15:\"Mountain View 6\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1249\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:265;a:12:{s:2:\"id\";s:3:\"192\";s:6:\"handle\";s:14:\"corn_field.jpg\";s:4:\"name\";s:10:\"Corn Field\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1320\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:266;a:12:{s:2:\"id\";s:3:\"191\";s:6:\"handle\";s:21:\"stylish_apartment.jpg\";s:4:\"name\";s:17:\"Stylish Apartment\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:267;a:12:{s:2:\"id\";s:3:\"190\";s:6:\"handle\";s:24:\"hipster_coffee_house.jpg\";s:4:\"name\";s:20:\"Hipster Coffee House\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:268;a:12:{s:2:\"id\";s:3:\"189\";s:6:\"handle\";s:16:\"blurry_beach.jpg\";s:4:\"name\";s:12:\"Blurry Beach\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:269;a:12:{s:2:\"id\";s:3:\"186\";s:6:\"handle\";s:17:\"greens_street.jpg\";s:4:\"name\";s:13:\"Greens Street\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:270;a:12:{s:2:\"id\";s:3:\"185\";s:6:\"handle\";s:10:\"desert.jpg\";s:4:\"name\";s:6:\"Desert\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:271;a:12:{s:2:\"id\";s:3:\"184\";s:6:\"handle\";s:19:\"mountain_view_5.jpg\";s:4:\"name\";s:15:\"Mountain View 5\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:272;a:12:{s:2:\"id\";s:3:\"183\";s:6:\"handle\";s:10:\"laptop.jpg\";s:4:\"name\";s:6:\"Laptop\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1391\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:273;a:12:{s:2:\"id\";s:3:\"182\";s:6:\"handle\";s:16:\"grand_canyon.jpg\";s:4:\"name\";s:12:\"Grand Canyon\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1287\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:274;a:12:{s:2:\"id\";s:3:\"181\";s:6:\"handle\";s:20:\"landscape_clouds.jpg\";s:4:\"name\";s:16:\"Landscape Clouds\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1272\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:275;a:12:{s:2:\"id\";s:3:\"180\";s:6:\"handle\";s:17:\"highway_night.jpg\";s:4:\"name\";s:13:\"Highway Night\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:276;a:12:{s:2:\"id\";s:3:\"179\";s:6:\"handle\";s:15:\"beach_water.jpg\";s:4:\"name\";s:11:\"Beach Water\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:277;a:12:{s:2:\"id\";s:3:\"177\";s:6:\"handle\";s:15:\"woman_beach.jpg\";s:4:\"name\";s:11:\"Woman Beach\";s:4:\"tags\";a:4:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:3;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:278;a:12:{s:2:\"id\";s:3:\"175\";s:6:\"handle\";s:12:\"cool_guy.jpg\";s:4:\"name\";s:8:\"Cool Guy\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:279;a:12:{s:2:\"id\";s:3:\"174\";s:6:\"handle\";s:13:\"beach_sea.jpg\";s:4:\"name\";s:9:\"Beach Sea\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:280;a:12:{s:2:\"id\";s:3:\"173\";s:6:\"handle\";s:17:\"bridge_clouds.jpg\";s:4:\"name\";s:13:\"Bridge Clouds\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:281;a:12:{s:2:\"id\";s:3:\"116\";s:6:\"handle\";s:19:\"mountain_view_2.jpg\";s:4:\"name\";s:15:\"Mountain View 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1275\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:282;a:12:{s:2:\"id\";s:3:\"115\";s:6:\"handle\";s:16:\"desert_trees.jpg\";s:4:\"name\";s:12:\"Desert Trees\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1275\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:283;a:12:{s:2:\"id\";s:3:\"114\";s:6:\"handle\";s:20:\"explore_moutains.jpg\";s:4:\"name\";s:17:\"Explore Mountains\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:284;a:12:{s:2:\"id\";s:3:\"113\";s:6:\"handle\";s:19:\"night_skyline_2.jpg\";s:4:\"name\";s:15:\"Night Skyline 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:285;a:12:{s:2:\"id\";s:3:\"112\";s:6:\"handle\";s:15:\"cliff_ocean.jpg\";s:4:\"name\";s:11:\"Cliff Ocean\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:286;a:12:{s:2:\"id\";s:3:\"111\";s:6:\"handle\";s:14:\"city_smoke.jpg\";s:4:\"name\";s:10:\"City Smoke\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:287;a:12:{s:2:\"id\";s:3:\"110\";s:6:\"handle\";s:16:\"surfer_beach.jpg\";s:4:\"name\";s:12:\"Surfer Beach\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:288;a:12:{s:2:\"id\";s:3:\"109\";s:6:\"handle\";s:13:\"sky_night.jpg\";s:4:\"name\";s:9:\"Sky Night\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:289;a:12:{s:2:\"id\";s:3:\"108\";s:6:\"handle\";s:15:\"palm_sunset.jpg\";s:4:\"name\";s:11:\"Palm Sunset\";s:4:\"tags\";a:4:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}i:3;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1372\";s:6:\"height\";s:4:\"1920\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:290;a:12:{s:2:\"id\";s:3:\"107\";s:6:\"handle\";s:18:\"concert_people.jpg\";s:4:\"name\";s:14:\"Concert People\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:291;a:12:{s:2:\"id\";s:3:\"106\";s:6:\"handle\";s:15:\"forest_road.jpg\";s:4:\"name\";s:11:\"Forest Road\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:292;a:12:{s:2:\"id\";s:3:\"105\";s:6:\"handle\";s:15:\"beach_ocean.jpg\";s:4:\"name\";s:11:\"Beach Ocean\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:293;a:12:{s:2:\"id\";s:3:\"104\";s:6:\"handle\";s:18:\"mountain_night.jpg\";s:4:\"name\";s:14:\"Mountain Night\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:294;a:12:{s:2:\"id\";s:3:\"103\";s:6:\"handle\";s:19:\"ocean_mountains.jpg\";s:4:\"name\";s:15:\"Ocean Mountains\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:295;a:12:{s:2:\"id\";s:3:\"102\";s:6:\"handle\";s:10:\"forest.jpg\";s:4:\"name\";s:6:\"Forest\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:296;a:12:{s:2:\"id\";s:3:\"101\";s:6:\"handle\";s:16:\"ocean_stones.jpg\";s:4:\"name\";s:12:\"Ocean Stones\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:297;a:12:{s:2:\"id\";s:3:\"100\";s:6:\"handle\";s:16:\"country_road.jpg\";s:4:\"name\";s:12:\"Country Road\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:298;a:12:{s:2:\"id\";s:2:\"99\";s:6:\"handle\";s:9:\"beach.jpg\";s:4:\"name\";s:5:\"Beach\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:299;a:12:{s:2:\"id\";s:2:\"98\";s:6:\"handle\";s:16:\"city_skyline.jpg\";s:4:\"name\";s:12:\"City Skyline\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:300;a:12:{s:2:\"id\";s:2:\"97\";s:6:\"handle\";s:17:\"night_skyline.jpg\";s:4:\"name\";s:13:\"Night Skyline\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}i:2;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:301;a:12:{s:2:\"id\";s:2:\"96\";s:6:\"handle\";s:14:\"city_river.jpg\";s:4:\"name\";s:10:\"City River\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:302;a:12:{s:2:\"id\";s:2:\"95\";s:6:\"handle\";s:19:\"mountain_view_3.jpg\";s:4:\"name\";s:15:\"Mountain View 3\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:303;a:12:{s:2:\"id\";s:2:\"94\";s:6:\"handle\";s:14:\"misty_farm.jpg\";s:4:\"name\";s:10:\"Misty Farm\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:304;a:12:{s:2:\"id\";s:2:\"93\";s:6:\"handle\";s:17:\"mountain_path.jpg\";s:4:\"name\";s:13:\"Mountain Path\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:305;a:12:{s:2:\"id\";s:2:\"92\";s:6:\"handle\";s:19:\"night_skyline_3.jpg\";s:4:\"name\";s:15:\"Night Skyline 3\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:306;a:12:{s:2:\"id\";s:2:\"91\";s:6:\"handle\";s:17:\"mountain_view.jpg\";s:4:\"name\";s:13:\"Mountain View\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1160\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:307;a:12:{s:2:\"id\";s:2:\"90\";s:6:\"handle\";s:19:\"rocky_landscape.jpg\";s:4:\"name\";s:15:\"Rocky Landscape\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:308;a:12:{s:2:\"id\";s:2:\"89\";s:6:\"handle\";s:19:\"mountain_view_4.jpg\";s:4:\"name\";s:15:\"Mountain View 4\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1203\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:309;a:13:{s:2:\"id\";s:3:\"529\";s:6:\"handle\";s:13:\"Fitness-4.jpg\";s:5:\"video\";s:13:\"Fitness-4.mp4\";s:4:\"name\";s:10:\"Fitness 4 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:310;a:13:{s:2:\"id\";s:3:\"528\";s:6:\"handle\";s:13:\"Fitness-3.jpg\";s:5:\"video\";s:13:\"Fitness-3.mp4\";s:4:\"name\";s:10:\"Fitness 3 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:311;a:13:{s:2:\"id\";s:3:\"527\";s:6:\"handle\";s:9:\"Chess.jpg\";s:5:\"video\";s:9:\"Chess.mp4\";s:4:\"name\";s:6:\"Chess \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:312;a:13:{s:2:\"id\";s:3:\"526\";s:6:\"handle\";s:13:\"Fitness-2.jpg\";s:5:\"video\";s:13:\"Fitness-2.mp4\";s:4:\"name\";s:10:\"Fitness 2 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:313;a:13:{s:2:\"id\";s:3:\"525\";s:6:\"handle\";s:11:\"Fitness.jpg\";s:5:\"video\";s:11:\"Fitness.mp4\";s:4:\"name\";s:8:\"Fitness \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:314;a:13:{s:2:\"id\";s:3:\"524\";s:6:\"handle\";s:9:\"Earth.jpg\";s:5:\"video\";s:9:\"Earth.mp4\";s:4:\"name\";s:6:\"Earth \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:44:06\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:315;a:13:{s:2:\"id\";s:3:\"523\";s:6:\"handle\";s:11:\"Space-2.jpg\";s:5:\"video\";s:11:\"Space-2.mp4\";s:4:\"name\";s:8:\"Space 2 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1440\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:44:06\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:316;a:13:{s:2:\"id\";s:3:\"522\";s:6:\"handle\";s:13:\"Asteroids.jpg\";s:5:\"video\";s:13:\"Asteroids.mp4\";s:4:\"name\";s:10:\"Asteroids \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:44:06\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:317;a:13:{s:2:\"id\";s:3:\"521\";s:6:\"handle\";s:9:\"Space.jpg\";s:5:\"video\";s:9:\"Space.mp4\";s:4:\"name\";s:6:\"Space \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:44:06\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:318;a:13:{s:2:\"id\";s:3:\"520\";s:6:\"handle\";s:10:\"People.jpg\";s:5:\"video\";s:10:\"People.mp4\";s:4:\"name\";s:7:\"People \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:319;a:13:{s:2:\"id\";s:3:\"519\";s:6:\"handle\";s:11:\"Walking.jpg\";s:5:\"video\";s:11:\"Walking.mp4\";s:4:\"name\";s:8:\"Walking \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:320;a:13:{s:2:\"id\";s:3:\"518\";s:6:\"handle\";s:19:\"Double-Exposure.jpg\";s:5:\"video\";s:19:\"Double-Exposure.mp4\";s:4:\"name\";s:16:\"Double Exposure \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:321;a:13:{s:2:\"id\";s:3:\"517\";s:6:\"handle\";s:8:\"Girl.jpg\";s:5:\"video\";s:8:\"Girl.mp4\";s:4:\"name\";s:5:\"Girl \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1088\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:322;a:13:{s:2:\"id\";s:3:\"516\";s:6:\"handle\";s:17:\"Bengal-Lights.jpg\";s:5:\"video\";s:17:\"Bengal-Lights.mp4\";s:4:\"name\";s:14:\"Bengal Lights \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:323;a:13:{s:2:\"id\";s:3:\"515\";s:6:\"handle\";s:13:\"Swiping-2.jpg\";s:5:\"video\";s:13:\"Swiping-2.mp4\";s:4:\"name\";s:10:\"Swiping 2 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:324;a:13:{s:2:\"id\";s:3:\"514\";s:6:\"handle\";s:11:\"Mock-Up.jpg\";s:5:\"video\";s:11:\"Mock-Up.mp4\";s:4:\"name\";s:8:\"Mock Up \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:325;a:13:{s:2:\"id\";s:3:\"513\";s:6:\"handle\";s:13:\"Countdown.jpg\";s:5:\"video\";s:13:\"Countdown.mp4\";s:4:\"name\";s:10:\"Countdown \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:326;a:13:{s:2:\"id\";s:3:\"512\";s:6:\"handle\";s:18:\"Wall-Sketching.jpg\";s:5:\"video\";s:18:\"Wall-Sketching.mp4\";s:4:\"name\";s:15:\"Wall Sketching \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:327;a:13:{s:2:\"id\";s:3:\"511\";s:6:\"handle\";s:26:\"Typing-on-the-keyboard.jpg\";s:5:\"video\";s:26:\"Typing-on-the-keyboard.mp4\";s:4:\"name\";s:23:\"Typing on the keyboard \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:328;a:13:{s:2:\"id\";s:3:\"510\";s:6:\"handle\";s:11:\"Meeting.jpg\";s:5:\"video\";s:11:\"Meeting.mp4\";s:4:\"name\";s:8:\"Meeting \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:329;a:13:{s:2:\"id\";s:3:\"509\";s:6:\"handle\";s:11:\"Swiping.jpg\";s:5:\"video\";s:11:\"Swiping.mp4\";s:4:\"name\";s:8:\"Swiping \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:330;a:13:{s:2:\"id\";s:3:\"508\";s:6:\"handle\";s:9:\"Alarm.jpg\";s:5:\"video\";s:9:\"Alarm.mp4\";s:4:\"name\";s:6:\"Alarm \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1013\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:331;a:13:{s:2:\"id\";s:3:\"507\";s:6:\"handle\";s:13:\"Hey-World.jpg\";s:5:\"video\";s:13:\"Hey-World.mp4\";s:4:\"name\";s:10:\"Hey World \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:332;a:13:{s:2:\"id\";s:3:\"506\";s:6:\"handle\";s:28:\"Typing-on-the-keyboard-2.jpg\";s:5:\"video\";s:28:\"Typing-on-the-keyboard-2.mp4\";s:4:\"name\";s:25:\"Typing on the keyboard 2 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:333;a:13:{s:2:\"id\";s:3:\"505\";s:6:\"handle\";s:10:\"Valley.jpg\";s:5:\"video\";s:10:\"Valley.mp4\";s:4:\"name\";s:7:\"Valley \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:35:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:334;a:13:{s:2:\"id\";s:3:\"504\";s:6:\"handle\";s:9:\"Stars.jpg\";s:5:\"video\";s:9:\"Stars.mp4\";s:4:\"name\";s:6:\"Stars \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:35:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:335;a:13:{s:2:\"id\";s:3:\"503\";s:6:\"handle\";s:21:\"Car-in-the-forest.jpg\";s:5:\"video\";s:21:\"Car-in-the-forest.mp4\";s:4:\"name\";s:18:\"Car in the forest \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1012\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:35:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:336;a:13:{s:2:\"id\";s:3:\"502\";s:6:\"handle\";s:15:\"Aerial-Shot.jpg\";s:5:\"video\";s:15:\"Aerial-Shot.mp4\";s:4:\"name\";s:12:\"Aerial Shot \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:35:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:337;a:13:{s:2:\"id\";s:3:\"501\";s:6:\"handle\";s:14:\"Disco-Ball.jpg\";s:5:\"video\";s:14:\"Disco-Ball.mp4\";s:4:\"name\";s:11:\"Disco Ball \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:338;a:13:{s:2:\"id\";s:3:\"500\";s:6:\"handle\";s:22:\"Man-Playing-Guitar.jpg\";s:5:\"video\";s:22:\"Man-Playing-Guitar.mp4\";s:4:\"name\";s:19:\"Man Playing Guitar \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:339;a:13:{s:2:\"id\";s:3:\"499\";s:6:\"handle\";s:14:\"Live-Music.jpg\";s:5:\"video\";s:14:\"Live-Music.mp4\";s:4:\"name\";s:11:\"Live Music \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:340;a:13:{s:2:\"id\";s:3:\"498\";s:6:\"handle\";s:12:\"Cheer-Up.jpg\";s:5:\"video\";s:12:\"Cheer-Up.mp4\";s:4:\"name\";s:9:\"Cheer Up \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:341;a:13:{s:2:\"id\";s:3:\"497\";s:6:\"handle\";s:14:\"Night-club.jpg\";s:5:\"video\";s:14:\"Night-club.mp4\";s:4:\"name\";s:11:\"Night club \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:342;a:13:{s:2:\"id\";s:3:\"496\";s:6:\"handle\";s:17:\"Cup-Of-Coffee.jpg\";s:5:\"video\";s:17:\"Cup-Of-Coffee.mp4\";s:4:\"name\";s:14:\"Cup Of Coffee \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:343;a:13:{s:2:\"id\";s:3:\"495\";s:6:\"handle\";s:7:\"Pot.jpg\";s:5:\"video\";s:7:\"Pot.mp4\";s:4:\"name\";s:4:\"Pot \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:344;a:13:{s:2:\"id\";s:3:\"494\";s:6:\"handle\";s:11:\"Grill-2.jpg\";s:5:\"video\";s:11:\"Grill-2.mp4\";s:4:\"name\";s:8:\"Grill 2 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:345;a:13:{s:2:\"id\";s:3:\"493\";s:6:\"handle\";s:13:\"Rice-Bowl.jpg\";s:5:\"video\";s:13:\"Rice-Bowl.mp4\";s:4:\"name\";s:10:\"Rice Bowl \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1010\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:346;a:13:{s:2:\"id\";s:3:\"492\";s:6:\"handle\";s:9:\"Grill.jpg\";s:5:\"video\";s:9:\"Grill.mp4\";s:4:\"name\";s:6:\"Grill \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:347;a:13:{s:2:\"id\";s:3:\"491\";s:6:\"handle\";s:9:\"Water.jpg\";s:5:\"video\";s:9:\"Water.mp4\";s:4:\"name\";s:6:\"Water \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:24:15\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:348;a:13:{s:2:\"id\";s:3:\"490\";s:6:\"handle\";s:17:\"Feet-and-Sand.jpg\";s:5:\"video\";s:17:\"Feet-and-Sand.mp4\";s:4:\"name\";s:14:\"Feet and Sand \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:24:15\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:349;a:13:{s:2:\"id\";s:3:\"489\";s:6:\"handle\";s:9:\"Ocean.jpg\";s:5:\"video\";s:9:\"Ocean.mp4\";s:4:\"name\";s:6:\"Ocean \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:24:15\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:350;a:13:{s:2:\"id\";s:3:\"488\";s:6:\"handle\";s:9:\"Waves.jpg\";s:5:\"video\";s:9:\"Waves.mp4\";s:4:\"name\";s:6:\"Waves \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:24:15\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:351;a:13:{s:2:\"id\";s:3:\"487\";s:6:\"handle\";s:10:\"Hearts.jpg\";s:5:\"video\";s:10:\"Hearts.mp4\";s:4:\"name\";s:7:\"Hearts \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:352;a:13:{s:2:\"id\";s:3:\"486\";s:6:\"handle\";s:12:\"Octagons.jpg\";s:5:\"video\";s:12:\"Octagons.mp4\";s:4:\"name\";s:9:\"Octagons \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:353;a:13:{s:2:\"id\";s:3:\"485\";s:6:\"handle\";s:11:\"Squares.jpg\";s:5:\"video\";s:11:\"Squares.mp4\";s:4:\"name\";s:8:\"Squares \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:354;a:13:{s:2:\"id\";s:3:\"484\";s:6:\"handle\";s:12:\"Pink-ink.jpg\";s:5:\"video\";s:12:\"Pink-ink.mp4\";s:4:\"name\";s:9:\"Pink ink \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:355;a:13:{s:2:\"id\";s:3:\"483\";s:6:\"handle\";s:22:\"Blurred-Background.jpg\";s:5:\"video\";s:22:\"Blurred-Background.mp4\";s:4:\"name\";s:19:\"Blurred Background \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:356;a:13:{s:2:\"id\";s:3:\"482\";s:6:\"handle\";s:20:\"Blinking-bubbles.jpg\";s:5:\"video\";s:20:\"Blinking-bubbles.mp4\";s:4:\"name\";s:17:\"Blinking bubbles \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:357;a:13:{s:2:\"id\";s:3:\"481\";s:6:\"handle\";s:13:\"Fireworks.jpg\";s:5:\"video\";s:13:\"Fireworks.mp4\";s:4:\"name\";s:10:\"Fireworks \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:358;a:13:{s:2:\"id\";s:3:\"480\";s:6:\"handle\";s:12:\"Dark-ink.jpg\";s:5:\"video\";s:12:\"Dark-ink.mp4\";s:4:\"name\";s:9:\"Dark ink \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:359;a:13:{s:2:\"id\";s:3:\"238\";s:6:\"handle\";s:12:\"Mt_Baker.jpg\";s:5:\"video\";s:12:\"Mt_Baker.mp4\";s:4:\"name\";s:9:\"Mt Baker \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:360;a:13:{s:2:\"id\";s:3:\"237\";s:6:\"handle\";s:16:\"Two-Swimmers.jpg\";s:5:\"video\";s:16:\"Two-Swimmers.mp4\";s:4:\"name\";s:13:\"Two Swimmers \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:361;a:13:{s:2:\"id\";s:3:\"236\";s:6:\"handle\";s:14:\"Boats_Maze.jpg\";s:5:\"video\";s:14:\"Boats_Maze.mp4\";s:4:\"name\";s:11:\"Boats Maze \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:362;a:13:{s:2:\"id\";s:3:\"235\";s:6:\"handle\";s:18:\"Candolim-Beach.jpg\";s:5:\"video\";s:18:\"Candolim-Beach.mp4\";s:4:\"name\";s:15:\"Candolim Beach \";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:363;a:13:{s:2:\"id\";s:3:\"234\";s:6:\"handle\";s:17:\"Working-Space.jpg\";s:5:\"video\";s:17:\"Working-Space.mp4\";s:4:\"name\";s:14:\"Working Space \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:364;a:13:{s:2:\"id\";s:3:\"233\";s:6:\"handle\";s:9:\"Wavez.jpg\";s:5:\"video\";s:9:\"Wavez.mp4\";s:4:\"name\";s:6:\"Wavez \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:365;a:13:{s:2:\"id\";s:3:\"232\";s:6:\"handle\";s:17:\"Coconut-Grove.jpg\";s:5:\"video\";s:17:\"Coconut-Grove.mp4\";s:4:\"name\";s:14:\"Coconut Grove \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:366;a:13:{s:2:\"id\";s:3:\"231\";s:6:\"handle\";s:19:\"Very-Open-Space.jpg\";s:5:\"video\";s:19:\"Very-Open-Space.mp4\";s:4:\"name\";s:16:\"Very Open Space \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:367;a:13:{s:2:\"id\";s:3:\"230\";s:6:\"handle\";s:14:\"Office-Day.jpg\";s:5:\"video\";s:14:\"Office-Day.mp4\";s:4:\"name\";s:11:\"Office Day \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:368;a:13:{s:2:\"id\";s:3:\"229\";s:6:\"handle\";s:12:\"The-Hill.jpg\";s:5:\"video\";s:12:\"The-Hill.mp4\";s:4:\"name\";s:9:\"The Hill \";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:369;a:13:{s:2:\"id\";s:3:\"339\";s:6:\"handle\";s:19:\"best_price_dark.jpg\";s:5:\"video\";s:19:\"best_price_dark.mp4\";s:4:\"name\";s:15:\"best_price_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"best_price_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-26 09:24:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:370;a:13:{s:2:\"id\";s:3:\"337\";s:6:\"handle\";s:27:\"limited_time_offer_dark.jpg\";s:5:\"video\";s:27:\"limited_time_offer_dark.mp4\";s:4:\"name\";s:23:\"limited_time_offer_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:23:\"limited_time_offer_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-26 09:24:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:371;a:13:{s:2:\"id\";s:3:\"336\";s:6:\"handle\";s:26:\"slider_revolution_dark.jpg\";s:5:\"video\";s:26:\"slider_revolution_dark.mp4\";s:4:\"name\";s:22:\"slider_revolution_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:22:\"slider_revolution_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-26 09:24:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:372;a:13:{s:2:\"id\";s:3:\"335\";s:6:\"handle\";s:19:\"mick_brown_dark.jpg\";s:5:\"video\";s:19:\"mick_brown_dark.mp4\";s:4:\"name\";s:15:\"mick_brown_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"mick_brown_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-26 09:24:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:373;a:13:{s:2:\"id\";s:3:\"334\";s:6:\"handle\";s:14:\"sales_dark.jpg\";s:5:\"video\";s:14:\"sales_dark.mp4\";s:4:\"name\";s:10:\"sales_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:10:\"sales_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:374;a:13:{s:2:\"id\";s:3:\"333\";s:6:\"handle\";s:21:\"robert_smith_dark.jpg\";s:5:\"video\";s:21:\"robert_smith_dark.mp4\";s:4:\"name\";s:17:\"robert_smith_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"robert_smith_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:375;a:13:{s:2:\"id\";s:3:\"332\";s:6:\"handle\";s:21:\"product_name_dark.jpg\";s:5:\"video\";s:21:\"product_name_dark.mp4\";s:4:\"name\";s:17:\"product_name_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"product_name_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:376;a:13:{s:2:\"id\";s:3:\"331\";s:6:\"handle\";s:21:\"high_quality_dark.jpg\";s:5:\"video\";s:21:\"high_quality_dark.mp4\";s:4:\"name\";s:17:\"high_quality_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"high_quality_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:377;a:13:{s:2:\"id\";s:3:\"330\";s:6:\"handle\";s:24:\"robert_johnson_light.jpg\";s:5:\"video\";s:24:\"robert_johnson_light.mp4\";s:4:\"name\";s:20:\"robert_johnson_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:20:\"robert_johnson_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:378;a:13:{s:2:\"id\";s:3:\"329\";s:6:\"handle\";s:21:\"jake_collins_dark.jpg\";s:5:\"video\";s:21:\"jake_collins_dark.mp4\";s:4:\"name\";s:17:\"jake_collins_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"jake_collins_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:379;a:13:{s:2:\"id\";s:3:\"328\";s:6:\"handle\";s:22:\"daniele_wood_light.jpg\";s:5:\"video\";s:22:\"daniele_wood_light.mp4\";s:4:\"name\";s:18:\"daniele_wood_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"daniele_wood_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:31:30\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:380;a:13:{s:2:\"id\";s:3:\"327\";s:6:\"handle\";s:23:\"michael_blake_light.jpg\";s:5:\"video\";s:23:\"michael_blake_light.mp4\";s:4:\"name\";s:19:\"michael_blake_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:19:\"michael_blake_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:381;a:13:{s:2:\"id\";s:3:\"326\";s:6:\"handle\";s:22:\"product_name_light.jpg\";s:5:\"video\";s:22:\"product_name_light.mp4\";s:4:\"name\";s:18:\"product_name_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"product_name_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:382;a:13:{s:2:\"id\";s:3:\"325\";s:6:\"handle\";s:24:\"rebecca_cooper_light.jpg\";s:5:\"video\";s:24:\"rebecca_cooper_light.mp4\";s:4:\"name\";s:20:\"rebecca_cooper_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:20:\"rebecca_cooper_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:383;a:13:{s:2:\"id\";s:3:\"324\";s:6:\"handle\";s:28:\"limited_time_offer_light.jpg\";s:5:\"video\";s:28:\"limited_time_offer_light.mp4\";s:4:\"name\";s:24:\"limited_time_offer_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:24:\"limited_time_offer_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:384;a:13:{s:2:\"id\";s:3:\"322\";s:6:\"handle\";s:22:\"jake_michael_light.jpg\";s:5:\"video\";s:22:\"jake_michael_light.mp4\";s:4:\"name\";s:18:\"jake_michael_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"jake_michael_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:385;a:13:{s:2:\"id\";s:3:\"321\";s:6:\"handle\";s:23:\"colin_johnson_light.jpg\";s:5:\"video\";s:23:\"colin_johnson_light.mp4\";s:4:\"name\";s:19:\"colin_johnson_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:19:\"colin_johnson_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:386;a:13:{s:2:\"id\";s:3:\"320\";s:6:\"handle\";s:21:\"colin_morris_dark.jpg\";s:5:\"video\";s:21:\"colin_morris_dark.mp4\";s:4:\"name\";s:17:\"colin_morris_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"colin_morris_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:387;a:13:{s:2:\"id\";s:3:\"319\";s:6:\"handle\";s:22:\"justin_cooper_dark.jpg\";s:5:\"video\";s:22:\"justin_cooper_dark.mp4\";s:4:\"name\";s:18:\"justin_cooper_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:18:\"justin_cooper_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:388;a:13:{s:2:\"id\";s:3:\"318\";s:6:\"handle\";s:21:\"james-dodson_dark.jpg\";s:5:\"video\";s:21:\"james-dodson_dark.mp4\";s:4:\"name\";s:17:\"james-dodson_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"james-dodson_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:389;a:13:{s:2:\"id\";s:3:\"317\";s:6:\"handle\";s:23:\"robert_sanders_dark.jpg\";s:5:\"video\";s:23:\"robert_sanders_dark.mp4\";s:4:\"name\";s:19:\"robert_sanders_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:19:\"robert_sanders_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:390;a:13:{s:2:\"id\";s:3:\"316\";s:6:\"handle\";s:21:\"emily_carney_dark.jpg\";s:5:\"video\";s:21:\"emily_carney_dark.mp4\";s:4:\"name\";s:17:\"emily_carney_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"emily_carney_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:391;a:13:{s:2:\"id\";s:3:\"315\";s:6:\"handle\";s:22:\"michael-smith_dark.jpg\";s:5:\"video\";s:22:\"michael-smith_dark.mp4\";s:4:\"name\";s:18:\"michael-smith_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:18:\"michael-smith_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:392;a:13:{s:2:\"id\";s:3:\"314\";s:6:\"handle\";s:23:\"sandra_johnson_dark.jpg\";s:5:\"video\";s:23:\"sandra_johnson_dark.mp4\";s:4:\"name\";s:19:\"sandra_johnson_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:19:\"sandra_johnson_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:393;a:13:{s:2:\"id\";s:3:\"313\";s:6:\"handle\";s:22:\"robert_bolton_dark.jpg\";s:5:\"video\";s:22:\"robert_bolton_dark.mp4\";s:4:\"name\";s:18:\"robert_bolton_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:18:\"robert_bolton_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:394;a:13:{s:2:\"id\";s:3:\"312\";s:6:\"handle\";s:25:\"elegant_captions_dark.png\";s:5:\"video\";s:25:\"elegant_captions_dark.mp4\";s:4:\"name\";s:21:\"elegant_captions_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:21:\"elegant_captions_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-18 14:41:45\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:395;a:13:{s:2:\"id\";s:3:\"311\";s:6:\"handle\";s:19:\"Caption_Dark_06.png\";s:5:\"video\";s:19:\"Caption_Dark_06.mp4\";s:4:\"name\";s:15:\"Caption_Dark_06\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_06\";s:5:\"width\";s:3:\"414\";s:6:\"height\";s:3:\"225\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:396;a:13:{s:2:\"id\";s:3:\"310\";s:6:\"handle\";s:19:\"Header_Light_02.png\";s:5:\"video\";s:19:\"Header_Light_02.mp4\";s:4:\"name\";s:15:\"Header_Light_02\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:15:\"Header_Light_02\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:397;a:13:{s:2:\"id\";s:3:\"309\";s:6:\"handle\";s:21:\"Columns_4_Dark_01.png\";s:5:\"video\";s:21:\"Columns_4_Dark_01.mp4\";s:4:\"name\";s:17:\"Columns_4_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"Columns_4_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:398;a:13:{s:2:\"id\";s:3:\"308\";s:6:\"handle\";s:18:\"Header_Dark_01.png\";s:5:\"video\";s:18:\"Header_Dark_01.mp4\";s:4:\"name\";s:14:\"Header_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:14:\"Header_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:399;a:13:{s:2:\"id\";s:3:\"307\";s:6:\"handle\";s:19:\"Caption_Dark_03.png\";s:5:\"video\";s:19:\"Caption_Dark_03.mp4\";s:4:\"name\";s:15:\"Caption_Dark_03\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_03\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:400;a:13:{s:2:\"id\";s:3:\"306\";s:6:\"handle\";s:21:\"Columns_3_Dark_01.png\";s:5:\"video\";s:21:\"Columns_3_Dark_01.mp4\";s:4:\"name\";s:17:\"Columns_3_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"Columns_3_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:401;a:13:{s:2:\"id\";s:3:\"305\";s:6:\"handle\";s:19:\"Caption_Dark_05.png\";s:5:\"video\";s:19:\"Caption_Dark_05.mp4\";s:4:\"name\";s:15:\"Caption_Dark_05\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_05\";s:5:\"width\";s:4:\"1104\";s:6:\"height\";s:3:\"600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:402;a:13:{s:2:\"id\";s:3:\"304\";s:6:\"handle\";s:20:\"Caption_Light_06.png\";s:5:\"video\";s:20:\"Caption_Light_06.mp4\";s:4:\"name\";s:16:\"Caption_Light_06\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_06\";s:5:\"width\";s:3:\"828\";s:6:\"height\";s:3:\"450\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:403;a:13:{s:2:\"id\";s:3:\"303\";s:6:\"handle\";s:19:\"Header_Light_01.png\";s:5:\"video\";s:19:\"Header_Light_01.mp4\";s:4:\"name\";s:15:\"Header_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:15:\"Header_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:404;a:13:{s:2:\"id\";s:3:\"302\";s:6:\"handle\";s:20:\"Caption_Light_03.png\";s:5:\"video\";s:20:\"Caption_Light_03.mp4\";s:4:\"name\";s:16:\"Caption_Light_03\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_03\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:405;a:13:{s:2:\"id\";s:3:\"301\";s:6:\"handle\";s:19:\"Caption_Dark_01.png\";s:5:\"video\";s:19:\"Caption_Dark_01.mp4\";s:4:\"name\";s:15:\"Caption_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:406;a:13:{s:2:\"id\";s:3:\"300\";s:6:\"handle\";s:21:\"PromoCode_Dark_01.png\";s:5:\"video\";s:21:\"PromoCode_Dark_01.mp4\";s:4:\"name\";s:17:\"PromoCode_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"PromoCode_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:407;a:13:{s:2:\"id\";s:3:\"299\";s:6:\"handle\";s:19:\"Caption_Dark_02.png\";s:5:\"video\";s:19:\"Caption_Dark_02.mp4\";s:4:\"name\";s:15:\"Caption_Dark_02\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_02\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:408;a:13:{s:2:\"id\";s:3:\"298\";s:6:\"handle\";s:18:\"Header_Dark_02.png\";s:5:\"video\";s:18:\"Header_Dark_02.mp4\";s:4:\"name\";s:14:\"Header_Dark_02\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:14:\"Header_Dark_02\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:409;a:13:{s:2:\"id\";s:3:\"297\";s:6:\"handle\";s:22:\"Columns_3_Light_01.png\";s:5:\"video\";s:22:\"Columns_3_Light_01.mp4\";s:4:\"name\";s:18:\"Columns_3_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"Columns_3_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:410;a:13:{s:2:\"id\";s:3:\"296\";s:6:\"handle\";s:20:\"Caption_Light_01.png\";s:5:\"video\";s:20:\"Caption_Light_01.mp4\";s:4:\"name\";s:16:\"Caption_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:411;a:13:{s:2:\"id\";s:3:\"295\";s:6:\"handle\";s:19:\"Caption_Dark_04.png\";s:5:\"video\";s:19:\"Caption_Dark_04.mp4\";s:4:\"name\";s:15:\"Caption_Dark_04\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_04\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:412;a:13:{s:2:\"id\";s:3:\"294\";s:6:\"handle\";s:20:\"Caption_Light_02.png\";s:5:\"video\";s:20:\"Caption_Light_02.mp4\";s:4:\"name\";s:16:\"Caption_Light_02\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_02\";s:5:\"width\";s:3:\"828\";s:6:\"height\";s:3:\"450\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:413;a:13:{s:2:\"id\";s:3:\"293\";s:6:\"handle\";s:20:\"Caption_Light_04.png\";s:5:\"video\";s:20:\"Caption_Light_04.mp4\";s:4:\"name\";s:16:\"Caption_Light_04\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_04\";s:5:\"width\";s:4:\"1104\";s:6:\"height\";s:3:\"600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:414;a:13:{s:2:\"id\";s:3:\"292\";s:6:\"handle\";s:22:\"Columns_4_Light_01.png\";s:5:\"video\";s:22:\"Columns_4_Light_01.mp4\";s:4:\"name\";s:18:\"Columns_4_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"Columns_4_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:415;a:13:{s:2:\"id\";s:3:\"291\";s:6:\"handle\";s:20:\"Caption_Light_05.png\";s:5:\"video\";s:20:\"Caption_Light_05.mp4\";s:4:\"name\";s:16:\"Caption_Light_05\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_05\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:416;a:13:{s:2:\"id\";s:3:\"290\";s:6:\"handle\";s:22:\"PromoCode_Light_01.png\";s:5:\"video\";s:22:\"PromoCode_Light_01.mp4\";s:4:\"name\";s:18:\"PromoCode_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"PromoCode_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}}s:4:\"tags\";a:18:{i:28;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}i:5;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:20;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:21;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}i:25;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}i:2;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:16;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}i:26;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}i:18;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:4;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}i:19;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:23;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}i:3;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:24;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}i:22;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:29;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}i:27;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}}','no'),(234,'revslider-templates-check','1625692550','yes'),(235,'revslider-templates-hash','e537c10aace40687f65a52b2be613e5b','yes'),(236,'rs-templates-new','','no'),(238,'rs-templates-counter','0','no'),(239,'revslider_table_version','1.0.9','yes'),(240,'action_scheduler_hybrid_store_demarkation','9','yes'),(241,'schema-ActionScheduler_StoreSchema','3.0.1616787491','yes'),(242,'schema-ActionScheduler_LoggerSchema','2.0.1616787491','yes'),(245,'woocommerce_schema_version','430','yes'),(246,'woocommerce_store_address','','yes'),(247,'woocommerce_store_address_2','','yes'),(248,'woocommerce_store_city','','yes'),(249,'woocommerce_default_country','GB','yes'),(250,'woocommerce_store_postcode','','yes'),(251,'woocommerce_allowed_countries','all','yes'),(252,'woocommerce_all_except_countries','','yes'),(253,'woocommerce_specific_allowed_countries','','yes'),(254,'woocommerce_ship_to_countries','','yes'),(255,'woocommerce_specific_ship_to_countries','','yes'),(256,'woocommerce_default_customer_address','base','yes'),(257,'woocommerce_calc_taxes','no','yes'),(258,'woocommerce_enable_coupons','yes','yes'),(259,'woocommerce_calc_discounts_sequentially','no','no'),(260,'woocommerce_currency','GBP','yes'),(261,'woocommerce_currency_pos','left','yes'),(262,'woocommerce_price_thousand_sep',',','yes'),(263,'woocommerce_price_decimal_sep','.','yes'),(264,'woocommerce_price_num_decimals','2','yes'),(265,'woocommerce_shop_page_id','10','yes'),(266,'woocommerce_cart_redirect_after_add','no','yes'),(267,'woocommerce_enable_ajax_add_to_cart','yes','yes'),(268,'woocommerce_placeholder_image','4419','yes'),(269,'woocommerce_weight_unit','kg','yes'),(270,'woocommerce_dimension_unit','cm','yes'),(271,'woocommerce_enable_reviews','yes','yes'),(272,'woocommerce_review_rating_verification_label','yes','no'),(273,'woocommerce_review_rating_verification_required','no','no'),(274,'woocommerce_enable_review_rating','yes','yes'),(275,'woocommerce_review_rating_required','yes','no'),(276,'woocommerce_manage_stock','yes','yes'),(277,'woocommerce_hold_stock_minutes','60','no'),(278,'woocommerce_notify_low_stock','yes','no'),(279,'woocommerce_notify_no_stock','yes','no'),(280,'woocommerce_stock_email_recipient','alex@inspirable.com','no'),(281,'woocommerce_notify_low_stock_amount','2','no'),(282,'woocommerce_notify_no_stock_amount','0','yes'),(283,'woocommerce_hide_out_of_stock_items','no','yes'),(284,'woocommerce_stock_format','','yes'),(285,'woocommerce_file_download_method','force','no'),(286,'woocommerce_downloads_require_login','no','no'),(287,'woocommerce_downloads_grant_access_after_payment','yes','no'),(288,'woocommerce_downloads_add_hash_to_filename','yes','yes'),(289,'woocommerce_prices_include_tax','no','yes'),(290,'woocommerce_tax_based_on','shipping','yes'),(291,'woocommerce_shipping_tax_class','inherit','yes'),(292,'woocommerce_tax_round_at_subtotal','no','yes'),(293,'woocommerce_tax_classes','','yes'),(294,'woocommerce_tax_display_shop','excl','yes'),(295,'woocommerce_tax_display_cart','excl','yes'),(296,'woocommerce_price_display_suffix','','yes'),(297,'woocommerce_tax_total_display','itemized','no'),(298,'woocommerce_enable_shipping_calc','yes','no'),(299,'woocommerce_shipping_cost_requires_address','no','yes'),(300,'woocommerce_ship_to_destination','billing','no'),(301,'woocommerce_shipping_debug_mode','no','yes'),(302,'woocommerce_enable_guest_checkout','yes','no'),(303,'woocommerce_enable_checkout_login_reminder','no','no'),(304,'woocommerce_enable_signup_and_login_from_checkout','no','no'),(305,'woocommerce_enable_myaccount_registration','no','no'),(306,'woocommerce_registration_generate_username','yes','no'),(307,'woocommerce_registration_generate_password','yes','no'),(308,'woocommerce_erasure_request_removes_order_data','no','no'),(309,'woocommerce_erasure_request_removes_download_data','no','no'),(310,'woocommerce_allow_bulk_remove_personal_data','no','no'),(311,'woocommerce_registration_privacy_policy_text','Your personal data will be used to support your experience throughout this website, to manage access to your account, and for other purposes described in our [privacy_policy].','yes'),(312,'woocommerce_checkout_privacy_policy_text','Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our [privacy_policy].','yes'),(313,'woocommerce_delete_inactive_accounts','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no'),(314,'woocommerce_trash_pending_orders','','no'),(315,'woocommerce_trash_failed_orders','','no'),(316,'woocommerce_trash_cancelled_orders','','no'),(317,'woocommerce_anonymize_completed_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no'),(318,'woocommerce_email_from_name','System Amusement','no'),(319,'woocommerce_email_from_address','alex@inspirable.com','no'),(320,'woocommerce_email_header_image','','no'),(321,'woocommerce_email_footer_text','{site_title} &mdash; Built with {WooCommerce}','no'),(322,'woocommerce_email_base_color','#96588a','no'),(323,'woocommerce_email_background_color','#f7f7f7','no'),(324,'woocommerce_email_body_background_color','#ffffff','no'),(325,'woocommerce_email_text_color','#3c3c3c','no'),(326,'woocommerce_merchant_email_notifications','no','no'),(327,'woocommerce_cart_page_id','11','no'),(328,'woocommerce_checkout_page_id','12','no'),(329,'woocommerce_myaccount_page_id','13','no'),(330,'woocommerce_terms_page_id','','no'),(331,'woocommerce_checkout_pay_endpoint','order-pay','yes'),(332,'woocommerce_checkout_order_received_endpoint','order-received','yes'),(333,'woocommerce_myaccount_add_payment_method_endpoint','add-payment-method','yes'),(334,'woocommerce_myaccount_delete_payment_method_endpoint','delete-payment-method','yes'),(335,'woocommerce_myaccount_set_default_payment_method_endpoint','set-default-payment-method','yes'),(336,'woocommerce_myaccount_orders_endpoint','orders','yes'),(337,'woocommerce_myaccount_view_order_endpoint','view-order','yes'),(338,'woocommerce_myaccount_downloads_endpoint','downloads','yes'),(339,'woocommerce_myaccount_edit_account_endpoint','edit-account','yes'),(340,'woocommerce_myaccount_edit_address_endpoint','edit-address','yes'),(341,'woocommerce_myaccount_payment_methods_endpoint','payment-methods','yes'),(342,'woocommerce_myaccount_lost_password_endpoint','lost-password','yes'),(343,'woocommerce_logout_endpoint','customer-logout','yes'),(344,'woocommerce_api_enabled','no','yes'),(345,'woocommerce_allow_tracking','yes','no'),(346,'woocommerce_show_marketplace_suggestions','yes','no'),(347,'woocommerce_single_image_width','600','yes'),(348,'woocommerce_thumbnail_image_width','300','yes'),(349,'woocommerce_checkout_highlight_required_fields','yes','yes'),(350,'woocommerce_demo_store','no','no'),(351,'woocommerce_permalinks','a:5:{s:12:\"product_base\";s:7:\"product\";s:13:\"category_base\";s:16:\"product-category\";s:8:\"tag_base\";s:11:\"product-tag\";s:14:\"attribute_base\";s:0:\"\";s:22:\"use_verbose_page_rules\";b:0;}','yes'),(352,'current_theme_supports_woocommerce','yes','yes'),(353,'woocommerce_queue_flush_rewrite_rules','no','yes'),(2417,'product_cat_children','a:0:{}','yes'),(356,'default_product_cat','51','yes'),(444,'yith-wcqv-enable','yes','yes'),(445,'yith-wcqv-enable-mobile','yes','yes'),(446,'yith-wcqv-button-label','Quick View','yes'),(359,'woocommerce_version','5.2.2','yes'),(360,'woocommerce_db_version','5.2.2','yes'),(370,'elementor_version','3.2.2','yes'),(371,'elementor_install_history','a:2:{s:5:\"3.1.4\";i:1616787513;s:5:\"3.2.2\";i:1619640198;}','yes'),(364,'yit_recently_activated','a:2:{i:0;s:36:\"yith-woocommerce-quick-view/init.php\";i:1;s:34:\"yith-woocommerce-wishlist/init.php\";}','yes'),(365,'recently_activated','a:0:{}','yes'),(366,'_transient_jetpack_autoloader_plugin_paths','a:1:{i:0;s:29:\"{{WP_PLUGIN_DIR}}/woocommerce\";}','yes'),(367,'action_scheduler_lock_async-request-runner','1625776604','yes'),(368,'woocommerce_admin_notices','a:0:{}','yes'),(369,'revslider_update_version','6.4.0','yes'),(372,'woocommerce_maxmind_geolocation_settings','a:1:{s:15:\"database_prefix\";s:32:\"SooNzptVtyrvNuAE7N6NL02liSjMyYoN\";}','yes'),(373,'_transient_woocommerce_webhook_ids_status_active','a:0:{}','yes'),(374,'widget_booked_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(375,'widget_mks_flickr_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(376,'widget_newsletterwidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(377,'widget_newsletterwidgetminimal','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(378,'widget_rev-slider-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(379,'widget_woocommerce_widget_cart','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(380,'widget_woocommerce_layered_nav_filters','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(381,'widget_woocommerce_layered_nav','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(382,'widget_woocommerce_price_filter','a:2:{i:1;a:3:{s:5:\"title\";s:15:\"Filter by price\";s:8:\"el_class\";s:0:\"\";s:10:\"hide_title\";b:0;}s:12:\"_multiwidget\";i:1;}','yes'),(383,'widget_woocommerce_product_categories','a:2:{i:1;a:10:{s:5:\"title\";s:18:\"Product categories\";s:7:\"orderby\";s:4:\"name\";s:8:\"dropdown\";i:0;s:5:\"count\";i:1;s:12:\"hierarchical\";i:1;s:18:\"show_children_only\";i:0;s:10:\"hide_empty\";i:0;s:9:\"max_depth\";s:0:\"\";s:8:\"el_class\";s:0:\"\";s:10:\"hide_title\";b:0;}s:12:\"_multiwidget\";i:1;}','yes'),(384,'widget_woocommerce_product_search','a:2:{i:1;a:3:{s:5:\"title\";s:0:\"\";s:8:\"el_class\";s:0:\"\";s:10:\"hide_title\";b:0;}s:12:\"_multiwidget\";i:1;}','yes'),(385,'widget_woocommerce_product_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(386,'widget_woocommerce_products','a:2:{i:1;a:9:{s:5:\"title\";s:15:\"Recent Products\";s:6:\"number\";i:3;s:4:\"show\";s:0:\"\";s:7:\"orderby\";s:4:\"date\";s:5:\"order\";s:4:\"desc\";s:9:\"hide_free\";i:0;s:11:\"show_hidden\";i:0;s:8:\"el_class\";s:0:\"\";s:10:\"hide_title\";b:0;}s:12:\"_multiwidget\";i:1;}','yes'),(387,'widget_woocommerce_recently_viewed_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(388,'widget_woocommerce_top_rated_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(389,'widget_woocommerce_recent_reviews','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(390,'widget_woocommerce_rating_filter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(391,'widget_mc4wp_form_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(392,'widget_instagram-feed-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(393,'widget_ct_recent_posts','a:3:{i:1;a:5:{s:5:\"title\";s:11:\"Recent News\";s:6:\"number\";i:3;s:7:\"post_in\";s:6:\"recent\";s:8:\"el_class\";s:0:\"\";s:10:\"hide_title\";b:0;}i:2;a:6:{s:5:\"title\";s:11:\"Recent News\";s:6:\"number\";i:3;s:7:\"post_in\";s:6:\"recent\";s:6:\"layout\";s:0:\"\";s:8:\"el_class\";s:0:\"\";s:10:\"hide_title\";b:0;}s:12:\"_multiwidget\";i:1;}','yes'),(394,'widget_cs_social_widget','a:2:{i:1;a:16:{s:5:\"title\";s:0:\"\";s:13:\"link_facebook\";s:1:\"#\";s:8:\"link_rss\";s:0:\"\";s:12:\"link_youtube\";s:0:\"\";s:12:\"link_twitter\";s:1:\"#\";s:11:\"link_google\";s:0:\"\";s:10:\"link_skype\";s:0:\"\";s:13:\"link_dribbble\";s:1:\"#\";s:11:\"link_flickr\";s:0:\"\";s:13:\"link_linkedin\";s:0:\"\";s:10:\"link_vimeo\";s:0:\"\";s:14:\"link_pinterest\";s:0:\"\";s:14:\"link_bloglovin\";s:0:\"\";s:14:\"link_instagram\";s:1:\"#\";s:8:\"el_class\";s:7:\"preset2\";s:10:\"hide_title\";b:0;}s:12:\"_multiwidget\";i:1;}','yes'),(395,'widget_getintouch_widget','a:2:{i:1;a:13:{s:5:\"title\";s:0:\"\";s:12:\"address_text\";s:20:\"Melbourne, Australia\";s:10:\"phone_text\";s:16:\"(Sat - Thursday)\";s:10:\"email_text\";s:0:\"\";s:6:\"styles\";s:6:\"style1\";s:8:\"el_class\";s:7:\"preset2\";s:10:\"hide_title\";b:0;s:9:\"time_text\";s:14:\"(10am - 05 pm)\";s:13:\"address_label\";s:18:\"380 St Kilda Road,\";s:11:\"phone_label\";s:22:\"Call Us: (210) 123-451\";s:10:\"time_label\";s:15:\"Monday - Friday\";s:8:\"btn_text\";s:10:\"Contact us\";s:8:\"btn_link\";s:49:\"https://demo.casethemes.net/consultio-tax/contact\";}s:12:\"_multiwidget\";i:1;}','yes'),(396,'widget_newsletter_widget','a:3:{i:1;a:7:{s:5:\"title\";s:9:\"Subscribe\";s:12:\"introduction\";s:0:\"\";s:11:\"email_label\";s:18:\"Your mail address*\";s:13:\"contact_email\";s:0:\"\";s:13:\"contact_phone\";s:0:\"\";s:8:\"el_class\";s:0:\"\";s:10:\"hide_title\";b:0;}i:2;a:7:{s:5:\"title\";s:9:\"Subscribe\";s:12:\"introduction\";s:0:\"\";s:11:\"email_label\";s:18:\"Your mail address*\";s:13:\"contact_email\";s:0:\"\";s:13:\"contact_phone\";s:0:\"\";s:8:\"el_class\";s:0:\"\";s:10:\"hide_title\";b:0;}s:12:\"_multiwidget\";i:1;}','yes'),(400,'woocommerce_admin_install_timestamp','1616787514','yes'),(401,'booked_version_check','2.3.5','yes'),(2422,'woocommerce_admin_version','2.1.5','yes'),(406,'sbi_usage_tracking_config','a:6:{s:3:\"day\";i:6;s:4:\"hour\";i:8;s:6:\"minute\";i:27;s:6:\"second\";i:22;s:6:\"offset\";i:548842;s:8:\"initsend\";i:1616833642;}','yes'),(722,'_transient_health-check-site-status-result','{\"good\":14,\"recommended\":5,\"critical\":1}','yes'),(407,'yith_wcwl_wishlist_page_id','14','yes'),(408,'yith_wcwl_version','3.0.20','yes'),(409,'yith_wcwl_db_version','3.0.0','yes'),(412,'sbi_rating_notice','pending','no'),(413,'sbi_db_version','1.9','yes'),(419,'external_updates-booked','O:8:\"stdClass\":3:{s:9:\"lastCheck\";i:1625776533;s:14:\"checkedVersion\";s:5:\"2.3.5\";s:6:\"update\";O:8:\"stdClass\":7:{s:2:\"id\";i:0;s:4:\"slug\";s:6:\"booked\";s:7:\"version\";s:5:\"2.3.5\";s:8:\"homepage\";s:20:\"https://getbooked.io\";s:12:\"download_url\";s:55:\"http://boxyupdates.com/get/?action=download&slug=booked\";s:14:\"upgrade_notice\";N;s:8:\"filename\";s:17:\"booked/booked.php\";}}','no'),(428,'wc_remote_inbox_notifications_specs','a:28:{s:19:\"eu_vat_changes_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:19:\"eu_vat_changes_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:54:\"Get your business ready for the new EU tax regulations\";s:7:\"content\";s:617:\"On July 1, 2021, new taxation rules will come into play when the <a href=\"https://ec.europa.eu/taxation_customs/business/vat/modernising-vat-cross-border-ecommerce_en\">European Union (EU) Value-Added Tax (VAT) eCommerce package</a> takes effect.<br/><br/>The new regulations will impact virtually every B2C business involved in cross-border eCommerce trade with the EU.<br/><br/>We therefore recommend <a href=\"https://woocommerce.com/posts/new-eu-vat-regulations\">familiarizing yourself with the new updates</a>, and consult with a tax professional to ensure your business is following regulations and best practice.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"eu_vat_changes_2021\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:39:\"Learn more about the EU tax regulations\";}}s:3:\"url\";s:52:\"https://woocommerce.com/posts/new-eu-vat-regulations\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-06-24 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-07-11 00:00:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:3:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:29:\"woocommerce_allowed_countries\";s:5:\"value\";s:3:\"all\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:1;a:2:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:29:\"woocommerce_allowed_countries\";s:5:\"value\";s:10:\"all_except\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:27:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:32:\"woocommerce_all_except_countries\";s:5:\"value\";s:2:\"BE\";s:7:\"default\";a:0:{}s:9:\"operation\";s:9:\"!contains\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:32:\"woocommerce_all_except_countries\";s:5:\"value\";s:2:\"BG\";s:7:\"default\";a:0:{}s:9:\"operation\";s:9:\"!contains\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:32:\"woocommerce_all_except_countries\";s:5:\"value\";s:2:\"CZ\";s:7:\"default\";a:0:{}s:9:\"operation\";s:9:\"!contains\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:32:\"woocommerce_all_except_countries\";s:5:\"value\";s:2:\"DK\";s:7:\"default\";a:0:{}s:9:\"operation\";s:9:\"!contains\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:32:\"woocommerce_all_except_countries\";s:5:\"value\";s:2:\"DE\";s:7:\"default\";a:0:{}s:9:\"operation\";s:9:\"!contains\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:32:\"woocommerce_all_except_countries\";s:5:\"value\";s:2:\"EE\";s:7:\"default\";a:0:{}s:9:\"operation\";s:9:\"!contains\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:32:\"woocommerce_all_except_countries\";s:5:\"value\";s:2:\"IE\";s:7:\"default\";a:0:{}s:9:\"operation\";s:9:\"!contains\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:32:\"woocommerce_all_except_countries\";s:5:\"value\";s:2:\"EL\";s:7:\"default\";a:0:{}s:9:\"operation\";s:9:\"!contains\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:32:\"woocommerce_all_except_countries\";s:5:\"value\";s:2:\"ES\";s:7:\"default\";a:0:{}s:9:\"operation\";s:9:\"!contains\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:32:\"woocommerce_all_except_countries\";s:5:\"value\";s:2:\"FR\";s:7:\"default\";a:0:{}s:9:\"operation\";s:9:\"!contains\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:32:\"woocommerce_all_except_countries\";s:5:\"value\";s:2:\"HR\";s:7:\"default\";a:0:{}s:9:\"operation\";s:9:\"!contains\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:32:\"woocommerce_all_except_countries\";s:5:\"value\";s:2:\"IT\";s:7:\"default\";a:0:{}s:9:\"operation\";s:9:\"!contains\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:32:\"woocommerce_all_except_countries\";s:5:\"value\";s:2:\"CY\";s:7:\"default\";a:0:{}s:9:\"operation\";s:9:\"!contains\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:32:\"woocommerce_all_except_countries\";s:5:\"value\";s:2:\"LV\";s:7:\"default\";a:0:{}s:9:\"operation\";s:9:\"!contains\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:32:\"woocommerce_all_except_countries\";s:5:\"value\";s:2:\"LT\";s:7:\"default\";a:0:{}s:9:\"operation\";s:9:\"!contains\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:32:\"woocommerce_all_except_countries\";s:5:\"value\";s:2:\"LU\";s:7:\"default\";a:0:{}s:9:\"operation\";s:9:\"!contains\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:32:\"woocommerce_all_except_countries\";s:5:\"value\";s:2:\"HU\";s:7:\"default\";a:0:{}s:9:\"operation\";s:9:\"!contains\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:32:\"woocommerce_all_except_countries\";s:5:\"value\";s:2:\"MT\";s:7:\"default\";a:0:{}s:9:\"operation\";s:9:\"!contains\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:32:\"woocommerce_all_except_countries\";s:5:\"value\";s:2:\"NL\";s:7:\"default\";a:0:{}s:9:\"operation\";s:9:\"!contains\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:32:\"woocommerce_all_except_countries\";s:5:\"value\";s:2:\"AT\";s:7:\"default\";a:0:{}s:9:\"operation\";s:9:\"!contains\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:32:\"woocommerce_all_except_countries\";s:5:\"value\";s:2:\"PL\";s:7:\"default\";a:0:{}s:9:\"operation\";s:9:\"!contains\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:32:\"woocommerce_all_except_countries\";s:5:\"value\";s:2:\"PT\";s:7:\"default\";a:0:{}s:9:\"operation\";s:9:\"!contains\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:32:\"woocommerce_all_except_countries\";s:5:\"value\";s:2:\"RO\";s:7:\"default\";a:0:{}s:9:\"operation\";s:9:\"!contains\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:32:\"woocommerce_all_except_countries\";s:5:\"value\";s:2:\"SI\";s:7:\"default\";a:0:{}s:9:\"operation\";s:9:\"!contains\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:32:\"woocommerce_all_except_countries\";s:5:\"value\";s:2:\"SK\";s:7:\"default\";a:0:{}s:9:\"operation\";s:9:\"!contains\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:32:\"woocommerce_all_except_countries\";s:5:\"value\";s:2:\"FI\";s:7:\"default\";a:0:{}s:9:\"operation\";s:9:\"!contains\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:32:\"woocommerce_all_except_countries\";s:5:\"value\";s:2:\"SE\";s:7:\"default\";a:0:{}s:9:\"operation\";s:9:\"!contains\";}}}}i:2;a:3:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:29:\"woocommerce_allowed_countries\";s:5:\"value\";s:3:\"all\";s:7:\"default\";b:0;s:9:\"operation\";s:2:\"!=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:29:\"woocommerce_allowed_countries\";s:5:\"value\";s:10:\"all_except\";s:7:\"default\";b:0;s:9:\"operation\";s:2:\"!=\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:27:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:38:\"woocommerce_specific_allowed_countries\";s:5:\"value\";s:2:\"BE\";s:7:\"default\";a:0:{}s:9:\"operation\";s:8:\"contains\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:38:\"woocommerce_specific_allowed_countries\";s:5:\"value\";s:2:\"BG\";s:7:\"default\";a:0:{}s:9:\"operation\";s:8:\"contains\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:38:\"woocommerce_specific_allowed_countries\";s:5:\"value\";s:2:\"CZ\";s:7:\"default\";a:0:{}s:9:\"operation\";s:8:\"contains\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:38:\"woocommerce_specific_allowed_countries\";s:5:\"value\";s:2:\"DK\";s:7:\"default\";a:0:{}s:9:\"operation\";s:8:\"contains\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:38:\"woocommerce_specific_allowed_countries\";s:5:\"value\";s:2:\"DE\";s:7:\"default\";a:0:{}s:9:\"operation\";s:8:\"contains\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:38:\"woocommerce_specific_allowed_countries\";s:5:\"value\";s:2:\"EE\";s:7:\"default\";a:0:{}s:9:\"operation\";s:8:\"contains\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:38:\"woocommerce_specific_allowed_countries\";s:5:\"value\";s:2:\"IE\";s:7:\"default\";a:0:{}s:9:\"operation\";s:8:\"contains\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:38:\"woocommerce_specific_allowed_countries\";s:5:\"value\";s:2:\"EL\";s:7:\"default\";a:0:{}s:9:\"operation\";s:8:\"contains\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:38:\"woocommerce_specific_allowed_countries\";s:5:\"value\";s:2:\"ES\";s:7:\"default\";a:0:{}s:9:\"operation\";s:8:\"contains\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:38:\"woocommerce_specific_allowed_countries\";s:5:\"value\";s:2:\"FR\";s:7:\"default\";a:0:{}s:9:\"operation\";s:8:\"contains\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:38:\"woocommerce_specific_allowed_countries\";s:5:\"value\";s:2:\"HR\";s:7:\"default\";a:0:{}s:9:\"operation\";s:8:\"contains\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:38:\"woocommerce_specific_allowed_countries\";s:5:\"value\";s:2:\"IT\";s:7:\"default\";a:0:{}s:9:\"operation\";s:8:\"contains\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:38:\"woocommerce_specific_allowed_countries\";s:5:\"value\";s:2:\"CY\";s:7:\"default\";a:0:{}s:9:\"operation\";s:8:\"contains\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:38:\"woocommerce_specific_allowed_countries\";s:5:\"value\";s:2:\"LV\";s:7:\"default\";a:0:{}s:9:\"operation\";s:8:\"contains\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:38:\"woocommerce_specific_allowed_countries\";s:5:\"value\";s:2:\"LT\";s:7:\"default\";a:0:{}s:9:\"operation\";s:8:\"contains\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:38:\"woocommerce_specific_allowed_countries\";s:5:\"value\";s:2:\"LU\";s:7:\"default\";a:0:{}s:9:\"operation\";s:8:\"contains\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:38:\"woocommerce_specific_allowed_countries\";s:5:\"value\";s:2:\"HU\";s:7:\"default\";a:0:{}s:9:\"operation\";s:8:\"contains\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:38:\"woocommerce_specific_allowed_countries\";s:5:\"value\";s:2:\"MT\";s:7:\"default\";a:0:{}s:9:\"operation\";s:8:\"contains\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:38:\"woocommerce_specific_allowed_countries\";s:5:\"value\";s:2:\"NL\";s:7:\"default\";a:0:{}s:9:\"operation\";s:8:\"contains\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:38:\"woocommerce_specific_allowed_countries\";s:5:\"value\";s:2:\"AT\";s:7:\"default\";a:0:{}s:9:\"operation\";s:8:\"contains\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:38:\"woocommerce_specific_allowed_countries\";s:5:\"value\";s:2:\"PL\";s:7:\"default\";a:0:{}s:9:\"operation\";s:8:\"contains\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:38:\"woocommerce_specific_allowed_countries\";s:5:\"value\";s:2:\"PT\";s:7:\"default\";a:0:{}s:9:\"operation\";s:8:\"contains\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:38:\"woocommerce_specific_allowed_countries\";s:5:\"value\";s:2:\"RO\";s:7:\"default\";a:0:{}s:9:\"operation\";s:8:\"contains\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:38:\"woocommerce_specific_allowed_countries\";s:5:\"value\";s:2:\"SI\";s:7:\"default\";a:0:{}s:9:\"operation\";s:8:\"contains\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:38:\"woocommerce_specific_allowed_countries\";s:5:\"value\";s:2:\"SK\";s:7:\"default\";a:0:{}s:9:\"operation\";s:8:\"contains\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:38:\"woocommerce_specific_allowed_countries\";s:5:\"value\";s:2:\"FI\";s:7:\"default\";a:0:{}s:9:\"operation\";s:8:\"contains\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:38:\"woocommerce_specific_allowed_countries\";s:5:\"value\";s:2:\"SE\";s:7:\"default\";a:0:{}s:9:\"operation\";s:8:\"contains\";}}}}}}}}s:20:\"paypal_ppcp_gtm_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:20:\"paypal_ppcp_gtm_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:38:\"Offer more options with the new PayPal\";s:7:\"content\";s:113:\"Get the latest PayPal extension for a full suite of payment methods with extensive currency and country coverage.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:36:\"open_wc_paypal_payments_product_page\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:61:\"https://woocommerce.com/products/woocommerce-paypal-payments/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-04-05 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-04-21 00:00:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:7:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:30:\"woocommerce-gateway-paypal-pro\";}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:37:\"woocommerce-gateway-paypal-pro-hosted\";}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:35:\"woocommerce-gateway-paypal-advanced\";}}i:4;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:40:\"woocommerce-gateway-paypal-digital-goods\";}}i:5;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:31:\"woocommerce-paypal-here-gateway\";}}i:6;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:44:\"woocommerce-gateway-paypal-adaptive-payments\";}}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-paypal-payments\";}}}}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:27:\"woocommerce-paypal-payments\";s:7:\"version\";s:5:\"1.2.1\";s:8:\"operator\";s:1:\"<\";}}}}}s:23:\"facebook_pixel_api_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:23:\"facebook_pixel_api_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:44:\"Improve the performance of your Facebook ads\";s:7:\"content\";s:152:\"Enable Facebook Pixel and Conversions API through the latest version of Facebook for WooCommerce for improved measurement and ad targeting capabilities.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:30:\"upgrade_now_facebook_pixel_api\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:11:\"Upgrade now\";}}s:3:\"url\";s:67:\"plugin-install.php?tab=plugin-information&plugin=&section=changelog\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-05-17 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-06-14 00:00:00\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"facebook-for-woocommerce\";s:7:\"version\";s:5:\"2.4.0\";s:8:\"operator\";s:2:\"<=\";}}}s:16:\"facebook_ec_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:16:\"facebook_ec_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:59:\"Sync your product catalog with Facebook to help boost sales\";s:7:\"content\";s:170:\"A single click adds all products to your Facebook Business Page shop. Product changes are automatically synced, with the flexibility to control which products are listed.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"learn_more_facebook_ec\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:42:\"https://woocommerce.com/products/facebook/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-03-01 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-03-15 00:00:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:24:\"facebook-for-woocommerce\";}}}}s:37:\"ecomm-need-help-setting-up-your-store\";O:8:\"stdClass\":8:{s:4:\"slug\";s:37:\"ecomm-need-help-setting-up-your-store\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:32:\"Need help setting up your Store?\";s:7:\"content\";s:350:\"Schedule a free 30-min <a href=\"https://wordpress.com/support/concierge-support/\">quick start session</a> and get help from our specialists. We’re happy to walk through setup steps, show you around the WordPress.com dashboard, troubleshoot any issues you may have, and help you the find the features you need to accomplish your goals for your site.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"set-up-concierge\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"Schedule free session\";}}s:3:\"url\";s:34:\"https://wordpress.com/me/concierge\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:3:{i:0;s:35:\"woocommerce-shipping-australia-post\";i:1;s:32:\"woocommerce-shipping-canada-post\";i:2;s:30:\"woocommerce-shipping-royalmail\";}}}}s:20:\"woocommerce-services\";O:8:\"stdClass\":8:{s:4:\"slug\";s:20:\"woocommerce-services\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:26:\"WooCommerce Shipping & Tax\";s:7:\"content\";s:255:\"WooCommerce Shipping & Tax helps get your store “ready to sell” as quickly as possible. You create your products. We take care of tax calculation, payment processing, and shipping label printing! Learn more about the extension that you just installed.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:84:\"https://docs.woocommerce.com/document/woocommerce-shipping-and-tax/?utm_source=inbox\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\"<\";s:4:\"days\";i:2;}}}s:32:\"ecomm-unique-shopping-experience\";O:8:\"stdClass\":8:{s:4:\"slug\";s:32:\"ecomm-unique-shopping-experience\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:53:\"For a shopping experience as unique as your customers\";s:7:\"content\";s:274:\"Product Add-Ons allow your customers to personalize products while they’re shopping on your online store. No more follow-up email requests—customers get what they want, before they’re done checking out. Learn more about this extension that comes included in your plan.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:43:\"learn-more-ecomm-unique-shopping-experience\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:71:\"https://docs.woocommerce.com/document/product-add-ons/?utm_source=inbox\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:3:{i:0;s:35:\"woocommerce-shipping-australia-post\";i:1;s:32:\"woocommerce-shipping-canada-post\";i:2;s:30:\"woocommerce-shipping-royalmail\";}}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\"<\";s:4:\"days\";i:2;}}}s:37:\"wc-admin-getting-started-in-ecommerce\";O:8:\"stdClass\":8:{s:4:\"slug\";s:37:\"wc-admin-getting-started-in-ecommerce\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:38:\"Getting Started in eCommerce - webinar\";s:7:\"content\";s:174:\"We want to make eCommerce and this process of getting started as easy as possible for you. Watch this webinar to get tips on how to have our store up and running in a breeze.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"watch-the-webinar\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:17:\"Watch the webinar\";}}s:3:\"url\";s:28:\"https://youtu.be/V_2XtCOyZ7o\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:12:\"setup_client\";s:9:\"operation\";s:2:\"!=\";s:5:\"value\";b:1;}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:3:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:13:\"product_count\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:1:\"0\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:7:\"revenue\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:4:\"none\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:7:\"revenue\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:10:\"up-to-2500\";}}}}}s:18:\"your-first-product\";O:8:\"stdClass\":8:{s:4:\"slug\";s:18:\"your-first-product\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:18:\"Your first product\";s:7:\"content\";s:461:\"That\'s huge! You\'re well on your way to building a successful online store — now it’s time to think about how you\'ll fulfill your orders.<br/><br/>Read our shipping guide to learn best practices and options for putting together your shipping strategy. And for WooCommerce stores in the United States, you can print discounted shipping labels via USPS with <a href=\"https://href.li/?https://woocommerce.com/shipping\" target=\"_blank\">WooCommerce Shipping</a>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:82:\"https://woocommerce.com/posts/ecommerce-shipping-solutions-guide/?utm_source=inbox\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:12:\"stored_state\";s:5:\"index\";s:22:\"there_were_no_products\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:12:\"stored_state\";s:5:\"index\";s:22:\"there_are_now_products\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:13:\"product_count\";s:9:\"operation\";s:2:\">=\";s:5:\"value\";i:1;}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:13:\"product_types\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:8:\"physical\";s:7:\"default\";a:0:{}}}}s:31:\"wc-square-apple-pay-boost-sales\";O:8:\"stdClass\":8:{s:4:\"slug\";s:31:\"wc-square-apple-pay-boost-sales\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:26:\"Boost sales with Apple Pay\";s:7:\"content\";s:191:\"Now that you accept Apple Pay® with Square you can increase conversion rates by letting your customers know that Apple Pay® is available. Here’s a marketing guide to help you get started.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:27:\"boost-sales-marketing-guide\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:19:\"See marketing guide\";}}s:3:\"url\";s:97:\"https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=square-boost-sales\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:9:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"4.8\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:18:\"woocommerce-square\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"2.3\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:27:\"wc_square_apple_pay_enabled\";s:5:\"value\";i:1;s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:38:\"wc-square-apple-pay-grow-your-business\";s:6:\"status\";s:8:\"actioned\";s:9:\"operation\";s:2:\"!=\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:38:\"wc-square-apple-pay-grow-your-business\";s:6:\"status\";s:10:\"unactioned\";s:9:\"operation\";s:2:\"!=\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:27:\"wcpay-apple-pay-boost-sales\";s:6:\"status\";s:8:\"actioned\";s:9:\"operation\";s:2:\"!=\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:27:\"wcpay-apple-pay-boost-sales\";s:6:\"status\";s:10:\"unactioned\";s:9:\"operation\";s:2:\"!=\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:34:\"wcpay-apple-pay-grow-your-business\";s:6:\"status\";s:8:\"actioned\";s:9:\"operation\";s:2:\"!=\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:34:\"wcpay-apple-pay-grow-your-business\";s:6:\"status\";s:10:\"unactioned\";s:9:\"operation\";s:2:\"!=\";}}}s:38:\"wc-square-apple-pay-grow-your-business\";O:8:\"stdClass\":8:{s:4:\"slug\";s:38:\"wc-square-apple-pay-grow-your-business\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:45:\"Grow your business with Square and Apple Pay \";s:7:\"content\";s:178:\"Now more than ever, shoppers want a fast, simple, and secure online checkout experience. Increase conversion rates by letting your customers know that you now accept Apple Pay®.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"grow-your-business-marketing-guide\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:19:\"See marketing guide\";}}s:3:\"url\";s:104:\"https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=square-grow-your-business\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:9:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"4.8\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:18:\"woocommerce-square\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"2.3\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:27:\"wc_square_apple_pay_enabled\";s:5:\"value\";i:2;s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:31:\"wc-square-apple-pay-boost-sales\";s:6:\"status\";s:8:\"actioned\";s:9:\"operation\";s:2:\"!=\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:31:\"wc-square-apple-pay-boost-sales\";s:6:\"status\";s:10:\"unactioned\";s:9:\"operation\";s:2:\"!=\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:27:\"wcpay-apple-pay-boost-sales\";s:6:\"status\";s:8:\"actioned\";s:9:\"operation\";s:2:\"!=\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:27:\"wcpay-apple-pay-boost-sales\";s:6:\"status\";s:10:\"unactioned\";s:9:\"operation\";s:2:\"!=\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:34:\"wcpay-apple-pay-grow-your-business\";s:6:\"status\";s:8:\"actioned\";s:9:\"operation\";s:2:\"!=\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:34:\"wcpay-apple-pay-grow-your-business\";s:6:\"status\";s:10:\"unactioned\";s:9:\"operation\";s:2:\"!=\";}}}s:32:\"wcpay-apple-pay-is-now-available\";O:8:\"stdClass\":8:{s:4:\"slug\";s:32:\"wcpay-apple-pay-is-now-available\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:53:\"Apple Pay is now available with WooCommerce Payments!\";s:7:\"content\";s:397:\"Increase your conversion rate by offering a fast and secure checkout with <a href=\"https://woocommerce.com/apple-pay/?utm_source=inbox&utm_medium=product&utm_campaign=wcpay_applepay\" target=\"_blank\">Apple Pay</a>®. It’s free to get started with <a href=\"https://woocommerce.com/payments/?utm_source=inbox&utm_medium=product&utm_campaign=wcpay_applepay\" target=\"_blank\">WooCommerce Payments</a>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:13:\"add-apple-pay\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:13:\"Add Apple Pay\";}}s:3:\"url\";s:69:\"/admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:121:\"https://docs.woocommerce.com/document/payments/apple-pay/?utm_source=inbox&utm_medium=product&utm_campaign=wcpay_applepay\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"4.8\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"2.3.0\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:26:\"wcpay_is_apple_pay_enabled\";s:5:\"value\";b:0;s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}}}s:27:\"wcpay-apple-pay-boost-sales\";O:8:\"stdClass\":8:{s:4:\"slug\";s:27:\"wcpay-apple-pay-boost-sales\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:26:\"Boost sales with Apple Pay\";s:7:\"content\";s:205:\"Now that you accept Apple Pay® with WooCommerce Payments you can increase conversion rates by letting your customers know that Apple Pay® is available. Here’s a marketing guide to help you get started.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:27:\"boost-sales-marketing-guide\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:19:\"See marketing guide\";}}s:3:\"url\";s:96:\"https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=wcpay-boost-sales\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"4.8\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:26:\"wcpay_is_apple_pay_enabled\";s:5:\"value\";i:1;s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:34:\"wcpay-apple-pay-grow-your-business\";s:6:\"status\";s:8:\"actioned\";s:9:\"operation\";s:2:\"!=\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:34:\"wcpay-apple-pay-grow-your-business\";s:6:\"status\";s:10:\"unactioned\";s:9:\"operation\";s:2:\"!=\";}}}s:34:\"wcpay-apple-pay-grow-your-business\";O:8:\"stdClass\":8:{s:4:\"slug\";s:34:\"wcpay-apple-pay-grow-your-business\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:58:\"Grow your business with WooCommerce Payments and Apple Pay\";s:7:\"content\";s:178:\"Now more than ever, shoppers want a fast, simple, and secure online checkout experience. Increase conversion rates by letting your customers know that you now accept Apple Pay®.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"grow-your-business-marketing-guide\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:19:\"See marketing guide\";}}s:3:\"url\";s:103:\"https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=wcpay-grow-your-business\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"4.8\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:26:\"wcpay_is_apple_pay_enabled\";s:5:\"value\";i:2;s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:27:\"wcpay-apple-pay-boost-sales\";s:6:\"status\";s:8:\"actioned\";s:9:\"operation\";s:2:\"!=\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:27:\"wcpay-apple-pay-boost-sales\";s:6:\"status\";s:10:\"unactioned\";s:9:\"operation\";s:2:\"!=\";}}}s:37:\"wc-admin-optimizing-the-checkout-flow\";O:8:\"stdClass\":8:{s:4:\"slug\";s:37:\"wc-admin-optimizing-the-checkout-flow\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:28:\"Optimizing the checkout flow\";s:7:\"content\";s:171:\"It\'s crucial to get your store\'s checkout as smooth as possible to avoid losing sales. Let\'s take a look at how you can optimize the checkout experience for your shoppers.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:28:\"optimizing-the-checkout-flow\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:78:\"https://woocommerce.com/posts/optimizing-woocommerce-checkout?utm_source=inbox\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:3;}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:45:\"woocommerce_task_list_tracked_completed_tasks\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:8:\"payments\";s:7:\"default\";a:0:{}}}}s:39:\"wc-admin-first-five-things-to-customize\";O:8:\"stdClass\":8:{s:4:\"slug\";s:39:\"wc-admin-first-five-things-to-customize\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:45:\"The first 5 things to customize in your store\";s:7:\"content\";s:173:\"Deciding what to start with first is tricky. To help you properly prioritize, we\'ve put together this short list of the first few things you should customize in WooCommerce.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:82:\"https://woocommerce.com/posts/first-things-customize-woocommerce/?utm_source=inbox\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:2;}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:45:\"woocommerce_task_list_tracked_completed_tasks\";s:5:\"value\";s:9:\"NOT EMPTY\";s:7:\"default\";s:9:\"NOT EMPTY\";s:9:\"operation\";s:2:\"!=\";}}}s:32:\"wc-payments-qualitative-feedback\";O:8:\"stdClass\":8:{s:4:\"slug\";s:32:\"wc-payments-qualitative-feedback\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:55:\"WooCommerce Payments setup - let us know what you think\";s:7:\"content\";s:146:\"Congrats on enabling WooCommerce Payments for your store. Please share your feedback in this 2 minute survey to help us improve the setup process.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:35:\"qualitative-feedback-from-new-users\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:39:\"https://automattic.survey.fm/wc-pay-new\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:1:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:45:\"woocommerce_task_list_tracked_completed_tasks\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:20:\"woocommerce-payments\";s:7:\"default\";a:0:{}}}}s:29:\"share-your-feedback-on-paypal\";O:8:\"stdClass\":8:{s:4:\"slug\";s:29:\"share-your-feedback-on-paypal\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:29:\"Share your feedback on PayPal\";s:7:\"content\";s:127:\"Share your feedback in this 2 minute survey about how we can make the process of accepting payments more useful for your store.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"share-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:43:\"http://automattic.survey.fm/paypal-feedback\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-gateway-stripe\";}}}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}}}s:31:\"wcpay_instant_deposits_gtm_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:31:\"wcpay_instant_deposits_gtm_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:69:\"Get paid within minutes – Instant Deposits for WooCommerce Payments\";s:7:\"content\";s:384:\"Stay flexible with immediate access to your funds when you need them – including nights, weekends, and holidays. With <a href=\"https://woocommerce.com/products/woocommerce-payments/?utm_source=inbox&utm_medium=product&utm_campaign=wcpay_instant_deposits\">WooCommerce Payments\'</a> new Instant Deposits feature, you’re able to transfer your earnings to a debit card within minutes.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:40:\"Learn about Instant Deposits eligibility\";}}s:3:\"url\";s:136:\"https://docs.woocommerce.com/document/payments/instant-deposits/?utm_source=inbox&utm_medium=product&utm_campaign=wcpay_instant_deposits\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-05-18 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-06-01 00:00:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}}}s:31:\"google_listings_and_ads_install\";O:8:\"stdClass\":8:{s:4:\"slug\";s:31:\"google_listings_and_ads_install\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:35:\"Drive traffic and sales with Google\";s:7:\"content\";s:123:\"Reach online shoppers to drive traffic and sales for your store by showcasing products across Google, for free or with ads.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"get-started\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:11:\"Get started\";}}s:3:\"url\";s:56:\"https://woocommerce.com/products/google-listings-and-ads\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-06-09 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:23:\"google_listings_and_ads\";}}}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:11:\"order_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:10;}}}s:39:\"wc-subscriptions-security-update-3-0-15\";O:8:\"stdClass\":8:{s:4:\"slug\";s:39:\"wc-subscriptions-security-update-3-0-15\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:42:\"WooCommerce Subscriptions security update!\";s:7:\"content\";s:736:\"We recently released an important security update to WooCommerce Subscriptions. To ensure your site\'s data is protected, please upgrade <strong>WooCommerce Subscriptions to version 3.0.15</strong> or later.<br/><br/>Click the button below to view and update to the latest Subscriptions version, or log in to <a href=\"https://woocommerce.com/my-dashboard\">WooCommerce.com Dashboard</a> and navigate to your <strong>Downloads</strong> page.<br/><br/>We recommend always using the latest version of WooCommerce Subscriptions, and other software running on your site, to ensure maximum security.<br/><br/>If you have any questions we are here to help — just <a href=\"https://woocommerce.com/my-account/create-a-ticket/\">open a ticket</a>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:30:\"update-wc-subscriptions-3-0-15\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:19:\"View latest version\";}}s:3:\"url\";s:30:\"&page=wc-addons&section=helper\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:25:\"woocommerce-subscriptions\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:6:\"3.0.15\";}}}s:29:\"woocommerce-core-update-5-4-0\";O:8:\"stdClass\":8:{s:4:\"slug\";s:29:\"woocommerce-core-update-5-4-0\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:31:\"Update to WooCommerce 5.4.1 now\";s:7:\"content\";s:140:\"WooCommerce 5.4.1 addresses a checkout issue discovered in WooCommerce 5.4. We recommend upgrading to WooCommerce 5.4.1 as soon as possible.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:20:\"update-wc-core-5-4-0\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:25:\"How to update WooCommerce\";}}s:3:\"url\";s:64:\"https://docs.woocommerce.com/document/how-to-update-woocommerce/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.0\";}}}s:19:\"wcpay-promo-2020-11\";O:8:\"stdClass\":7:{s:4:\"slug\";s:19:\"wcpay-promo-2020-11\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:19:\"wcpay-promo-2020-11\";s:7:\"content\";s:19:\"wcpay-promo-2020-11\";}}s:5:\"rules\";a:0:{}}s:19:\"wcpay-promo-2020-12\";O:8:\"stdClass\":7:{s:4:\"slug\";s:19:\"wcpay-promo-2020-12\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:19:\"wcpay-promo-2020-12\";s:7:\"content\";s:19:\"wcpay-promo-2020-12\";}}s:5:\"rules\";a:0:{}}s:30:\"wcpay-promo-2021-6-incentive-1\";O:8:\"stdClass\":8:{s:4:\"slug\";s:30:\"wcpay-promo-2021-6-incentive-1\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:74:\"Special offer: Save 50% on transaction fees for up to $125,000 in payments\";s:7:\"content\";s:715:\"Save big when you add <a href=\"https://woocommerce.com/payments/?utm_medium=notification&utm_source=product&utm_campaign=wcpay_exp222\">WooCommerce Payments</a> to your store today.\n                Get a discounted rate of 1.5% + $0.15 on all transactions – that’s 50% off the standard fee on up to $125,000 in processed payments (or six months, whichever comes first). Act now – this offer is available for a limited time only.\n                <br/><br/>By clicking \"Get WooCommerce Payments,\" you agree to the promotional <a href=\"https://woocommerce.com/terms-conditions/woocommerce-payments-half-off-six-promotion/?utm_medium=notification&utm_source=product&utm_campaign=wcpay_exp222\">Terms of Service</a>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:25:\"get-woo-commerce-payments\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:24:\"Get WooCommerce Payments\";}}s:3:\"url\";s:57:\"admin.php?page=wc-admin&action=setup-woocommerce-payments\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:12:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:6:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";s:1:\"1\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";s:1:\"3\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";s:1:\"5\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";s:1:\"7\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";s:1:\"9\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";s:2:\"11\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:4:{i:0;s:17:\"crowdsignal-forms\";i:1;s:11:\"layout-grid\";i:2;s:17:\"full-site-editing\";i:3;s:13:\"page-optimize\";}}}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:26:\"woocommerce_allow_tracking\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:2:\">=\";s:4:\"days\";i:31;}i:5;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}}}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"4.0\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:10:\"db_version\";s:5:\"value\";s:5:\"45805\";s:7:\"default\";i:0;s:9:\"operation\";s:2:\">=\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:19:\"wcpay-promo-2020-11\";s:6:\"status\";s:8:\"actioned\";s:9:\"operation\";s:2:\"!=\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:19:\"wcpay-promo-2020-11\";s:6:\"status\";s:10:\"unactioned\";s:9:\"operation\";s:2:\"!=\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:19:\"wcpay-promo-2020-12\";s:6:\"status\";s:8:\"actioned\";s:9:\"operation\";s:2:\"!=\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:19:\"wcpay-promo-2020-12\";s:6:\"status\";s:10:\"unactioned\";s:9:\"operation\";s:2:\"!=\";}}}s:30:\"wcpay-promo-2021-6-incentive-2\";O:8:\"stdClass\":8:{s:4:\"slug\";s:30:\"wcpay-promo-2021-6-incentive-2\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:58:\"Special offer: No transaction fees* for up to three months\";s:7:\"content\";s:684:\"Save big when you add <a href=\"https://woocommerce.com/payments/?utm_medium=notification&utm_source=product&utm_campaign=wcpay_exp233\">WooCommerce Payments</a> to your store today. Pay zero transaction fees* on up to $25,000 in processed payments (or three months, whichever comes first). Act now – this offer is available for a limited time only. *Currency conversion fees excluded.\n                <br/><br/>By clicking \"Get WooCommerce Payments,\" you agree to the promotional <a href=\"https://woocommerce.com/terms-conditions/woocommerce-payments-no-transaction-fees-for-three-promotion/?utm_medium=notification&utm_source=product&utm_campaign=wcpay_exp233\">Terms of Service</a>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:24:\"get-woocommerce-payments\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:24:\"Get WooCommerce Payments\";}}s:3:\"url\";s:57:\"admin.php?page=wc-admin&action=setup-woocommerce-payments\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:12:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:6:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";s:1:\"2\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";s:1:\"4\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";s:1:\"6\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";s:1:\"8\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";s:2:\"10\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";s:2:\"12\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:4:{i:0;s:17:\"crowdsignal-forms\";i:1;s:11:\"layout-grid\";i:2;s:17:\"full-site-editing\";i:3;s:13:\"page-optimize\";}}}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:26:\"woocommerce_allow_tracking\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:2:\">=\";s:4:\"days\";i:31;}i:5;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}}}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"4.0\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:10:\"db_version\";s:5:\"value\";s:5:\"45805\";s:7:\"default\";i:0;s:9:\"operation\";s:2:\">=\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:19:\"wcpay-promo-2020-11\";s:6:\"status\";s:8:\"actioned\";s:9:\"operation\";s:2:\"!=\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:19:\"wcpay-promo-2020-11\";s:6:\"status\";s:10:\"unactioned\";s:9:\"operation\";s:2:\"!=\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:19:\"wcpay-promo-2020-12\";s:6:\"status\";s:8:\"actioned\";s:9:\"operation\";s:2:\"!=\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:19:\"wcpay-promo-2020-12\";s:6:\"status\";s:10:\"unactioned\";s:9:\"operation\";s:2:\"!=\";}}}s:34:\"ppxo-pps-upgrade-paypal-payments-1\";O:8:\"stdClass\":8:{s:4:\"slug\";s:34:\"ppxo-pps-upgrade-paypal-payments-1\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:47:\"Get the latest PayPal extension for WooCommerce\";s:7:\"content\";s:440:\"Heads up! There\'s a new PayPal on the block!<br/><br/>Now is a great time to upgrade to our latest <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal extension</a> to continue to receive support and updates with PayPal.<br/><br/>Get access to a full suite of PayPal payment methods, extensive currency and country coverage, and pay later options with the all-new PayPal extension for WooCommerce.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"ppxo-pps-install-paypal-payments-1\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:18:\"View upgrade guide\";}}s:3:\"url\";s:96:\"https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-paypal-payments\";}}}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:27:\"woocommerce_paypal_settings\";s:9:\"operation\";s:2:\"!=\";s:5:\"value\";b:0;s:7:\"default\";b:0;}}}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";i:7;s:7:\"default\";i:1;s:9:\"operation\";s:1:\"<\";}}}s:34:\"ppxo-pps-upgrade-paypal-payments-2\";O:8:\"stdClass\":8:{s:4:\"slug\";s:34:\"ppxo-pps-upgrade-paypal-payments-2\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:31:\"Upgrade your PayPal experience!\";s:7:\"content\";s:513:\"We\'ve developed a whole new <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal extension for WooCommerce</a> that combines the best features of our many PayPal extensions into just one extension.<br/><br/>Get access to a full suite of PayPal payment methods, extensive currency and country coverage, offer subscription and recurring payments, and the new PayPal pay later options.<br/><br/>Start using our latest PayPal today to continue to receive support and updates.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"ppxo-pps-install-paypal-payments-2\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:18:\"View upgrade guide\";}}s:3:\"url\";s:96:\"https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-paypal-payments\";}}}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:27:\"woocommerce_paypal_settings\";s:9:\"operation\";s:2:\"!=\";s:5:\"value\";b:0;s:7:\"default\";b:0;}}}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";i:6;s:7:\"default\";i:1;s:9:\"operation\";s:1:\">\";}}}}','yes'),(429,'wc_remote_inbox_notifications_stored_state','O:8:\"stdClass\":2:{s:22:\"there_were_no_products\";b:1;s:22:\"there_are_now_products\";b:0;}','yes');
INSERT INTO `wp9s_options` VALUES (436,'elementor_remote_info_library','a:3:{s:10:\"types_data\";a:3:{s:5:\"block\";a:1:{s:10:\"categories\";a:22:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:14:\"call to action\";i:4;s:7:\"clients\";i:5;s:7:\"contact\";i:6;s:3:\"faq\";i:7;s:8:\"features\";i:8;s:6:\"footer\";i:9;s:6:\"header\";i:10;s:4:\"hero\";i:11;s:9:\"portfolio\";i:12;s:7:\"pricing\";i:13;s:15:\"product archive\";i:14;s:8:\"services\";i:15;s:11:\"single page\";i:16;s:11:\"single post\";i:17;s:14:\"single product\";i:18;s:5:\"stats\";i:19;s:9:\"subscribe\";i:20;s:4:\"team\";i:21;s:12:\"testimonials\";}}s:5:\"popup\";a:1:{s:10:\"categories\";a:6:{i:0;s:10:\"bottom bar\";i:1;s:7:\"classic\";i:2;s:6:\"fly-in\";i:3;s:11:\"full screen\";i:4;s:9:\"hello bar\";i:5;s:8:\"slide-in\";}}s:2:\"lp\";a:1:{s:10:\"categories\";a:14:{i:0;s:8:\"Business\";i:1;s:16:\"Coming Soon Page\";i:2;s:5:\"Ebook\";i:3;s:9:\"eCommerce\";i:4;s:9:\"Education\";i:5;s:6:\"Events\";i:6;s:18:\"Health and Fitness\";i:7;s:14:\"Online Service\";i:8;s:7:\"Product\";i:9;s:11:\"Real Estate\";i:10;s:18:\"Social Involvement\";i:11;s:14:\"Thank You Page\";i:12;s:6:\"Travel\";i:13;s:18:\"Under Construction\";}}}s:10:\"categories\";a:22:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:14:\"call to action\";i:4;s:7:\"clients\";i:5;s:7:\"contact\";i:6;s:3:\"faq\";i:7;s:8:\"features\";i:8;s:6:\"footer\";i:9;s:6:\"header\";i:10;s:4:\"hero\";i:11;s:9:\"portfolio\";i:12;s:7:\"pricing\";i:13;s:15:\"product archive\";i:14;s:8:\"services\";i:15;s:11:\"single page\";i:16;s:11:\"single post\";i:17;s:14:\"single product\";i:18;s:5:\"stats\";i:19;s:9:\"subscribe\";i:20;s:4:\"team\";i:21;s:12:\"testimonials\";}s:9:\"templates\";a:882:{i:0;a:15:{s:2:\"id\";i:10107;s:5:\"title\";s:34:\"Classic | Promotion | Announcement\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/balls_small.png\";s:12:\"tmpl_created\";i:1547851373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-promotion-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:206;s:11:\"trend_index\";i:207;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:1;a:15:{s:2:\"id\";i:14827;s:5:\"title\";s:39:\"Slide-In | Contact | Luxury Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/PopUp.png\";s:12:\"tmpl_created\";i:1595323523;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/slide-in-contact-luxury-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:28:\"[\"real estate\",\"realestate\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:559;s:11:\"trend_index\";i:284;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:2;a:15:{s:2:\"id\";i:10158;s:5:\"title\";s:17:\"Classic | Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/coco_small.png\";s:12:\"tmpl_created\";i:1547852227;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:255;s:11:\"trend_index\";i:295;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:3;a:15:{s:2:\"id\";i:10190;s:5:\"title\";s:30:\"Classic | Register | Subscribe\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/engage_small.png\";s:12:\"tmpl_created\";i:1547885703;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-register-subscribe-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:214;s:11:\"trend_index\";i:151;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:4;a:15:{s:2:\"id\";i:15075;s:5:\"title\";s:34:\"Slide-In | Menu | Flooring Company\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp-1.png\";s:12:\"tmpl_created\";i:1597739605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/slide-in-menu-flooring-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:383;s:11:\"trend_index\";i:162;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:5;a:15:{s:2:\"id\";i:15062;s:5:\"title\";s:35:\"Fly-In | Sign up | Flooring Company\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp.png\";s:12:\"tmpl_created\";i:1597739629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/fly-in-sign-up-flooring-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:625;s:11:\"trend_index\";i:309;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:6;a:15:{s:2:\"id\";i:10256;s:5:\"title\";s:20:\"Classic | Sale | Pop\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/fruit_small.png\";s:12:\"tmpl_created\";i:1547888909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:458;s:11:\"trend_index\";i:597;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:7;a:15:{s:2:\"id\";i:10267;s:5:\"title\";s:29:\"Classic | Contact | Christmas\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/christmas_small.png\";s:12:\"tmpl_created\";i:1547889047;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-contact-christmas/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:281;s:11:\"trend_index\";i:233;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:8;a:15:{s:2:\"id\";i:10307;s:5:\"title\";s:43:\"Fly In | Promotion | Christmas | Teddy Bear\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/teddy_small.png\";s:12:\"tmpl_created\";i:1547893266;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/fly-in-promotion-christmas/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:641;s:11:\"trend_index\";i:689;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:9;a:15:{s:2:\"id\";i:10318;s:5:\"title\";s:27:\"Classic | Contact | Bicycle\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/01/by_small.png\";s:12:\"tmpl_created\";i:1547893367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/classic-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:327;s:11:\"trend_index\";i:326;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:10;a:15:{s:2:\"id\";i:10339;s:5:\"title\";s:22:\"Fly In | Contact | Spa\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/spa_small.png\";s:12:\"tmpl_created\";i:1547893603;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/fly-in-contact-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:390;s:11:\"trend_index\";i:393;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:11;a:15:{s:2:\"id\";i:10352;s:5:\"title\";s:23:\"Fly In | Contact | Wine\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/fly_wine_small.png\";s:12:\"tmpl_created\";i:1547915335;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/fly-in-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:445;s:11:\"trend_index\";i:525;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:12;a:15:{s:2:\"id\";i:10372;s:5:\"title\";s:29:\"Fly In | Register | Subscribe\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/phone_small.png\";s:12:\"tmpl_created\";i:1547915554;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fly-in-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:638;s:11:\"trend_index\";i:636;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:13;a:15:{s:2:\"id\";i:10382;s:5:\"title\";s:35:\"Bottom Bar | Announcement | Cookies\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2019/01/bottom_pink_small.png\";s:12:\"tmpl_created\";i:1547916616;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/bottom-bar-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:242;s:11:\"trend_index\";i:258;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:14;a:15:{s:2:\"id\";i:15259;s:5:\"title\";s:31:\"Hello Bar | Menu | Psychologist\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Menu-PopUp.png\";s:12:\"tmpl_created\";i:1600170209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/hello-bar-menu-psychologist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:739;s:11:\"trend_index\";i:583;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:15;a:15:{s:2:\"id\";i:15272;s:5:\"title\";s:32:\"Classic | Contact | Psychologist\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/PopUp.png\";s:12:\"tmpl_created\";i:1600170487;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-contact-psychologist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:578;s:11:\"trend_index\";i:312;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:16;a:15:{s:2:\"id\";i:15414;s:5:\"title\";s:32:\"Classic | Contact | Dance Studio\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/PopUp.jpg\";s:12:\"tmpl_created\";i:1603180596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-contact-dance-studio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"dance studio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:762;s:11:\"trend_index\";i:650;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:17;a:15:{s:2:\"id\";i:10434;s:5:\"title\";s:27:\"Classic | Sale | Headphones\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/head_small.png\";s:12:\"tmpl_created\";i:1547961950;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:359;s:11:\"trend_index\";i:353;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:18;a:15:{s:2:\"id\";i:10444;s:5:\"title\";s:17:\"Classic | Contact\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/plant_small.png\";s:12:\"tmpl_created\";i:1547962029;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/classic-contact-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:385;s:11:\"trend_index\";i:298;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:19;a:15:{s:2:\"id\";i:10467;s:5:\"title\";s:27:\"Bottom Bar | Contact | Lego\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/tro_small.png\";s:12:\"tmpl_created\";i:1547962277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/bottom-bar-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:722;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:20;a:15:{s:2:\"id\";i:10487;s:5:\"title\";s:18:\"Slide In | Contact\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/acc_small.png\";s:12:\"tmpl_created\";i:1547964527;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/slide-in-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:554;s:11:\"trend_index\";i:618;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:21;a:15:{s:2:\"id\";i:10498;s:5:\"title\";s:14:\"Classic | Sale\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/pink_small-1.png\";s:12:\"tmpl_created\";i:1547964616;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:421;s:11:\"trend_index\";i:382;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:22;a:15:{s:2:\"id\";i:10519;s:5:\"title\";s:27:\"Hello Bar | Promotion | App\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/app_small-1.png\";s:12:\"tmpl_created\";i:1547964801;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/hello-bar-promotion-app-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:585;s:11:\"trend_index\";i:629;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:23;a:15:{s:2:\"id\";i:15580;s:5:\"title\";s:31:\"Fullscreen | Menu | Travel Blog\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1606215358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fullscreen-menu-travel-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:673;s:11:\"trend_index\";i:348;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:24;a:15:{s:2:\"id\";i:15570;s:5:\"title\";s:33:\"Classic | Subscribe | Travel Blog\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp.jpg\";s:12:\"tmpl_created\";i:1606215555;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/classic-subscribe-travel-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:709;s:11:\"trend_index\";i:459;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:25;a:15:{s:2:\"id\";i:10569;s:5:\"title\";s:15:\"Slide In | Sale\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/off_small.png\";s:12:\"tmpl_created\";i:1547967812;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/popups/slide-in-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:529;s:11:\"trend_index\";i:485;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:26;a:15:{s:2:\"id\";i:10590;s:5:\"title\";s:19:\"Full Screen | Login\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/pass1_small.png\";s:12:\"tmpl_created\";i:1547967978;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:466;s:11:\"trend_index\";i:356;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:27;a:15:{s:2:\"id\";i:10600;s:5:\"title\";s:18:\"Slide In | Contact\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/orange_small.png\";s:12:\"tmpl_created\";i:1547968080;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/slide-in-contact-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:483;s:11:\"trend_index\";i:494;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:28;a:15:{s:2:\"id\";i:10622;s:5:\"title\";s:34:\"Full Screen | Contact | Headphones\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/full_hear_small.png\";s:12:\"tmpl_created\";i:1547969678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/full-screen-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:543;s:11:\"trend_index\";i:456;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:29;a:15:{s:2:\"id\";i:10633;s:5:\"title\";s:23:\"Slide In | Login | Lego\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/tro_small-1.png\";s:12:\"tmpl_created\";i:1547969858;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/slide-in-login/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:675;s:11:\"trend_index\";i:722;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:30;a:15:{s:2:\"id\";i:10644;s:5:\"title\";s:26:\"Fly In | Contact | Webinar\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/blue_small-1.png\";s:12:\"tmpl_created\";i:1547970814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/fly-in-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:484;s:11:\"trend_index\";i:440;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:31;a:15:{s:2:\"id\";i:10654;s:5:\"title\";s:31:\"Full Screen | Login | Christmas\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/01/full_login_small.png\";s:12:\"tmpl_created\";i:1547970917;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/full-screen-login-christmas/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:658;s:11:\"trend_index\";i:676;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:32;a:15:{s:2:\"id\";i:10664;s:5:\"title\";s:34:\"Slide In | Contact | Gym | Fitness\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/slide_gym_small.png\";s:12:\"tmpl_created\";i:1547973928;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/slide-in-contact-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:552;s:11:\"trend_index\";i:384;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:33;a:15:{s:2:\"id\";i:10675;s:5:\"title\";s:35:\"Full Screen | Login | Gym | Fitness\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/gym_full_small.png\";s:12:\"tmpl_created\";i:1547974110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/full-screen-login-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:519;s:11:\"trend_index\";i:477;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:34;a:15:{s:2:\"id\";i:9719;s:5:\"title\";s:30:\"Classic | Subscribe | Register\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/register_small.png\";s:12:\"tmpl_created\";i:1547976107;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-subscribe-register/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:398;s:11:\"trend_index\";i:282;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:35;a:15:{s:2:\"id\";i:10137;s:5:\"title\";s:34:\"Full Screen | Contact | Restaurant\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/rest_small.png\";s:12:\"tmpl_created\";i:1547976342;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/full-screen-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:570;s:11:\"trend_index\";i:589;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:36;a:15:{s:2:\"id\";i:10244;s:5:\"title\";s:17:\"Bottom Bar | Sale\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/wow_small.png\";s:12:\"tmpl_created\";i:1547976402;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/bottom-bar-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:623;s:11:\"trend_index\";i:660;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:37;a:15:{s:2:\"id\";i:10127;s:5:\"title\";s:35:\"Fly In | Announcement | Maintenance\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/pizza_small.png\";s:12:\"tmpl_created\";i:1547984061;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/fly-in-announcement-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:700;s:11:\"trend_index\";i:738;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:38;a:15:{s:2:\"id\";i:10776;s:5:\"title\";s:33:\"Fly In | Contact | Social | Share\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/social1_small.png\";s:12:\"tmpl_created\";i:1548047055;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fly-in-contact-social-share/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:694;s:11:\"trend_index\";i:694;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:39;a:15:{s:2:\"id\";i:10785;s:5:\"title\";s:33:\"Fly In | Contact | Social | Share\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/social2_small.png\";s:12:\"tmpl_created\";i:1548047593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/fly-in-contact-social-share-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:468;s:11:\"trend_index\";i:442;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:40;a:15:{s:2:\"id\";i:10794;s:5:\"title\";s:34:\"Classic | Contact | Social | Share\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/01/s_small.png\";s:12:\"tmpl_created\";i:1548067619;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-contact-social-share/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:430;s:11:\"trend_index\";i:475;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:41;a:15:{s:2:\"id\";i:10871;s:5:\"title\";s:20:\"Bottom Bar | Contact\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/01/m_small.png\";s:12:\"tmpl_created\";i:1548074396;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/bottom-bar-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:706;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:42;a:15:{s:2:\"id\";i:10936;s:5:\"title\";s:25:\"Full Screen | Toggle Menu\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/menu_small.png\";s:12:\"tmpl_created\";i:1548874587;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/full-screen-toggle-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:478;s:11:\"trend_index\";i:572;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:43;a:15:{s:2:\"id\";i:10964;s:5:\"title\";s:59:\"Classic | Promotion | Coupon | Love | Valentine&#8217;s Day\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/02/love_small.png\";s:12:\"tmpl_created\";i:1550039106;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/classic-promotion-coupon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:598;s:11:\"trend_index\";i:664;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:44;a:15:{s:2:\"id\";i:10992;s:5:\"title\";s:59:\"Classic | Promotion | Coupon | Love | Valentine&#8217;s Day\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/02/h_small.png\";s:12:\"tmpl_created\";i:1550072007;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/classic-promotion-coupon-love-valentines-day/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:668;s:11:\"trend_index\";i:668;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:45;a:15:{s:2:\"id\";i:11005;s:5:\"title\";s:50:\"Classic | Promotion | Love | Valentine&#8217;s Day\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/02/bear_small.png\";s:12:\"tmpl_created\";i:1550073303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-promotion-love-valentines-day/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:680;s:11:\"trend_index\";i:615;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:46;a:15:{s:2:\"id\";i:16553;s:5:\"title\";s:31:\"Fly-In | Contact | Beauty Salon\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/12/PopUp.jpg\";s:12:\"tmpl_created\";i:1608622602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fly-in-contact-beauty-salon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"hair\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:691;s:11:\"trend_index\";i:428;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:47;a:15:{s:2:\"id\";i:11468;s:5:\"title\";s:20:\"Classic | Sale | Gym\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/PopUp_Small.png\";s:12:\"tmpl_created\";i:1567393182;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/classic-sale-gym/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:696;s:11:\"trend_index\";i:740;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:48;a:15:{s:2:\"id\";i:11822;s:5:\"title\";s:30:\"Full Screen | Menu | Portfolio\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/PopUp_small.png\";s:12:\"tmpl_created\";i:1569429896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/full-screen-menu-portfolio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:654;s:11:\"trend_index\";i:626;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:49;a:15:{s:2:\"id\";i:11839;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Header_small.png\";s:12:\"tmpl_created\";i:1569430015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"header\",\"portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:189;s:11:\"trend_index\";i:20;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:50;a:15:{s:2:\"id\";i:12229;s:5:\"title\";s:33:\"Slide In | Law Firm | Information\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/popup.png\";s:12:\"tmpl_created\";i:1572847842;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/slide-in-law-firm-information/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:547;s:11:\"trend_index\";i:413;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:51;a:15:{s:2:\"id\";i:12550;s:5:\"title\";s:32:\"Fly-in | Sale | Travel and Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_s.png\";s:12:\"tmpl_created\";i:1575960263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/flyin-sale-travel-and-tours/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:754;s:11:\"trend_index\";i:791;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:52;a:15:{s:2:\"id\";i:12540;s:5:\"title\";s:33:\"Classic | Menu | Travel and tours\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_Menu_s.png\";s:12:\"tmpl_created\";i:1575960267;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/classic-menu-travel-and-tours/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:690;s:11:\"trend_index\";i:714;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:53;a:15:{s:2:\"id\";i:18761;s:5:\"title\";s:33:\"Fashion Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1621336146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/fashion-store-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:54;a:15:{s:2:\"id\";i:18815;s:5:\"title\";s:25:\"Car Wash &#8211; Business\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Car-Wash.png\";s:12:\"tmpl_created\";i:1621336431;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/lp/car-wash-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:45:\"[\"Business\",\"car\",\"Discount\",\"Landing Pages\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:55;a:15:{s:2:\"id\";i:18819;s:5:\"title\";s:27:\"Dog Walker &#8211; Business\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Dog-Walker.png\";s:12:\"tmpl_created\";i:1621336601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/lp/dog-walker-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:41:\"[\"Business\",\"Dog\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:56;a:15:{s:2:\"id\";i:12736;s:5:\"title\";s:41:\"Slide In | Contact Us | Magazine and Blog\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_contact_s.png\";s:12:\"tmpl_created\";i:1579060978;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/slide-in-contact-us/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:734;s:11:\"trend_index\";i:686;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:57;a:15:{s:2:\"id\";i:12726;s:5:\"title\";s:52:\"Classic | Newsletter | Subscribe | Magazine and Blog\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_Newsletter_s.png\";s:12:\"tmpl_created\";i:1579061019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-newsletter-subscribe-magazine-and-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:357;s:11:\"trend_index\";i:281;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:58;a:15:{s:2:\"id\";i:13129;s:5:\"title\";s:28:\"Classic | Menu | Photography\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/PopUp_s.png\";s:12:\"tmpl_created\";i:1582092645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/classic-menu-photography/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:646;s:11:\"trend_index\";i:521;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:59;a:15:{s:2:\"id\";i:9611;s:5:\"title\";s:16:\"Hello Bar | Sale\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2019/01/Top-Bar_Sale_small_01.png\";s:12:\"tmpl_created\";i:1546965350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/hello-bar-sale-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:605;s:11:\"trend_index\";i:603;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:60;a:15:{s:2:\"id\";i:9622;s:5:\"title\";s:19:\"Classic | Promotion\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_promotion_small_02.png\";s:12:\"tmpl_created\";i:1546965896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/classic-promotion-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:607;s:11:\"trend_index\";i:460;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:61;a:15:{s:2:\"id\";i:9631;s:5:\"title\";s:38:\"Slide-in | Sale | Register | Subscribe\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2019/01/Slide-in_Sale_small_01.png\";s:12:\"tmpl_created\";i:1546968270;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/slide-in-sale-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:661;s:11:\"trend_index\";i:705;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:62;a:15:{s:2:\"id\";i:9662;s:5:\"title\";s:33:\"Bottom Bar | Register | Subscribe\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2019/01/Bottom-Bar_Register_small_01.png\";s:12:\"tmpl_created\";i:1547009087;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/popups/bottom-bar-register-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:684;s:11:\"trend_index\";i:658;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:63;a:15:{s:2:\"id\";i:13281;s:5:\"title\";s:37:\"Hello Bar | Contact | Interior Design\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp.png\";s:12:\"tmpl_created\";i:1586148801;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/hello-bar-contact-interior-design/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:19:\"[\"interior design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:763;s:11:\"trend_index\";i:679;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:64;a:15:{s:2:\"id\";i:9690;s:5:\"title\";s:17:\"Classic | Contact\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2019/01/Classic_Contact_small_01.png\";s:12:\"tmpl_created\";i:1547011716;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/classic-contact-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:393;s:11:\"trend_index\";i:571;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:65;a:15:{s:2:\"id\";i:9699;s:5:\"title\";s:33:\"Classic | Contact | Gym | Fitness\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2019/01/Classic_Contact_small_02.png\";s:12:\"tmpl_created\";i:1547015827;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/classic-contact-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:475;s:11:\"trend_index\";i:527;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:66;a:15:{s:2:\"id\";i:9571;s:5:\"title\";s:14:\"Fly In | Login\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/FlyIn_Login_01_small.png\";s:12:\"tmpl_created\";i:1547726151;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/fly-in-login-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:622;s:11:\"trend_index\";i:538;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:67;a:15:{s:2:\"id\";i:9740;s:5:\"title\";s:25:\"Classic | Promotion | App\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/app_small.png\";s:12:\"tmpl_created\";i:1547822836;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/classic-promotion-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:624;s:11:\"trend_index\";i:691;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:68;a:15:{s:2:\"id\";i:9762;s:5:\"title\";s:36:\"Classic | Register | Subscribe | Spa\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2019/01/spa_small_classic.png\";s:12:\"tmpl_created\";i:1547824145;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-register-subscribe-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:463;s:11:\"trend_index\";i:436;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:69;a:15:{s:2:\"id\";i:13413;s:5:\"title\";s:33:\"Classic | Contact | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Help.jpg\";s:12:\"tmpl_created\";i:1587474761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/classic-contact-online-course/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:530;s:11:\"trend_index\";i:369;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:70;a:15:{s:2:\"id\";i:9772;s:5:\"title\";s:27:\"Hello bar | Promotion | App\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/app_hello_small.png\";s:12:\"tmpl_created\";i:1547824279;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/hello-bar-promotion-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:760;s:11:\"trend_index\";i:781;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:71;a:15:{s:2:\"id\";i:13402;s:5:\"title\";s:29:\"Classic | CTA | Online Course\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/04/Popup-Course-Completed.jpg\";s:12:\"tmpl_created\";i:1587474772;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-cta-online-course/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:619;s:11:\"trend_index\";i:582;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:72;a:15:{s:2:\"id\";i:13422;s:5:\"title\";s:30:\"Classic | Menu | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1587474782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-menu-online-course/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:516;s:11:\"trend_index\";i:432;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:73;a:15:{s:2:\"id\";i:9793;s:5:\"title\";s:13:\"Fly In | Sale\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2019/01/flyin_black_small.png\";s:12:\"tmpl_created\";i:1547831151;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/popups/fly-in-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:670;s:11:\"trend_index\";i:742;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:74;a:15:{s:2:\"id\";i:9836;s:5:\"title\";s:21:\"Classic | Login | Pop\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/login_b_small.png\";s:12:\"tmpl_created\";i:1547835635;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/popups/classic-login/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:634;s:11:\"trend_index\";i:669;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:75;a:15:{s:2:\"id\";i:9847;s:5:\"title\";s:25:\"Fly In | Promotion | Lego\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/fly_in_promotion_tro.png\";s:12:\"tmpl_created\";i:1547836956;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/fly-in-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:751;s:11:\"trend_index\";i:838;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:76;a:15:{s:2:\"id\";i:9858;s:5:\"title\";s:27:\"Slide In | Promotion | Wine\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2019/01/slide-in_promotion_wine_small.png\";s:12:\"tmpl_created\";i:1547837100;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/slide-in-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:769;s:11:\"trend_index\";i:684;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:77;a:15:{s:2:\"id\";i:13538;s:5:\"title\";s:32:\"Fly-In | Newsletter | Barbershop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/05/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1589893364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/fly-in-newsletter-barbershop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:710;s:11:\"trend_index\";i:667;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:78;a:15:{s:2:\"id\";i:9944;s:5:\"title\";s:33:\"Slide In | Promotion | Headphones\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_head_small.png\";s:12:\"tmpl_created\";i:1547841939;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/slide-in-promotion-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:757;s:11:\"trend_index\";i:700;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:79;a:15:{s:2:\"id\";i:9955;s:5:\"title\";s:14:\"Fly In | Login\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2019/01/flyin_login_lock_small.png\";s:12:\"tmpl_created\";i:1547842065;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/popups/fly-in-login/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:551;s:11:\"trend_index\";i:627;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:80;a:15:{s:2:\"id\";i:9965;s:5:\"title\";s:30:\"Classic | Register | Subscribe\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_moon_small.png\";s:12:\"tmpl_created\";i:1547842174;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:588;s:11:\"trend_index\";i:591;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:81;a:15:{s:2:\"id\";i:9995;s:5:\"title\";s:27:\"Slide In | Sale | Christmas\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_christmas_small.png\";s:12:\"tmpl_created\";i:1547844802;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/slide-in-sale-christmas/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:772;s:11:\"trend_index\";i:817;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:82;a:15:{s:2:\"id\";i:10016;s:5:\"title\";s:16:\"Hello Bar | Sale\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2019/01/Hello-Bar_Promotion_bag_small.png\";s:12:\"tmpl_created\";i:1547845062;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/hello-bar-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:792;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:83;a:15:{s:2:\"id\";i:14067;s:5:\"title\";s:37:\"Slide In | Japanese restaurant | Menu\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Menu-Pop-Up-Small.jpg\";s:12:\"tmpl_created\";i:1592290352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/slide-in-japanese-restaurant-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:650;s:11:\"trend_index\";i:565;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:84;a:15:{s:2:\"id\";i:10026;s:5:\"title\";s:46:\"Classic | Register | Subscribe | Gym | Fitness\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_register_small.png\";s:12:\"tmpl_created\";i:1547845205;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-register-subscribe-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:616;s:11:\"trend_index\";i:587;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:85;a:15:{s:2:\"id\";i:10036;s:5:\"title\";s:43:\"Full Screen | Sale | Promotion | Headphones\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/full_sale_head_small.png\";s:12:\"tmpl_created\";i:1547845409;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/full-screen-sale-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:614;s:11:\"trend_index\";i:717;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:86;a:15:{s:2:\"id\";i:14111;s:5:\"title\";s:36:\"Classic | Japanese restaurant | Sale\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1592300400;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-japanese-restaurant-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:717;s:11:\"trend_index\";i:697;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:87;a:15:{s:2:\"id\";i:10057;s:5:\"title\";s:48:\"Hello Bar | Register | Subscribe | Gym | Fitness\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2019/01/hello-bar_register_sport_small.png\";s:12:\"tmpl_created\";i:1547847938;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/hello-bar-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:764;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:88;a:15:{s:2:\"id\";i:10087;s:5:\"title\";s:25:\"Full Screen | Login | Spa\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2019/01/full-screen_login_spa_small.png\";s:12:\"tmpl_created\";i:1547848301;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/full-screen-login-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:644;s:11:\"trend_index\";i:632;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:89;a:15:{s:2:\"id\";i:10097;s:5:\"title\";s:37:\"Classic | Register | Subscribe | Lego\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_lego_small.png\";s:12:\"tmpl_created\";i:1547848411;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-register-subscribe-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:689;s:11:\"trend_index\";i:758;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:90;a:15:{s:2:\"id\";i:1190;s:5:\"title\";s:26:\"Landing Page &#8211; Hotel\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp2-l.png\";s:12:\"tmpl_created\";i:1490707391;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/landing-page-hotel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:2;s:11:\"trend_index\";i:1;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:91;a:15:{s:2:\"id\";i:9816;s:5:\"title\";s:30:\"Classic | Sale | Gym | Fitness\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_sale_sport_small.png\";s:12:\"tmpl_created\";i:1547991876;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:720;s:11:\"trend_index\";i:823;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:92;a:15:{s:2:\"id\";i:16645;s:5:\"title\";s:28:\"Headphones &#8211; eCommerce\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_headphones.png\";s:12:\"tmpl_created\";i:1609944115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/lp/commerce-headphones/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:39:\"[\"Ecommerce\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:633;s:11:\"trend_index\";i:87;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:93;a:15:{s:2:\"id\";i:8505;s:5:\"title\";s:11:\"404 page 01\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/001.jpg\";s:12:\"tmpl_created\";i:1526415501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:533;s:11:\"trend_index\";i:222;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:94;a:15:{s:2:\"id\";i:9602;s:5:\"title\";s:35:\"Bottom Bar | Announcement | Cookies\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2019/01/Bottombar_Announcement_small_01.png\";s:12:\"tmpl_created\";i:1546964559;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/bottom-bar-announcement-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:600;s:11:\"trend_index\";i:604;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:95;a:15:{s:2:\"id\";i:225;s:5:\"title\";s:27:\"Homepage &#8211; Restaurant\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0016.png\";s:12:\"tmpl_created\";i:1470829872;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/homepage-restaurant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Homepage\",\"Restaurant\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:1;s:11:\"trend_index\";i:2;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:96;a:15:{s:2:\"id\";i:16762;s:5:\"title\";s:25:\"Conference &#8211; Events\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Conference.png\";s:12:\"tmpl_created\";i:1610455119;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/lp/conference-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:60:\"[\"Conference\",\"Convention\",\"Event\",\"Events\",\"Landing Pages\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:705;s:11:\"trend_index\";i:216;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:97;a:15:{s:2:\"id\";i:8511;s:5:\"title\";s:11:\"404 page 02\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/002.jpg\";s:12:\"tmpl_created\";i:1526415528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:347;s:11:\"trend_index\";i:155;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:98;a:15:{s:2:\"id\";i:463;s:5:\"title\";s:22:\"Homepage &#8211; Study\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0022.png\";s:12:\"tmpl_created\";i:1477388340;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/homepage-study/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Education\",\"Homepage\",\"Study\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:4;s:11:\"trend_index\";i:3;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:99;a:15:{s:2:\"id\";i:10277;s:5:\"title\";s:36:\"Bottom Bar | Promotion | Sale | Book\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/book_small.png\";s:12:\"tmpl_created\";i:1548055999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/bottom-bar-promotion-book/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:729;s:11:\"trend_index\";i:802;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:100;a:15:{s:2:\"id\";i:11241;s:5:\"title\";s:36:\"Classic | Digital Agency | Marketing\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/PopUp_small.jpg\";s:12:\"tmpl_created\";i:1564643043;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-digital-agency-marketing/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:362;s:11:\"trend_index\";i:315;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:101;a:15:{s:2:\"id\";i:8512;s:5:\"title\";s:11:\"404 page 03\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/003.jpg\";s:12:\"tmpl_created\";i:1526415449;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-03/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:450;s:11:\"trend_index\";i:375;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:102;a:15:{s:2:\"id\";i:18701;s:5:\"title\";s:32:\"Digital Course &#8211; eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280.jpg\";s:12:\"tmpl_created\";i:1618995134;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/digital-course-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Ecommerce\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:103;a:15:{s:2:\"id\";i:181;s:5:\"title\";s:23:\"Homepage &#8211; Agency\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0019.png\";s:12:\"tmpl_created\";i:1470826567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/homepage-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Agency\",\"Creative\",\"Homepage\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:3;s:11:\"trend_index\";i:4;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:104;a:15:{s:2:\"id\";i:8513;s:5:\"title\";s:11:\"404 page 04\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/004.jpg\";s:12:\"tmpl_created\";i:1526415417;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-04/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:420;s:11:\"trend_index\";i:176;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:105;a:15:{s:2:\"id\";i:18612;s:5:\"title\";s:34:\"Bag Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bag-Product.jpeg\";s:12:\"tmpl_created\";i:1618395406;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/bag-product-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:61:\"[\"Bag\",\"Ecommerce\",\"Landing Pages\",\"Product\",\"Sale\",\"Travel\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:875;s:11:\"trend_index\";i:605;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:106;a:15:{s:2:\"id\";i:9903;s:5:\"title\";s:34:\"Bottom Bar | Promotion | Olive Oil\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2019/01/bottom-bar_promotion_olive_small.png\";s:12:\"tmpl_created\";i:1547838896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/bottom-bar-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:765;s:11:\"trend_index\";i:840;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:107;a:15:{s:2:\"id\";i:150;s:5:\"title\";s:19:\"Product &#8211; App\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0003.png\";s:12:\"tmpl_created\";i:1470829879;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/product-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:6;s:11:\"trend_index\";i:5;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:108;a:15:{s:2:\"id\";i:16473;s:5:\"title\";s:26:\"Beauty Salon &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/about-1.jpg\";s:12:\"tmpl_created\";i:1608622373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/beauty-salon-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"hair\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:615;s:11:\"trend_index\";i:184;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:109;a:15:{s:2:\"id\";i:8514;s:5:\"title\";s:11:\"404 Page 05\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/005.jpg\";s:12:\"tmpl_created\";i:1526415558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-05/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:419;s:11:\"trend_index\";i:220;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:110;a:15:{s:2:\"id\";i:18644;s:5:\"title\";s:37:\"Camera Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/camera_sale_featured-img.jpg\";s:12:\"tmpl_created\";i:1618396388;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/camera-product-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Camera\",\"Ecommerce\",\"Landing Pages\",\"Photography\",\"Sale\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:873;s:11:\"trend_index\";i:535;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:111;a:15:{s:2:\"id\";i:10549;s:5:\"title\";s:33:\"Bottom Bar | Register | Subscribe\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/com_small.png\";s:12:\"tmpl_created\";i:1547967595;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/bottom-bar-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:713;s:11:\"trend_index\";i:666;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:112;a:15:{s:2:\"id\";i:16488;s:5:\"title\";s:28:\"Beauty Salon &#8211; Contact\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/contact.jpg\";s:12:\"tmpl_created\";i:1608622374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/beauty-salon-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"hair\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:548;s:11:\"trend_index\";i:101;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:113;a:15:{s:2:\"id\";i:8523;s:5:\"title\";s:11:\"404 page 06\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/006.jpg\";s:12:\"tmpl_created\";i:1526415291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-06/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:298;s:11:\"trend_index\";i:268;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:114;a:15:{s:2:\"id\";i:16496;s:5:\"title\";s:28:\"Beauty Salon &#8211; Gallery\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/12/gallery-1.jpg\";s:12:\"tmpl_created\";i:1608622379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/beauty-salon-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"hair\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:491;s:11:\"trend_index\";i:90;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:115;a:15:{s:2:\"id\";i:17060;s:5:\"title\";s:36:\"Private Tutor &#8211; Online Service\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Tutor-2.png\";s:12:\"tmpl_created\";i:1610631042;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/private-tutor-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:64:\"[\"Education\",\"Landing Pages\",\"Online Service\",\"Teacher\",\"Tutor\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:780;s:11:\"trend_index\";i:628;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:116;a:15:{s:2:\"id\";i:8524;s:5:\"title\";s:11:\"404 page 07\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/007.jpg\";s:12:\"tmpl_created\";i:1526415337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-07/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:303;s:11:\"trend_index\";i:171;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:117;a:15:{s:2:\"id\";i:18824;s:5:\"title\";s:33:\"Design School &#8211; Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1621336756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/design-school-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:118;a:15:{s:2:\"id\";i:16457;s:5:\"title\";s:25:\"Beauty Salon &#8211; Home\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/home-1.jpg\";s:12:\"tmpl_created\";i:1608622383;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/beauty-salon-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"hair\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:408;s:11:\"trend_index\";i:56;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:119;a:15:{s:2:\"id\";i:17232;s:5:\"title\";s:33:\"Life Coach &#8211; Online Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Life-Coach.png\";s:12:\"tmpl_created\";i:1610902793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/life-coach-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:38:\"[\"Coach\",\"Landing Pages\",\"Life Coach\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:787;s:11:\"trend_index\";i:751;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:120;a:15:{s:2:\"id\";i:8526;s:5:\"title\";s:11:\"404 page 09\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/009.jpg\";s:12:\"tmpl_created\";i:1526415474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-09/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:477;s:11:\"trend_index\";i:285;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:121;a:15:{s:2:\"id\";i:10529;s:5:\"title\";s:36:\"Classic | Announcement | Maintenance\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/icon_small.png\";s:12:\"tmpl_created\";i:1548046309;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/classic-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:474;s:11:\"trend_index\";i:398;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:122;a:15:{s:2:\"id\";i:16518;s:5:\"title\";s:29:\"Beauty Salon &#8211; Services\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/12/services-1.jpg\";s:12:\"tmpl_created\";i:1608622386;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/beauty-salon-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"hair\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:664;s:11:\"trend_index\";i:261;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:123;a:15:{s:2:\"id\";i:16932;s:5:\"title\";s:35:\"Finance Consulting &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Finance-Consulting.png\";s:12:\"tmpl_created\";i:1610532170;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/finance-consulting-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:80:\"[\"Advisor\",\"Business\",\"Consulting\",\"Finance\",\"Investment\",\"Landing Pages\",\"Tax\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:790;s:11:\"trend_index\";i:630;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:124;a:15:{s:2:\"id\";i:8525;s:5:\"title\";s:11:\"404 page 08\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/008.jpg\";s:12:\"tmpl_created\";i:1526415374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-08/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:510;s:11:\"trend_index\";i:575;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:125;a:15:{s:2:\"id\";i:16721;s:5:\"title\";s:35:\"Dental &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Dental.jpg\";s:12:\"tmpl_created\";i:1610448567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/dental-health-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:44:\"[\"Dental\",\"Doctor\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:801;s:11:\"trend_index\";i:655;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:126;a:15:{s:2:\"id\";i:5438;s:5:\"title\";s:7:\"About 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_4.png\";s:12:\"tmpl_created\";i:1520443512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:147;s:11:\"trend_index\";i:9;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:127;a:15:{s:2:\"id\";i:6135;s:5:\"title\";s:8:\"About 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_2.png\";s:12:\"tmpl_created\";i:1520443663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:77;s:11:\"trend_index\";i:47;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:128;a:15:{s:2:\"id\";i:15486;s:5:\"title\";s:25:\"Travel Blog &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/About.jpg\";s:12:\"tmpl_created\";i:1606215720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/travel-blog-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:608;s:11:\"trend_index\";i:343;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:129;a:15:{s:2:\"id\";i:17269;s:5:\"title\";s:34:\"Electronics Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Electronic-Products.png\";s:12:\"tmpl_created\";i:1610903298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/electronics-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:800;s:11:\"trend_index\";i:556;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:130;a:15:{s:2:\"id\";i:15478;s:5:\"title\";s:27:\"Travel Blog &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1606215735;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/travel-blog-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:687;s:11:\"trend_index\";i:564;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:131;a:15:{s:2:\"id\";i:17032;s:5:\"title\";s:42:\"Donate Computer &#8211; Social Involvement\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Donation-2.png\";s:12:\"tmpl_created\";i:1610630585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/donate-computer-social-involvement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:67:\"[\"Computer\",\"Donate\",\"Donation\",\"Kids\",\"Landing Pages\",\"Nonprofit\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:718;s:11:\"trend_index\";i:278;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:132;a:15:{s:2:\"id\";i:5397;s:5:\"title\";s:8:\"About 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1.png\";s:12:\"tmpl_created\";i:1520443503;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:148;s:11:\"trend_index\";i:43;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:133;a:15:{s:2:\"id\";i:15467;s:5:\"title\";s:24:\"Travel Blog &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/11/Home.jpg\";s:12:\"tmpl_created\";i:1606215756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/travel-blog-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:567;s:11:\"trend_index\";i:224;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:134;a:15:{s:2:\"id\";i:16684;s:5:\"title\";s:34:\"SaaS HR Management &#8211; Product\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_hr.png\";s:12:\"tmpl_created\";i:1609945486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/saas-hr-management-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:39:\"[\"HR\",\"Landing Pages\",\"Product\",\"SaaS\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:708;s:11:\"trend_index\";i:292;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:135;a:15:{s:2:\"id\";i:5405;s:5:\"title\";s:8:\"About 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1.png\";s:12:\"tmpl_created\";i:1520443505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:216;s:11:\"trend_index\";i:50;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:136;a:15:{s:2:\"id\";i:15317;s:5:\"title\";s:25:\"Dance Studio &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/10/Home.jpg\";s:12:\"tmpl_created\";i:1603181291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/dance-studio-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"dance studio\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:596;s:11:\"trend_index\";i:301;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:137;a:15:{s:2:\"id\";i:16660;s:5:\"title\";s:37:\"Medical center &#8211; Online service\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-medical-cosultation-250_280.png\";s:12:\"tmpl_created\";i:1609945122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/medical-center-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:44:\"[\"Landing Pages\",\"medical\",\"Online Service\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:750;s:11:\"trend_index\";i:332;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:138;a:15:{s:2:\"id\";i:5421;s:5:\"title\";s:8:\"About 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_3.png\";s:12:\"tmpl_created\";i:1520443509;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:215;s:11:\"trend_index\";i:77;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:139;a:15:{s:2:\"id\";i:5533;s:5:\"title\";s:8:\"About 15\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_10.png\";s:12:\"tmpl_created\";i:1520443534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:21;s:11:\"trend_index\";i:57;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:140;a:15:{s:2:\"id\";i:15334;s:5:\"title\";s:26:\"Dance Studio &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/About.jpg\";s:12:\"tmpl_created\";i:1603181364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/dance-studio-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"dance studio\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:626;s:11:\"trend_index\";i:373;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:141;a:15:{s:2:\"id\";i:17001;s:5:\"title\";s:36:\"Parental Counseling &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/Parenting-Coach-2.png\";s:12:\"tmpl_created\";i:1610534999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/parental-counseling-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:99:\"[\"Advisor\",\"Business\",\"Coach\",\"Counseling\",\"Landing Pages\",\"Online Service\",\"Parental\",\"Parenting\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:817;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:142;a:15:{s:2:\"id\";i:5525;s:5:\"title\";s:8:\"About 14\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_10.png\";s:12:\"tmpl_created\";i:1520443532;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:9;s:11:\"trend_index\";i:29;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:143;a:15:{s:2:\"id\";i:15349;s:5:\"title\";s:28:\"Dance Studio &#8211; Classes\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes.jpg\";s:12:\"tmpl_created\";i:1603181425;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/dance-studio-classes/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"dance studio\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:629;s:11:\"trend_index\";i:458;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:144;a:15:{s:2:\"id\";i:16742;s:5:\"title\";s:31:\"Online Course &#8211; Education\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Course.png\";s:12:\"tmpl_created\";i:1610454122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/online-course-education/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:55:\"[\"Academy\",\"Course Online\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:777;s:11:\"trend_index\";i:776;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:145;a:15:{s:2:\"id\";i:10413;s:5:\"title\";s:28:\"Classic | Content Lock | Pop\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/hot_small.png\";s:12:\"tmpl_created\";i:1547961774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/classic-content-lock/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:752;s:11:\"trend_index\";i:813;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:146;a:15:{s:2:\"id\";i:15366;s:5:\"title\";s:29:\"Dance Studio &#8211; Schedule\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes-Schedule.jpg\";s:12:\"tmpl_created\";i:1603181056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/dance-studio-schedule/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"dance studio\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:698;s:11:\"trend_index\";i:602;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:147;a:15:{s:2:\"id\";i:17284;s:5:\"title\";s:38:\"Dietitian &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/01/Dietitian.png\";s:12:\"tmpl_created\";i:1610903484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/dietitian-health-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Health\",\"landscape design\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:814;s:11:\"trend_index\";i:800;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:148;a:15:{s:2:\"id\";i:5429;s:5:\"title\";s:8:\"About 16\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_4.png\";s:12:\"tmpl_created\";i:1520443510;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:59;s:11:\"trend_index\";i:8;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:149;a:15:{s:2:\"id\";i:15373;s:5:\"title\";s:28:\"Dance Studio &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Pricing.jpg\";s:12:\"tmpl_created\";i:1603181678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/dance-studio-pricing/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"dance studio\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:731;s:11:\"trend_index\";i:661;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:150;a:15:{s:2:\"id\";i:16897;s:5:\"title\";s:30:\"Personal Chef &#8211; Business\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Personal-Chef.png\";s:12:\"tmpl_created\";i:1610466247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/personal-chef-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:53:\"[\"Business\",\"Chef\",\"Food\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:795;s:11:\"trend_index\";i:617;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:151;a:15:{s:2:\"id\";i:5464;s:5:\"title\";s:8:\"About 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_6.png\";s:12:\"tmpl_created\";i:1520443518;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:220;s:11:\"trend_index\";i:142;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:152;a:15:{s:2:\"id\";i:10223;s:5:\"title\";s:15:\"Classic | Login\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/welcome_small.png\";s:12:\"tmpl_created\";i:1547887343;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:497;s:11:\"trend_index\";i:503;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:153;a:15:{s:2:\"id\";i:15384;s:5:\"title\";s:28:\"Dance Studio &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/10/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1603181738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/dance-studio-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"dance studio\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:741;s:11:\"trend_index\";i:721;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:154;a:15:{s:2:\"id\";i:10559;s:5:\"title\";s:33:\"Bottom Bar | Register | Subscribe\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/fly_small.png\";s:12:\"tmpl_created\";i:1547967711;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/bottom-bar-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:714;s:11:\"trend_index\";i:729;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:155;a:15:{s:2:\"id\";i:16946;s:5:\"title\";s:52:\"Online Full-Stack Developer Course &#8211; Education\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Full-Stack-Developer-Course.png\";s:12:\"tmpl_created\";i:1610532778;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/lp/online-full-stack-developer-course-education/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:76:\"[\"Academy\",\"Coding\",\"Course Online\",\"Developer\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:805;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:156;a:15:{s:2:\"id\";i:5504;s:5:\"title\";s:8:\"About 18\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_9.png\";s:12:\"tmpl_created\";i:1520443528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:104;s:11:\"trend_index\";i:46;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:157;a:15:{s:2:\"id\";i:15158;s:5:\"title\";s:26:\"Psychologist &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/About.jpg\";s:12:\"tmpl_created\";i:1600157561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/psychologist-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:618;s:11:\"trend_index\";i:426;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:158;a:15:{s:2:\"id\";i:10403;s:5:\"title\";s:15:\"Classic | Login\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/hello_small.png\";s:12:\"tmpl_created\";i:1548056371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:627;s:11:\"trend_index\";i:659;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:159;a:15:{s:2:\"id\";i:16868;s:5:\"title\";s:40:\"Virtual Assistant &#8211; Online Service\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/01/Virtual-Assistant-250x280-1.png\";s:12:\"tmpl_created\";i:1610465656;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/virtual-assistant-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:46:\"[\"Assistant\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:793;s:11:\"trend_index\";i:757;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:160;a:15:{s:2:\"id\";i:5515;s:5:\"title\";s:8:\"About 19\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_9.png\";s:12:\"tmpl_created\";i:1520443530;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:268;s:11:\"trend_index\";i:161;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:161;a:15:{s:2:\"id\";i:15197;s:5:\"title\";s:28:\"Psychologist &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1600160499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/psychologist-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:666;s:11:\"trend_index\";i:558;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:162;a:15:{s:2:\"id\";i:16812;s:5:\"title\";s:40:\"Construction Project &#8211; Real Estate\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Construction-Project.png\";s:12:\"tmpl_created\";i:1610463582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/construction-project-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:59:\"[\"Construction\",\"Landing Pages\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:796;s:11:\"trend_index\";i:724;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:163;a:15:{s:2:\"id\";i:9913;s:5:\"title\";s:27:\"Classic | Login | Christmas\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/log_small.png\";s:12:\"tmpl_created\";i:1547841430;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:542;s:11:\"trend_index\";i:417;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:164;a:15:{s:2:\"id\";i:5472;s:5:\"title\";s:7:\"About 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_7.png\";s:12:\"tmpl_created\";i:1520443520;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:210;s:11:\"trend_index\";i:116;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:165;a:15:{s:2:\"id\";i:15142;s:5:\"title\";s:25:\"Psychologist &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Home.jpg\";s:12:\"tmpl_created\";i:1600156308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/psychologist-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:464;s:11:\"trend_index\";i:297;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:166;a:15:{s:2:\"id\";i:16960;s:5:\"title\";s:44:\"Dog &amp; Cat Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2021/01/Dog-Food.png\";s:12:\"tmpl_created\";i:1610533581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/dog-cat-food-delivery-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:71:\"[\"Business\",\"Cat\",\"Delivery\",\"Dog\",\"Food\",\"Landing Pages\",\"Pet\",\"Pets\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:782;s:11:\"trend_index\";i:510;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:167;a:15:{s:2:\"id\";i:5455;s:5:\"title\";s:8:\"About 20\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_6.png\";s:12:\"tmpl_created\";i:1520443516;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:134;s:11:\"trend_index\";i:70;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:168;a:15:{s:2:\"id\";i:15188;s:5:\"title\";s:28:\"Psychologist &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/09/Pricing.jpg\";s:12:\"tmpl_created\";i:1600159731;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/psychologist-pricing/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:732;s:11:\"trend_index\";i:537;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:169;a:15:{s:2:\"id\";i:17095;s:5:\"title\";s:36:\"Mobile Pet Grooming &#8211; Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Mobile-Pet-Grooming.png\";s:12:\"tmpl_created\";i:1610632115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/mobile-pet-grooming-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:38:\"[\"Dog\",\"Groom\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:786;s:11:\"trend_index\";i:731;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:170;a:15:{s:2:\"id\";i:5413;s:5:\"title\";s:8:\"About 21\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2.png\";s:12:\"tmpl_created\";i:1520443507;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:83;s:11:\"trend_index\";i:52;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:171;a:15:{s:2:\"id\";i:15167;s:5:\"title\";s:29:\"Psychologist &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/09/Services.jpg\";s:12:\"tmpl_created\";i:1600158206;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/psychologist-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:606;s:11:\"trend_index\";i:379;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:172;a:15:{s:2:\"id\";i:17245;s:5:\"title\";s:34:\"Marketing Course &#8211; Education\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2021/01/PPC.png\";s:12:\"tmpl_created\";i:1610902958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/marketing-course-education/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:45:\"[\"Course Online\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:770;s:11:\"trend_index\";i:430;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:173;a:15:{s:2:\"id\";i:5447;s:5:\"title\";s:7:\"About 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_5.png\";s:12:\"tmpl_created\";i:1520443514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:48;s:11:\"trend_index\";i:12;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:174;a:15:{s:2:\"id\";i:14932;s:5:\"title\";s:30:\"Flooring Company &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/About.png\";s:12:\"tmpl_created\";i:1597740110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/flooring-company-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:488;s:11:\"trend_index\";i:319;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:175;a:15:{s:2:\"id\";i:16983;s:5:\"title\";s:41:\"Pilates Instructor &#8211; Online Service\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Pilates-Instructor.png\";s:12:\"tmpl_created\";i:1610534138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/pilates-instructor-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:70:\"[\"Free Trial\",\"Instructor\",\"Landing Pages\",\"Online Service\",\"Pilates\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:778;s:11:\"trend_index\";i:412;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:176;a:15:{s:2:\"id\";i:5480;s:5:\"title\";s:7:\"About 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_7-1.png\";s:12:\"tmpl_created\";i:1520443522;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-4-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:428;s:11:\"trend_index\";i:303;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:177;a:15:{s:2:\"id\";i:14998;s:5:\"title\";s:32:\"Flooring Company &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/08/Contact-Us.png\";s:12:\"tmpl_created\";i:1597740222;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/flooring-company-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:553;s:11:\"trend_index\";i:380;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:178;a:15:{s:2:\"id\";i:6027;s:5:\"title\";s:7:\"About 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1-1.png\";s:12:\"tmpl_created\";i:1520443639;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-5-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:40;s:11:\"trend_index\";i:40;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:179;a:15:{s:2:\"id\";i:18568;s:5:\"title\";s:32:\"Flower Delivery &#8211; Business\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/04/Flower-Delivery.png\";s:12:\"tmpl_created\";i:1617546716;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/flower-delivery-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:37:\"[\"Delivery\",\"Flower\",\"Landing Pages\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:874;s:11:\"trend_index\";i:763;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:180;a:15:{s:2:\"id\";i:9592;s:5:\"title\";s:26:\"Classic | Promotion | Sale\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/Classic_Promotion_small_01.png\";s:12:\"tmpl_created\";i:1546963720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/classic-promotion-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:663;s:11:\"trend_index\";i:807;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:181;a:15:{s:2:\"id\";i:10210;s:5:\"title\";s:29:\"Classic | Promotion | Webinar\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/web_small-1.png\";s:12:\"tmpl_created\";i:1547886103;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-promotion-webinar/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:784;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:182;a:15:{s:2:\"id\";i:14965;s:5:\"title\";s:32:\"Flooring Company &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/Gallery.png\";s:12:\"tmpl_created\";i:1597740353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/flooring-company-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:371;s:11:\"trend_index\";i:291;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:183;a:15:{s:2:\"id\";i:6036;s:5:\"title\";s:7:\"About 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1-1.png\";s:12:\"tmpl_created\";i:1520443641;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-6-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:90;s:11:\"trend_index\";i:123;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:184;a:15:{s:2:\"id\";i:16917;s:5:\"title\";s:22:\"Webinar &#8211; Events\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Webinar-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610466822;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/lp/webinar-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:36:\"[\"Events\",\"Landing Pages\",\"Webinar\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:821;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:185;a:15:{s:2:\"id\";i:14947;s:5:\"title\";s:33:\"Flooring company &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/08/Services.png\";s:12:\"tmpl_created\";i:1597740551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/flooring-company-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:538;s:11:\"trend_index\";i:392;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:186;a:15:{s:2:\"id\";i:17079;s:5:\"title\";s:42:\"Calls Volunteer &#8211; Social Involvement\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Calls-Volunteer.png\";s:12:\"tmpl_created\";i:1610631774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/calls-volunteer-social-involvement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:68:\"[\"Care\",\"Covid-19\",\"Help\",\"Involvement\",\"Landing Pages\",\"Volunteer\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:854;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:187;a:15:{s:2:\"id\";i:5488;s:5:\"title\";s:7:\"About 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_8.png\";s:12:\"tmpl_created\";i:1520443524;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:307;s:11:\"trend_index\";i:169;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:188;a:15:{s:2:\"id\";i:14901;s:5:\"title\";s:29:\"Flooring Company &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Home.png\";s:12:\"tmpl_created\";i:1597740474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/flooring-company-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:387;s:11:\"trend_index\";i:185;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:189;a:15:{s:2:\"id\";i:6122;s:5:\"title\";s:7:\"About 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2-1.png\";s:12:\"tmpl_created\";i:1520443661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:38;s:11:\"trend_index\";i:26;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:190;a:15:{s:2:\"id\";i:16836;s:5:\"title\";s:33:\"Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/01/Marketing-Agency-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610464490;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/marketing-agency-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:74:\"[\"Agency\",\"Business\",\"Landing Pages\",\"Marketing\",\"Marketing Landing Page\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:816;s:11:\"trend_index\";i:787;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:191;a:15:{s:2:\"id\";i:16785;s:5:\"title\";s:42:\"Gym Promotion &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Gym-LP.jpg\";s:12:\"tmpl_created\";i:1610455496;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/gym-promotion-health-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:42:\"[\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:820;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:192;a:15:{s:2:\"id\";i:10047;s:5:\"title\";s:15:\"Classic | Login\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/yellow_small.png\";s:12:\"tmpl_created\";i:1547847757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:522;s:11:\"trend_index\";i:513;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:193;a:15:{s:2:\"id\";i:5496;s:5:\"title\";s:7:\"About 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_8-1.png\";s:12:\"tmpl_created\";i:1520443526;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:523;s:11:\"trend_index\";i:453;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:194;a:15:{s:2:\"id\";i:14737;s:5:\"title\";s:32:\"Luxury Real Estate &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/About.png\";s:12:\"tmpl_created\";i:1595313527;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/luxury-real-estate-about-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"real estate\",\"realestate\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:150;s:11:\"trend_index\";i:447;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:195;a:15:{s:2:\"id\";i:18492;s:5:\"title\";s:34:\"Bicycle Pre-Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bike-Landing-Page.png\";s:12:\"tmpl_created\";i:1617535552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/bicycle-pre-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:34:\"[\"Bicycle\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:871;s:11:\"trend_index\";i:826;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:196;a:15:{s:2:\"id\";i:8961;s:5:\"title\";s:9:\"archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.1.jpg\";s:12:\"tmpl_created\";i:1528639909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:79;s:11:\"trend_index\";i:15;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:197;a:15:{s:2:\"id\";i:9879;s:5:\"title\";s:38:\"Classic | Register | Subscribe | Leads\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/dog_small.png\";s:12:\"tmpl_created\";i:1547838416;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:676;s:11:\"trend_index\";i:761;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:198;a:15:{s:2:\"id\";i:14756;s:5:\"title\";s:34:\"Luxury Real Estate &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Contact-Us.png\";s:12:\"tmpl_created\";i:1595313519;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/luxury-real-estate-contact-us-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"real estate\",\"realestate\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:610;s:11:\"trend_index\";i:569;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:199;a:15:{s:2:\"id\";i:18349;s:5:\"title\";s:39:\"Virtual try-on glasses &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-8.png\";s:12:\"tmpl_created\";i:1614772569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/virtual-try-on-glasses-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:64:\"[\"Fashion\",\"Glasses\",\"Landing Pages\",\"Online Service\",\"Virtual\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:848;s:11:\"trend_index\";i:803;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:200;a:15:{s:2:\"id\";i:8969;s:5:\"title\";s:9:\"archive 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.2.jpg\";s:12:\"tmpl_created\";i:1528700014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:250;s:11:\"trend_index\";i:124;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:201;a:15:{s:2:\"id\";i:14716;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Home.png\";s:12:\"tmpl_created\";i:1595313512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/luxury-real-estate-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"real estate\",\"realestate\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:394;s:11:\"trend_index\";i:165;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:202;a:15:{s:2:\"id\";i:17458;s:5:\"title\";s:31:\"Moving Company &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Moving-Company.png\";s:12:\"tmpl_created\";i:1612727025;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/moving-company-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"Landing Pages\",\"Movers\",\"moving\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:826;s:11:\"trend_index\";i:767;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:203;a:15:{s:2:\"id\";i:8973;s:5:\"title\";s:9:\"archive 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.3.jpg\";s:12:\"tmpl_created\";i:1528700205;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:176;s:11:\"trend_index\";i:54;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:204;a:15:{s:2:\"id\";i:14763;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; News\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/07/news-Archive.png\";s:12:\"tmpl_created\";i:1595313273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/luxury-real-estate-news-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"real estate\",\"realestate\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:404;s:11:\"trend_index\";i:167;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:205;a:15:{s:2:\"id\";i:18517;s:5:\"title\";s:29:\"Food Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Food-Blog.png\";s:12:\"tmpl_created\";i:1617539897;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/food-blog-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:45:\"[\"Blog\",\"Coming Soon\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:844;s:11:\"trend_index\";i:672;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:206;a:15:{s:2:\"id\";i:8977;s:5:\"title\";s:9:\"archive 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.4.jpg\";s:12:\"tmpl_created\";i:1528700326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:354;s:11:\"trend_index\";i:396;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:207;a:15:{s:2:\"id\";i:13960;s:5:\"title\";s:32:\"Japanese restaurant &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/06/Home-Page.jpg\";s:12:\"tmpl_created\";i:1592289775;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/japanese-restaurant-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:537;s:11:\"trend_index\";i:287;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:208;a:15:{s:2:\"id\";i:10297;s:5:\"title\";s:14:\"Classic | Sale\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/s_yellow_small.png\";s:12:\"tmpl_created\";i:1548056099;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:590;s:11:\"trend_index\";i:607;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:209;a:15:{s:2:\"id\";i:17379;s:5:\"title\";s:33:\"IT Service &#8211; Online Service\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-IT-Service.png\";s:12:\"tmpl_created\";i:1612713022;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/it-service-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:41:\"[\"IT\",\"Landing Pages\",\"Remote\",\"Support\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:806;s:11:\"trend_index\";i:634;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:210;a:15:{s:2:\"id\";i:8981;s:5:\"title\";s:9:\"archive 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.5.jpg\";s:12:\"tmpl_created\";i:1528700484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:333;s:11:\"trend_index\";i:195;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:211;a:15:{s:2:\"id\";i:13993;s:5:\"title\";s:45:\"Japanese restaurant &#8211; Chef&#8217;s Menu\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/06/Chef_s-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/japanese-restaurant-chefs-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:651;s:11:\"trend_index\";i:675;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:212;a:15:{s:2:\"id\";i:10393;s:5:\"title\";s:14:\"Classic | Sale\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/blue_small.png\";s:12:\"tmpl_created\";i:1548056682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:678;s:11:\"trend_index\";i:837;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:213;a:15:{s:2:\"id\";i:18560;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1617542761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/lp/finance-learning-platform-under-construction/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:843;s:11:\"trend_index\";i:561;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:214;a:15:{s:2:\"id\";i:8985;s:5:\"title\";s:9:\"archive 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.6.jpg\";s:12:\"tmpl_created\";i:1528700612;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:204;s:11:\"trend_index\";i:95;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:215;a:15:{s:2:\"id\";i:14012;s:5:\"title\";s:36:\"Japanese restaurant &#8211; Bar Menu\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/06/Bar-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/japanese-restaurant-bar-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:735;s:11:\"trend_index\";i:829;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:216;a:15:{s:2:\"id\";i:18528;s:5:\"title\";s:36:\"Home Decor Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1617541784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/home-decor-store-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"interior design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:872;s:11:\"trend_index\";i:819;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:217;a:15:{s:2:\"id\";i:8989;s:5:\"title\";s:9:\"archive 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.7.jpg\";s:12:\"tmpl_created\";i:1528701063;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:208;s:11:\"trend_index\";i:111;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:218;a:15:{s:2:\"id\";i:13917;s:5:\"title\";s:33:\"Japanese restaurant &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/06/About-Page.jpg\";s:12:\"tmpl_created\";i:1592289629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/japanese-restaurant-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:640;s:11:\"trend_index\";i:389;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:219;a:15:{s:2:\"id\";i:10579;s:5:\"title\";s:14:\"Classic | Sale\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/sale1_small.png\";s:12:\"tmpl_created\";i:1547967887;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:712;s:11:\"trend_index\";i:782;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:220;a:15:{s:2:\"id\";i:17504;s:5:\"title\";s:29:\"Hair Stylist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-3.png\";s:12:\"tmpl_created\";i:1612883014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/hair-stylist-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:59:\"[\"Business\",\"Hair\",\"hairdresser\",\"Landing Pages\",\"stylist\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:840;s:11:\"trend_index\";i:806;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:221;a:15:{s:2:\"id\";i:8996;s:5:\"title\";s:9:\"archive 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.8.jpg\";s:12:\"tmpl_created\";i:1528701290;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:227;s:11:\"trend_index\";i:153;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:222;a:15:{s:2:\"id\";i:13937;s:5:\"title\";s:35:\"Japanese restaurant &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1592289748;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/japanese-restaurant-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:648;s:11:\"trend_index\";i:551;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:223;a:15:{s:2:\"id\";i:18449;s:5:\"title\";s:46:\"Aesthetic Clinic &#8211; Health &#038; Fitness\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/03/Aesthetic-Clinic.png\";s:12:\"tmpl_created\";i:1616682181;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/aesthetic-clinic-health-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:57:\"[\"Aesthetic\",\"Beauty\",\"Fitness\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:859;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:224;a:15:{s:2:\"id\";i:9001;s:5:\"title\";s:9:\"archive 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.9.jpg\";s:12:\"tmpl_created\";i:1528701433;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:265;s:11:\"trend_index\";i:208;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:225;a:15:{s:2:\"id\";i:14030;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Events\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/06/Events-Page.jpg\";s:12:\"tmpl_created\";i:1592289713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/japanese-restaurant-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:723;s:11:\"trend_index\";i:711;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:226;a:15:{s:2:\"id\";i:17353;s:5:\"title\";s:44:\"Online Cooking Course &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-2.png\";s:12:\"tmpl_created\";i:1612705144;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/lp/online-cooking-course-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Cooking\",\"Course Online\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:845;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:227;a:15:{s:2:\"id\";i:13528;s:5:\"title\";s:22:\"Barbershop &#8211; 404\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/05/404-Page.jpg\";s:12:\"tmpl_created\";i:1589893152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/barbershop-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:768;s:11:\"trend_index\";i:681;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:228;a:15:{s:2:\"id\";i:13984;s:5:\"title\";s:40:\"Japanese restaurant &#8211; Reservations\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/reservations.jpg\";s:12:\"tmpl_created\";i:1592294757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/japanese-restaurant-reservations/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:715;s:11:\"trend_index\";i:727;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:229;a:15:{s:2:\"id\";i:18550;s:5:\"title\";s:39:\"Online Store &#8211; Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1617542506;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/online-store-under-construction/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"online shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:832;s:11:\"trend_index\";i:600;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:230;a:15:{s:2:\"id\";i:13518;s:5:\"title\";s:26:\"Barbershop &#8211; Archive\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Blog-Page.jpg\";s:12:\"tmpl_created\";i:1589893157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/barbershop-archive/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:737;s:11:\"trend_index\";i:523;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:231;a:15:{s:2:\"id\";i:13479;s:5:\"title\";s:23:\"Barbershop &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Home-Page.jpg\";s:12:\"tmpl_created\";i:1589893275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/barbershop-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:683;s:11:\"trend_index\";i:832;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:232;a:15:{s:2:\"id\";i:18539;s:5:\"title\";s:40:\"Travel Agency &#8211; Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1617610273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/travel-agency-under-construction/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:876;s:11:\"trend_index\";i:652;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:233;a:15:{s:2:\"id\";i:13604;s:5:\"title\";s:25:\"Barbershop &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1589893147;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/barbershop-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"footer\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:555;s:11:\"trend_index\";i:267;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:234;a:15:{s:2:\"id\";i:13503;s:5:\"title\";s:24:\"Barbershop &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/05/About-Page.jpg\";s:12:\"tmpl_created\";i:1589893289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/barbershop-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:744;s:11:\"trend_index\";i:739;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:235;a:15:{s:2:\"id\";i:10180;s:5:\"title\";s:21:\"Fly In | Announcement\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/glass_small.png\";s:12:\"tmpl_created\";i:1548045309;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/fly-in-announcement-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:686;s:11:\"trend_index\";i:788;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:236;a:15:{s:2:\"id\";i:18270;s:5:\"title\";s:24:\"Open week &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280.png\";s:12:\"tmpl_created\";i:1614767186;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/lp/open-week-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:59:\"[\"Education\",\"Event\",\"Events\",\"Landing Pages\",\"University\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:831;s:11:\"trend_index\";i:673;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:237;a:15:{s:2:\"id\";i:13612;s:5:\"title\";s:25:\"Barbershop &#8211; Header\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/06/barber-shop-header.jpg\";s:12:\"tmpl_created\";i:1589893142;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/barbershop-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"header\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:343;s:11:\"trend_index\";i:137;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:238;a:15:{s:2:\"id\";i:13548;s:5:\"title\";s:27:\"Barbershop &#8211; Services\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/05/Services-Page.jpg\";s:12:\"tmpl_created\";i:1589893298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/barbershop-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:761;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:239;a:15:{s:2:\"id\";i:18300;s:5:\"title\";s:30:\"Makeup Artist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-2.png\";s:12:\"tmpl_created\";i:1614768608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/makeup-artist-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Beauty\",\"Business\",\"Course Online\",\"Landing Pages\",\"Makeup\",\"Online Service\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:861;s:11:\"trend_index\";i:783;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:240;a:15:{s:2:\"id\";i:13621;s:5:\"title\";s:30:\"Barbershop &#8211; Single Post\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/05/Single-Page.jpg\";s:12:\"tmpl_created\";i:1589893137;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/barbershop-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:736;s:11:\"trend_index\";i:580;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:241;a:15:{s:2:\"id\";i:13560;s:5:\"title\";s:26:\"Barbershop &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1589893307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/barbershop-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:756;s:11:\"trend_index\";i:822;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:242;a:15:{s:2:\"id\";i:16527;s:5:\"title\";s:24:\"Beauty Salon &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/12/404.jpg\";s:12:\"tmpl_created\";i:1608622517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/beauty-salon-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:29:\"[\"404\",\"Beauty salon\",\"hair\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:742;s:11:\"trend_index\";i:563;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:243;a:15:{s:2:\"id\";i:18329;s:5:\"title\";s:63:\"Online Real Estate Investment Conference &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-5.png\";s:12:\"tmpl_created\";i:1614770404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/lp/online-real-estate-investment-conference-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:76:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Online Event\",\"Real estate\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:866;s:11:\"trend_index\";i:779;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:244;a:15:{s:2:\"id\";i:13587;s:5:\"title\";s:26:\"Barbershop &#8211; Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/05/Contact-Us-Page.jpg\";s:12:\"tmpl_created\";i:1589893315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/barbershop-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:753;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:245;a:15:{s:2:\"id\";i:9731;s:5:\"title\";s:26:\"Classic | Sale | Promotion\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/icecream_small.png\";s:12:\"tmpl_created\";i:1547976166;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/popups/classic-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:635;s:11:\"trend_index\";i:648;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:246;a:15:{s:2:\"id\";i:16535;s:5:\"title\";s:27:\"Beauty Salon &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Footer.jpg\";s:12:\"tmpl_created\";i:1608622498;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/beauty-salon-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:32:\"[\"Beauty salon\",\"Footer\",\"hair\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:524;s:11:\"trend_index\";i:126;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:247;a:15:{s:2:\"id\";i:18391;s:5:\"title\";s:45:\"Children&#8217;s Optometrist &#8211; Business\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Childrens-Optometrist.png\";s:12:\"tmpl_created\";i:1614773564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/childrens-optometrist-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:85:\"[\"Business\",\"Children\",\"Eye\",\"Glasses\",\"Health\",\"Kids\",\"Landing Pages\",\"Optometrist\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:877;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:248;a:15:{s:2:\"id\";i:13307;s:5:\"title\";s:26:\"Online Course &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.jpg\";s:12:\"tmpl_created\";i:1587474541;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/online-course-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:230;s:11:\"trend_index\";i:125;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:249;a:15:{s:2:\"id\";i:16545;s:5:\"title\";s:27:\"Beauty Salon &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Header.jpg\";s:12:\"tmpl_created\";i:1608622495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/beauty-salon-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:32:\"[\"Beauty salon\",\"hair\",\"Header\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:356;s:11:\"trend_index\";i:49;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:250;a:15:{s:2:\"id\";i:18366;s:5:\"title\";s:30:\"Car Insurance &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Car-Insurance.png\";s:12:\"tmpl_created\";i:1614773263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/car-insurance-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"car\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:869;s:11:\"trend_index\";i:797;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:251;a:15:{s:2:\"id\";i:13328;s:5:\"title\";s:27:\"Online Course &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.jpg\";s:12:\"tmpl_created\";i:1587474558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/online-course-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:508;s:11:\"trend_index\";i:429;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:252;a:15:{s:2:\"id\";i:7686;s:5:\"title\";s:12:\"Blog Posts 1\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2018/03/blog_posts.png\";s:12:\"tmpl_created\";i:1521558047;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/blog-posts-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:26:\"[\"archive\",\"Blog\",\"posts\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:131;s:11:\"trend_index\";i:152;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:253;a:15:{s:2:\"id\";i:18291;s:5:\"title\";s:47:\"Grill Restaurant Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Food-Delivery-LP.png\";s:12:\"tmpl_created\";i:1614767830;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/grill-restaurant-food-delivery-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Delivery\",\"Delivery Service\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:819;s:11:\"trend_index\";i:685;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:254;a:15:{s:2:\"id\";i:13338;s:5:\"title\";s:33:\"Online Course &#8211; Course Page\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Course-Page.png\";s:12:\"tmpl_created\";i:1587474574;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/online-course-course-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:337;s:11:\"trend_index\";i:310;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:255;a:15:{s:2:\"id\";i:18340;s:5:\"title\";s:30:\"Restaurant &#8211; Coming Soon\";s:9:\"thumbnail\";s:98:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Restuarant-Coming-Soon-LP.png\";s:12:\"tmpl_created\";i:1614772183;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/restaurant-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:51:\"[\"Coming Soon\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:810;s:11:\"trend_index\";i:809;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:256;a:15:{s:2:\"id\";i:13352;s:5:\"title\";s:29:\"Online Course &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1587474591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/online-course-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:565;s:11:\"trend_index\";i:533;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:257;a:15:{s:2:\"id\";i:5283;s:5:\"title\";s:9:\"Clients 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_2.png\";s:12:\"tmpl_created\";i:1520443478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/clients-1-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:294;s:11:\"trend_index\";i:202;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:258;a:15:{s:2:\"id\";i:17480;s:5:\"title\";s:42:\"At-home Massage Therapist &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/02/At-Home-Massage-Therapist.jpg\";s:12:\"tmpl_created\";i:1612879264;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/at-home-massage-therapist-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:60:\"[\"Business\",\"Health\",\"Landing Pages\",\"Services\",\"Therapist\"]\";s:10:\"menu_order\";i:50;s:16:\"popularity_index\";i:856;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:259;a:15:{s:2:\"id\";i:13187;s:5:\"title\";s:33:\"Interior Design &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.png\";s:12:\"tmpl_created\";i:1586148661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/interior-design-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"business\",\"interior design\"]\";s:10:\"menu_order\";i:50;s:16:\"popularity_index\";i:331;s:11:\"trend_index\";i:264;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:260;a:15:{s:2:\"id\";i:5306;s:5:\"title\";s:10:\"Clients 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_3.png\";s:12:\"tmpl_created\";i:1520443484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:50;s:16:\"popularity_index\";i:657;s:11:\"trend_index\";i:581;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:261;a:15:{s:2:\"id\";i:18317;s:5:\"title\";s:26:\"Insurance &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Life-Insirance.png\";s:12:\"tmpl_created\";i:1614769488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/lp/insurance-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:61:\"[\"Business\",\"Family\",\"Financial\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:870;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:262;a:15:{s:2:\"id\";i:13199;s:5:\"title\";s:29:\"Interior Design &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.png\";s:12:\"tmpl_created\";i:1586148666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/interior-design-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"business\",\"interior design\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:316;s:11:\"trend_index\";i:334;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:263;a:15:{s:2:\"id\";i:5341;s:5:\"title\";s:10:\"Clients 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_4.png\";s:12:\"tmpl_created\";i:1520443491;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:603;s:11:\"trend_index\";i:633;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:264;a:15:{s:2:\"id\";i:17401;s:5:\"title\";s:40:\"Conference Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280.png\";s:12:\"tmpl_created\";i:1612724753;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/conference-thank-you-page-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:59:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:799;s:11:\"trend_index\";i:540;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:265;a:15:{s:2:\"id\";i:13214;s:5:\"title\";s:32:\"Interior Design &#8211; Projects\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/portfolio_s.jpg\";s:12:\"tmpl_created\";i:1586148672;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/interior-design-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"business\",\"interior design\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:367;s:11:\"trend_index\";i:323;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:266;a:15:{s:2:\"id\";i:5315;s:5:\"title\";s:10:\"Clients 12\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4-1.png\";s:12:\"tmpl_created\";i:1520443486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:485;s:11:\"trend_index\";i:263;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:267;a:15:{s:2:\"id\";i:17368;s:5:\"title\";s:38:\"Real Estate Agency &#8211; Real-Estate\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Real-Estate.png\";s:12:\"tmpl_created\";i:1612711814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/real-estate-agency-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:73:\"[\"Landing Pages\",\"listing\",\"Real estate\",\"Realestate\",\"realtor\",\"realty\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:858;s:11:\"trend_index\";i:777;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:268;a:15:{s:2:\"id\";i:13229;s:5:\"title\";s:31:\"Interior Design &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.png\";s:12:\"tmpl_created\";i:1586148677;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/interior-design-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"business\",\"interior design\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:395;s:11:\"trend_index\";i:337;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:269;a:15:{s:2:\"id\";i:5333;s:5:\"title\";s:10:\"Clients 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_6.png\";s:12:\"tmpl_created\";i:1520443489;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:234;s:11:\"trend_index\";i:128;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:270;a:15:{s:2:\"id\";i:17423;s:5:\"title\";s:57:\"Volunteer Calls Thank You Page &#8211; Social Involvement\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/02/Volunteer-Calls-TYP.jpg\";s:12:\"tmpl_created\";i:1612726058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/lp/volunteer-calls-thank-you-page-social-involvement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:62:\"[\"Care\",\"Involvement\",\"Landing Pages\",\"Thank You\",\"Volunteer\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:857;s:11:\"trend_index\";i:818;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:271;a:15:{s:2:\"id\";i:12948;s:5:\"title\";s:29:\"Photography &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Home_s.png\";s:12:\"tmpl_created\";i:1582093442;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/photography-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:241;s:11:\"trend_index\";i:201;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:272;a:15:{s:2:\"id\";i:5389;s:5:\"title\";s:10:\"Clients 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_9.png\";s:12:\"tmpl_created\";i:1520443501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:407;s:11:\"trend_index\";i:307;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:273;a:15:{s:2:\"id\";i:10005;s:5:\"title\";s:38:\"Fly In | Promotion | Spa | Body Lotion\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/01/Flyin_lotion_small.png\";s:12:\"tmpl_created\";i:1547844909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/fly-in-promotion-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:755;s:11:\"trend_index\";i:760;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:274;a:15:{s:2:\"id\";i:10424;s:5:\"title\";s:21:\"Fly In | Announcement\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/flower_small.png\";s:12:\"tmpl_created\";i:1547961866;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/fly-in-announcement-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:677;s:11:\"trend_index\";i:753;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:275;a:15:{s:2:\"id\";i:17409;s:5:\"title\";s:37:\"Webinar Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Webinar-TYP.png\";s:12:\"tmpl_created\";i:1612725644;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/webinar-thank-you-page-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:56:\"[\"Event\",\"Events\",\"Landing Pages\",\"Thank You\",\"Webinar\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:868;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:276;a:15:{s:2:\"id\";i:12798;s:5:\"title\";s:25:\"Photography &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/About_s.png\";s:12:\"tmpl_created\";i:1582093446;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/photography-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:499;s:11:\"trend_index\";i:374;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:277;a:15:{s:2:\"id\";i:5298;s:5:\"title\";s:10:\"Clients 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_3.png\";s:12:\"tmpl_created\";i:1520443482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:465;s:11:\"trend_index\";i:520;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:278;a:15:{s:2:\"id\";i:9975;s:5:\"title\";s:24:\"Fly In | Promotion | App\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2019/01/flyin_webinar_app_small.png\";s:12:\"tmpl_created\";i:1547842284;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/fly-in-promotion-webinar/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:774;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:279;a:15:{s:2:\"id\";i:17258;s:5:\"title\";s:32:\"Beauty Product &#8211; eCommerce\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Beauty-Product.png\";s:12:\"tmpl_created\";i:1610903153;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/beauty-product-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:38:\"[\"beauty\",\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:797;s:11:\"trend_index\";i:703;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:280;a:15:{s:2:\"id\";i:12868;s:5:\"title\";s:27:\"Photography &#8211; Contact\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Contact_s.png\";s:12:\"tmpl_created\";i:1582093450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/photography-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:531;s:11:\"trend_index\";i:350;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:281;a:15:{s:2:\"id\";i:5381;s:5:\"title\";s:10:\"Clients 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_9.png\";s:12:\"tmpl_created\";i:1520443499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:198;s:11:\"trend_index\";i:168;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:282;a:15:{s:2:\"id\";i:10067;s:5:\"title\";s:31:\"Fly In | Announcement | Cookies\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/fly-in_cookie_yellow_small.png\";s:12:\"tmpl_created\";i:1547848075;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/fly-in-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:582;s:11:\"trend_index\";i:619;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:283;a:15:{s:2:\"id\";i:17435;s:5:\"title\";s:39:\"Gym &#8211; App Service &#8211; Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-4.png\";s:12:\"tmpl_created\";i:1612726462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/gym-app-service-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:58:\"[\"App\",\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:767;s:11:\"trend_index\";i:577;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:284;a:15:{s:2:\"id\";i:13056;s:5:\"title\";s:28:\"Photography &#8211; Wildlife\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/02/Wildlife_s.png\";s:12:\"tmpl_created\";i:1582093454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/photography-wildlife/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:579;s:11:\"trend_index\";i:656;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:285;a:15:{s:2:\"id\";i:5357;s:5:\"title\";s:9:\"Clients 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_7.png\";s:12:\"tmpl_created\";i:1520443495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/clients-2-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:341;s:11:\"trend_index\";i:232;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:286;a:15:{s:2:\"id\";i:17111;s:5:\"title\";s:33:\"Sunglasses Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/01/Sunglasses-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610632408;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/sunglasses-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Ecommerce\",\"Fashion\",\"Landing Pages\",\"Sale\",\"Sunglasses\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:812;s:11:\"trend_index\";i:732;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:287;a:15:{s:2:\"id\";i:12922;s:5:\"title\";s:37:\"Photography &#8211; Glowing Jellyfish\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Jellyfish_S.png\";s:12:\"tmpl_created\";i:1582093457;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photography-glowing-jellyfish/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:628;s:11:\"trend_index\";i:532;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:288;a:15:{s:2:\"id\";i:5290;s:5:\"title\";s:9:\"Clients 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_2.png\";s:12:\"tmpl_created\";i:1520443480;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/clients-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:545;s:11:\"trend_index\";i:502;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:289;a:15:{s:2:\"id\";i:10329;s:5:\"title\";s:25:\"Fly In | Sale | Promotion\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/organic_small.png\";s:12:\"tmpl_created\";i:1547893478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/fly-in-sale-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:781;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:290;a:15:{s:2:\"id\";i:17223;s:5:\"title\";s:25:\"Fashion &#8211; eCommerce\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/01/Commerce-Fashion.png\";s:12:\"tmpl_created\";i:1610902553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/lp/fashion-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:808;s:11:\"trend_index\";i:745;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:291;a:15:{s:2:\"id\";i:12875;s:5:\"title\";s:36:\"Photography &#8211; Fluttering Birds\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Birds_s.png\";s:12:\"tmpl_created\";i:1582093461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/photography-fluttering-birds/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:693;s:11:\"trend_index\";i:766;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:292;a:15:{s:2:\"id\";i:5266;s:5:\"title\";s:9:\"Clients 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_1.png\";s:12:\"tmpl_created\";i:1520443474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:95;s:11:\"trend_index\";i:134;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:293;a:15:{s:2:\"id\";i:17017;s:5:\"title\";s:28:\"Shoes Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Shoes-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610535361;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/lp/shoes-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:55:\"[\"Discount\",\"Ecommerce\",\"Landing Pages\",\"Sale\",\"Shoes\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:803;s:11:\"trend_index\";i:642;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:294;a:15:{s:2:\"id\";i:12962;s:5:\"title\";s:26:\"Photography &#8211; Nature\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Nature_s.png\";s:12:\"tmpl_created\";i:1582093465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/photography-nature/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:592;s:11:\"trend_index\";i:778;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:295;a:15:{s:2:\"id\";i:9650;s:5:\"title\";s:36:\"Fly In | Register | Subscribe | Sale\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2019/01/Fly-In_Register_small_01a.png\";s:12:\"tmpl_created\";i:1547007598;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/popups/fly-in-register_big-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:771;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:296;a:15:{s:2:\"id\";i:5275;s:5:\"title\";s:9:\"Clients 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_1.png\";s:12:\"tmpl_created\";i:1520443476;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:334;s:11:\"trend_index\";i:321;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:297;a:15:{s:2:\"id\";i:17301;s:5:\"title\";s:53:\"Personal Chef &#8211; Thank You Page &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/TYP-Personal-Chef.jpg\";s:12:\"tmpl_created\";i:1610903622;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/personal-chef-thank-you-page-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:43:\"[\"Chef\",\"Food\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:823;s:11:\"trend_index\";i:754;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:298;a:15:{s:2:\"id\";i:12833;s:5:\"title\";s:38:\"Photography &#8211; Blossoming Flowers\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Flowers_s.png\";s:12:\"tmpl_created\";i:1582093469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photography-blossoming-flowers/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:597;s:11:\"trend_index\";i:750;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:299;a:15:{s:2:\"id\";i:5349;s:5:\"title\";s:9:\"Clients 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_7.png\";s:12:\"tmpl_created\";i:1520443493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:233;s:11:\"trend_index\";i:92;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:300;a:15:{s:2:\"id\";i:17313;s:5:\"title\";s:60:\"Development Course  &#8211; Thank You Page &#8211; Education\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Dev-Course-TYP-.png\";s:12:\"tmpl_created\";i:1610903776;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/development-course-thank-you-page-education/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Education\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:62;s:16:\"popularity_index\";i:834;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:301;a:15:{s:2:\"id\";i:12898;s:5:\"title\";s:36:\"Photography &#8211; Forest Mushrooms\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Mushrooms_s.png\";s:12:\"tmpl_created\";i:1582093473;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/photography-forest-mushrooms/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:62;s:16:\"popularity_index\";i:667;s:11:\"trend_index\";i:649;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:302;a:15:{s:2:\"id\";i:5324;s:5:\"title\";s:9:\"Clients 8\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5-1.png\";s:12:\"tmpl_created\";i:1520443488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:62;s:16:\"popularity_index\";i:526;s:11:\"trend_index\";i:381;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:303;a:15:{s:2:\"id\";i:10200;s:5:\"title\";s:33:\"Full Screen | Content Lock | Wine\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/lock_wine_small.png\";s:12:\"tmpl_created\";i:1548055635;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/full-screen-content-lock/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:719;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:304;a:15:{s:2:\"id\";i:16192;s:5:\"title\";s:30:\"Management App &#8211; Product\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/01/app.-landing-page.jpg\";s:12:\"tmpl_created\";i:1607866881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/management-app-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:33:\"[\"App\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:827;s:11:\"trend_index\";i:765;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:305;a:15:{s:2:\"id\";i:12994;s:5:\"title\";s:24:\"Photography &#8211; Pets\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Pets_s.png\";s:12:\"tmpl_created\";i:1582093477;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/photography-pets/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:612;s:11:\"trend_index\";i:508;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:306;a:15:{s:2:\"id\";i:5368;s:5:\"title\";s:9:\"Clients 9\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_8.png\";s:12:\"tmpl_created\";i:1520443497;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:253;s:11:\"trend_index\";i:273;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:307;a:15:{s:2:\"id\";i:15839;s:5:\"title\";s:29:\"Chiropractor &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Chiropractor.png\";s:12:\"tmpl_created\";i:1607855449;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/chiropractor-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:37:\"[\"Business\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:828;s:11:\"trend_index\";i:709;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:308;a:15:{s:2:\"id\";i:10287;s:5:\"title\";s:34:\"Full Screen | Register | Subscribe\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/01/glass_pink_small.png\";s:12:\"tmpl_created\";i:1547994301;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/full-screen-login-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:602;s:11:\"trend_index\";i:439;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:309;a:15:{s:2:\"id\";i:4436;s:5:\"title\";s:11:\"Contact  16\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_2.png\";s:12:\"tmpl_created\";i:1520443293;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:161;s:11:\"trend_index\";i:68;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:310;a:15:{s:2:\"id\";i:12805;s:5:\"title\";s:38:\"Photography &#8211; B&#038;W Portraits\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Black_s.png\";s:12:\"tmpl_created\";i:1582093481;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/photography-bw-portraits/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:695;s:11:\"trend_index\";i:735;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:311;a:15:{s:2:\"id\";i:15827;s:5:\"title\";s:32:\"Creative Agency &#8211; Business\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/07/Get_Started_250.png\";s:12:\"tmpl_created\";i:1607855280;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/creative-agency-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:168:\"[\"Agency\",\"bootstrap\",\"Business\",\"corporate\",\"Landing Pages\",\"Marketing Campaign\",\"Marketing Landing Page\",\"Product launch\",\"software\",\"Startup\",\"startup landing page\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:748;s:11:\"trend_index\";i:363;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:312;a:15:{s:2:\"id\";i:4420;s:5:\"title\";s:9:\"Contact 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_1.png\";s:12:\"tmpl_created\";i:1520443289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/contact-1-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:196;s:11:\"trend_index\";i:127;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:313;a:15:{s:2:\"id\";i:13031;s:5:\"title\";s:33:\"Photography &#8211; Vivid Parrots\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Parrots_s.png\";s:12:\"tmpl_created\";i:1582093484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/photography-vivid-parrots/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:660;s:11:\"trend_index\";i:643;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:314;a:15:{s:2:\"id\";i:5836;s:5:\"title\";s:10:\"Contact 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:114;s:11:\"trend_index\";i:76;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:315;a:15:{s:2:\"id\";i:16120;s:5:\"title\";s:37:\"Life coach Tom &#8211; Online Service\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2017/02/Landin-Page-Coacher.png\";s:12:\"tmpl_created\";i:1607865812;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/life-coach-tom-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:30:\"[\"Consulting\",\"Landing Pages\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:818;s:11:\"trend_index\";i:796;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:316;a:15:{s:2:\"id\";i:12621;s:5:\"title\";s:26:\"Magazine &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/01/Home_s.png\";s:12:\"tmpl_created\";i:1579060604;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/magazine-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:167;s:11:\"trend_index\";i:121;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:317;a:15:{s:2:\"id\";i:9889;s:5:\"title\";s:28:\"Full Screen | Login | Cactus\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/cac_small.png\";s:12:\"tmpl_created\";i:1547838722;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/full-screen-login/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:743;s:11:\"trend_index\";i:713;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:318;a:15:{s:2:\"id\";i:5844;s:5:\"title\";s:10:\"Contact 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_2.png\";s:12:\"tmpl_created\";i:1520443599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:289;s:11:\"trend_index\";i:313;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:319;a:15:{s:2:\"id\";i:16059;s:5:\"title\";s:34:\"Melbourne Conference &#8211; Event\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2017/01/convention-landing-page.jpg\";s:12:\"tmpl_created\";i:1607864236;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/melbourne-conference-event/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:25:\"[\"Event\",\"Landing Pages\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:841;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:320;a:15:{s:2:\"id\";i:12352;s:5:\"title\";s:24:\"Travel &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/12/Home_s.png\";s:12:\"tmpl_created\";i:1575960464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/travel-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:291;s:11:\"trend_index\";i:194;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:321;a:15:{s:2:\"id\";i:10077;s:5:\"title\";s:29:\"Fly In | Register | Subscribe\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2019/01/flyin_register_blue_small.png\";s:12:\"tmpl_created\";i:1547848197;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/fly-in-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:540;s:11:\"trend_index\";i:574;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:322;a:15:{s:2:\"id\";i:16073;s:5:\"title\";s:56:\"International Women&#8217;s Day Conference &#8211; Event\";s:9:\"thumbnail\";s:109:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-International-Womens-Day-Conference.png\";s:12:\"tmpl_created\";i:1607864979;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/international-womens-day-conference-event/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:25:\"[\"Event\",\"Landing Pages\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:865;s:11:\"trend_index\";i:789;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:323;a:15:{s:2:\"id\";i:12400;s:5:\"title\";s:20:\"Travel &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/12/About.png\";s:12:\"tmpl_created\";i:1575960441;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/travel-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:444;s:11:\"trend_index\";i:445;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:324;a:15:{s:2:\"id\";i:4476;s:5:\"title\";s:10:\"Contact 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_4.png\";s:12:\"tmpl_created\";i:1520443303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:229;s:11:\"trend_index\";i:187;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:325;a:15:{s:2:\"id\";i:16085;s:5:\"title\";s:29:\"Tech Conference &#8211; Event\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Tech-Conference.png\";s:12:\"tmpl_created\";i:1607865227;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/tech-conference-event/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:25:\"[\"Event\",\"Landing Pages\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:851;s:11:\"trend_index\";i:747;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:326;a:15:{s:2:\"id\";i:10362;s:5:\"title\";s:32:\"Full Screen | Login | Restaurant\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/vip_small.png\";s:12:\"tmpl_created\";i:1548056253;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/full-screen-login-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:587;s:11:\"trend_index\";i:560;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:327;a:15:{s:2:\"id\";i:12479;s:5:\"title\";s:20:\"Travel &#8211; Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Tours_s.png\";s:12:\"tmpl_created\";i:1575960474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/travel-tours/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:539;s:11:\"trend_index\";i:726;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:328;a:15:{s:2:\"id\";i:5214;s:5:\"title\";s:10:\"Contact 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_2.png\";s:12:\"tmpl_created\";i:1520443462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/contact-16-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:194;s:11:\"trend_index\";i:106;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:329;a:15:{s:2:\"id\";i:16102;s:5:\"title\";s:38:\"Environmental Conference &#8211; Event\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Sustainability-Conference.png\";s:12:\"tmpl_created\";i:1607865473;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/environmental-conference-event/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:25:\"[\"Event\",\"Landing Pages\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:833;s:11:\"trend_index\";i:772;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:330;a:15:{s:2:\"id\";i:12466;s:5:\"title\";s:27:\"Travel &#8211; Testimonials\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/Testimonials.png\";s:12:\"tmpl_created\";i:1575960469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/travel-testimonials/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:527;s:11:\"trend_index\";i:481;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:331;a:15:{s:2:\"id\";i:5230;s:5:\"title\";s:10:\"Contact 17\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_3.png\";s:12:\"tmpl_created\";i:1520443466;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:339;s:11:\"trend_index\";i:335;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:332;a:15:{s:2:\"id\";i:15931;s:5:\"title\";s:37:\"Tokyo Design Conference &#8211; Event\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/11/conference-250.png\";s:12:\"tmpl_created\";i:1607861271;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/tokyo-design-conference-event/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:815;s:11:\"trend_index\";i:644;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:333;a:15:{s:2:\"id\";i:10454;s:5:\"title\";s:29:\"Full Screen | Promotion | App\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/appy_small.png\";s:12:\"tmpl_created\";i:1548056896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/full-screen-promotion-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:776;s:11:\"trend_index\";i:804;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:334;a:15:{s:2:\"id\";i:12443;s:5:\"title\";s:22:\"Travel &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Gallery.png\";s:12:\"tmpl_created\";i:1575960459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/travel-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:467;s:11:\"trend_index\";i:501;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:335;a:15:{s:2:\"id\";i:5257;s:5:\"title\";s:10:\"Contact 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5.png\";s:12:\"tmpl_created\";i:1520443472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:438;s:11:\"trend_index\";i:490;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:336;a:15:{s:2:\"id\";i:5820;s:5:\"title\";s:9:\"Contact 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:183;s:11:\"trend_index\";i:357;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:337;a:15:{s:2:\"id\";i:16412;s:5:\"title\";s:36:\"Photography Coupon &#8211; eCommerce\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-02.png\";s:12:\"tmpl_created\";i:1607869919;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/photography-coupon-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:52:\"[\"Coupon\",\"Ecommerce\",\"Landing Pages\",\"Photography\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:862;s:11:\"trend_index\";i:749;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:338;a:15:{s:2:\"id\";i:12431;s:5:\"title\";s:18:\"Travel &#8211; FAQ\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/FAQ.png\";s:12:\"tmpl_created\";i:1575960453;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:100:\"https://library.elementor.com/travel-faq/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:501;s:11:\"trend_index\";i:387;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:339;a:15:{s:2:\"id\";i:9803;s:5:\"title\";s:41:\"Full Screen | Register | Contact | Meetup\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2019/01/designme_full_small.png\";s:12:\"tmpl_created\";i:1547831298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/full-screen-register-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:701;s:11:\"trend_index\";i:808;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:340;a:15:{s:2:\"id\";i:10611;s:5:\"title\";s:18:\"Full Screen | Sale\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/fla_small.png\";s:12:\"tmpl_created\";i:1547968868;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/full-screen-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:779;s:11:\"trend_index\";i:792;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:341;a:15:{s:2:\"id\";i:16183;s:5:\"title\";s:32:\"Luxury Homes &#8211; Real Estate\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2017/03/Agency.png\";s:12:\"tmpl_created\";i:1607866726;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/lp/landing-page-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:31:\"[\"Landing Pages\",\"Real estate\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:835;s:11:\"trend_index\";i:768;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:342;a:15:{s:2:\"id\";i:12421;s:5:\"title\";s:27:\"Travel &#8211; Contact Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/12/Contsct-Us.png\";s:12:\"tmpl_created\";i:1575960445;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/travel-contact-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:571;s:11:\"trend_index\";i:536;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:343;a:15:{s:2:\"id\";i:4411;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_1.png\";s:12:\"tmpl_created\";i:1520443287;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/contact-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:113;s:11:\"trend_index\";i:217;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:344;a:15:{s:2:\"id\";i:5828;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443595;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:312;s:11:\"trend_index\";i:495;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:345;a:15:{s:2:\"id\";i:16420;s:5:\"title\";s:36:\"Spring Sale Coupon &#8211; eCommerce\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-03.png\";s:12:\"tmpl_created\";i:1607899243;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/spring-sale-coupon-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:55:\"[\"Coupon\",\"Ecommerce\",\"Fashion\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:852;s:11:\"trend_index\";i:756;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:346;a:15:{s:2:\"id\";i:11763;s:5:\"title\";s:27:\"Portfolio &#8211; Home Page\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Homepage_small.png\";s:12:\"tmpl_created\";i:1569428959;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/portfolio-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:280;s:11:\"trend_index\";i:241;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:347;a:15:{s:2:\"id\";i:10508;s:5:\"title\";s:25:\"Full Screen | Welcome Mat\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/hand_small-1.png\";s:12:\"tmpl_created\";i:1547964711;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/full-screen-welcome-mat-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:711;s:11:\"trend_index\";i:793;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:348;a:15:{s:2:\"id\";i:16427;s:5:\"title\";s:34:\"Dream Car Coupon &#8211; eCommerce\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-01.png\";s:12:\"tmpl_created\";i:1607934325;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/dream-car-coupon-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:53:\"[\"Coupon\",\"Ecommerce\",\"Landing Pages\",\"Offer\",\"Sale\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:863;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:349;a:15:{s:2:\"id\";i:11781;s:5:\"title\";s:23:\"Portfolio &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/About_small.png\";s:12:\"tmpl_created\";i:1569428955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/portfolio-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:349;s:11:\"trend_index\";i:290;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:350;a:15:{s:2:\"id\";i:4428;s:5:\"title\";s:9:\"Contact 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_2.png\";s:12:\"tmpl_created\";i:1520443291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:118;s:11:\"trend_index\";i:131;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:351;a:15:{s:2:\"id\";i:16433;s:5:\"title\";s:42:\"Leshnik Mega Sale Coupon &#8211; eCommerce\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-04.png\";s:12:\"tmpl_created\";i:1607934474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/leshnik-mega-sale-coupon-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:45:\"[\"Coupon\",\"Ecommerce\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:867;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:352;a:15:{s:2:\"id\";i:11793;s:5:\"title\";s:26:\"Portfolio &#8211; Projects\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Projects_small.png\";s:12:\"tmpl_created\";i:1569428951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/portfolio-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:448;s:11:\"trend_index\";i:467;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:353;a:15:{s:2:\"id\";i:4444;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443295;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:84;s:11:\"trend_index\";i:93;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:354;a:15:{s:2:\"id\";i:9934;s:5:\"title\";s:38:\"Full Screen | Welcome Mat | Teddy Bear\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/full_mat_teddy_small.png\";s:12:\"tmpl_created\";i:1547841787;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/full-screen-welcome-mat/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:681;s:11:\"trend_index\";i:752;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:355;a:15:{s:2:\"id\";i:15986;s:5:\"title\";s:40:\"From Freelance to Business &#8211; Ebook\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Ebook-1.png\";s:12:\"tmpl_created\";i:1607862915;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/from-freelance-to-business-ebook/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:5:\"Ebook\";s:4:\"tags\";s:143:\"[\"App\",\"author\",\"book\",\"brochure\",\"download\",\"e-book\",\"ebook\",\"Landing Pages\",\"Marketing\",\"Product\",\"publisher\",\"sell online\",\"seo\",\"showcase\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:837;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:356;a:15:{s:2:\"id\";i:11800;s:5:\"title\";s:25:\"Portfolio &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/09/Contact_small.png\";s:12:\"tmpl_created\";i:1569428946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/portfolio-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:494;s:11:\"trend_index\";i:449;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:357;a:15:{s:2:\"id\";i:4492;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_3.png\";s:12:\"tmpl_created\";i:1520443307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/contact-5-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:37;s:11:\"trend_index\";i:31;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:358;a:15:{s:2:\"id\";i:16002;s:5:\"title\";s:30:\"Architect Manual &#8211; Ebook\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Ebook-2.png\";s:12:\"tmpl_created\";i:1607863075;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/architect-manual-ebook/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:5:\"Ebook\";s:4:\"tags\";s:25:\"[\"Ebook\",\"Landing Pages\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:836;s:11:\"trend_index\";i:827;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:359;a:15:{s:2:\"id\";i:11163;s:5:\"title\";s:32:\"Digital Agency &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/07/Home_small.png\";s:12:\"tmpl_created\";i:1564641877;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/digital-agency-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:57;s:11:\"trend_index\";i:32;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:360;a:15:{s:2:\"id\";i:4452;s:5:\"title\";s:9:\"Contact 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:139;s:11:\"trend_index\";i:150;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:361;a:15:{s:2:\"id\";i:9709;s:5:\"title\";s:25:\"Full Screen | Welcome Mat\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2019/01/Full-Screen_Welcome-Mat_01_small-1.png\";s:12:\"tmpl_created\";i:1547023834;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/full-screen-welcome-mat-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:728;s:11:\"trend_index\";i:728;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:362;a:15:{s:2:\"id\";i:16014;s:5:\"title\";s:23:\"Good Life &#8211; Ebook\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Ebook-3.png\";s:12:\"tmpl_created\";i:1607863305;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/lp/good-life-ebook/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:5:\"Ebook\";s:4:\"tags\";s:25:\"[\"Ebook\",\"Landing Pages\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:807;s:11:\"trend_index\";i:646;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:363;a:15:{s:2:\"id\";i:4468;s:5:\"title\";s:9:\"Contact 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_3.png\";s:12:\"tmpl_created\";i:1520443301;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:127;s:11:\"trend_index\";i:72;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:364;a:15:{s:2:\"id\";i:9139;s:5:\"title\";s:25:\"Homepage &#8211; Business\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/07/Get_Started_250.png\";s:12:\"tmpl_created\";i:1532949924;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/homepage-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:167:\"[\"Agency\",\"bootstrap\",\"business\",\"corporate\",\"Landing Page\",\"marketing campaign\",\"marketing landing page\",\"product launch\",\"software\",\"Startup\",\"startup landing page\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:7;s:11:\"trend_index\";i:7;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:365;a:15:{s:2:\"id\";i:9671;s:5:\"title\";s:34:\"Hello Bar | Announcement | Cookies\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2019/01/Top-Bar_Announcement_small_01.png\";s:12:\"tmpl_created\";i:1547010259;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/hello-bar-announcement-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:639;s:11:\"trend_index\";i:598;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:366;a:15:{s:2:\"id\";i:10234;s:5:\"title\";s:38:\"Hello Bar | Announcement | Maintenance\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/pink_small.png\";s:12:\"tmpl_created\";i:1548055049;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/popups/hello-bar-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:746;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:367;a:15:{s:2:\"id\";i:16242;s:5:\"title\";s:37:\"Fashion Season Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2016/12/fashion-landing-page.jpg\";s:12:\"tmpl_created\";i:1607867761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/fashion-season-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:34:\"[\"Fashion\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:813;s:11:\"trend_index\";i:746;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:368;a:15:{s:2:\"id\";i:1634;s:5:\"title\";s:33:\"Landing Page &#8211; Chiropractor\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Chiropractor.png\";s:12:\"tmpl_created\";i:1494352119;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-chiropractor/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:223;s:11:\"trend_index\";i:360;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:369;a:15:{s:2:\"id\";i:4484;s:5:\"title\";s:9:\"Contact 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_3.png\";s:12:\"tmpl_created\";i:1520443305;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:328;s:11:\"trend_index\";i:260;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:370;a:15:{s:2:\"id\";i:16202;s:5:\"title\";s:39:\"Starlight Nation Festival &#8211; Event\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2016/12/festival.jpg\";s:12:\"tmpl_created\";i:1607867113;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/starlight-nation-festival-event/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:25:\"[\"Event\",\"Landing Pages\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:842;s:11:\"trend_index\";i:770;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:371;a:15:{s:2:\"id\";i:12143;s:5:\"title\";s:22:\"Law Firm &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/about.png\";s:12:\"tmpl_created\";i:1572847069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/law-firm-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:350;s:11:\"trend_index\";i:344;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:372;a:15:{s:2:\"id\";i:4460;s:5:\"title\";s:9:\"Contact 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:99;s:11:\"trend_index\";i:80;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:373;a:15:{s:2:\"id\";i:16139;s:5:\"title\";s:37:\"Financial Consultant &#8211; Business\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Financial-consultant.png\";s:12:\"tmpl_created\";i:1607866334;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/financial-consultant-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:40:\"[\"Consulting\",\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:824;s:11:\"trend_index\";i:798;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:374;a:15:{s:2:\"id\";i:5558;s:5:\"title\";s:5:\"CTA 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_2.png\";s:12:\"tmpl_created\";i:1520520684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:129;s:11:\"trend_index\";i:69;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:375;a:15:{s:2:\"id\";i:12091;s:5:\"title\";s:21:\"Law Firm &#8211; Team\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/team.png\";s:12:\"tmpl_created\";i:1572847113;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/law-firm-team/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:318;s:11:\"trend_index\";i:314;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:376;a:15:{s:2:\"id\";i:15822;s:5:\"title\";s:30:\"Family Vacation &#8211; Travel\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp2-l.png\";s:12:\"tmpl_created\";i:1607855143;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/family-vacation-travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:37:\"[\"Landing Pages\",\"Travel\",\"Vacation\"]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:773;s:11:\"trend_index\";i:593;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:377;a:15:{s:2:\"id\";i:11129;s:5:\"title\";s:28:\"Digital Agency &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/About_small.png\";s:12:\"tmpl_created\";i:1564641889;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/digital-agency-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:182;s:11:\"trend_index\";i:166;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:378;a:15:{s:2:\"id\";i:5939;s:5:\"title\";s:6:\"CTA 10\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_13-1.png\";s:12:\"tmpl_created\";i:1520520760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:190;s:11:\"trend_index\";i:118;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:379;a:15:{s:2:\"id\";i:9869;s:5:\"title\";s:28:\"Hello Bar | Promotion | Sale\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/01/ru_small.png\";s:12:\"tmpl_created\";i:1547837269;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/hello-bar-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:766;s:11:\"trend_index\";i:820;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:380;a:15:{s:2:\"id\";i:15964;s:5:\"title\";s:31:\"Law Convention &#8211; Business\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2017/11/Law-Convention-–-Landing-Page.png\";s:12:\"tmpl_created\";i:1607862731;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/law-convention-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:36:\"[\"Convention\",\"Landing Pages\",\"Law\"]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:860;s:11:\"trend_index\";i:794;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:381;a:15:{s:2:\"id\";i:10539;s:5:\"title\";s:19:\"Hello Bar | Contact\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/01/hello_pink_small.png\";s:12:\"tmpl_created\";i:1548056994;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/hello-bar-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:726;s:11:\"trend_index\";i:810;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:382;a:15:{s:2:\"id\";i:11572;s:5:\"title\";s:19:\"Gym &#8211; Trainer\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Trainer_Small.png\";s:12:\"tmpl_created\";i:1567392934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-trainer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:521;s:11:\"trend_index\";i:590;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:383;a:15:{s:2:\"id\";i:5930;s:5:\"title\";s:6:\"CTA 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_15.png\";s:12:\"tmpl_created\";i:1520520758;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:76;s:11:\"trend_index\";i:84;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:384;a:15:{s:2:\"id\";i:15910;s:5:\"title\";s:38:\"Litigation Law Office &#8211; Business\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Law-Office.png\";s:12:\"tmpl_created\";i:1607860827;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/litigation-law-office-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:32:\"[\"Landing Pages\",\"Law\",\"Office\"]\";s:10:\"menu_order\";i:85;s:16:\"popularity_index\";i:825;s:11:\"trend_index\";i:719;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:385;a:15:{s:2:\"id\";i:1504;s:5:\"title\";s:33:\"Landing Page &#8211; Mobile App 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-app2.png\";s:12:\"tmpl_created\";i:1494352112;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-mobile-app-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:85;s:16:\"popularity_index\";i:174;s:11:\"trend_index\";i:367;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:386;a:15:{s:2:\"id\";i:5921;s:5:\"title\";s:6:\"CTA 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_14.png\";s:12:\"tmpl_created\";i:1520520757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:85;s:16:\"popularity_index\";i:278;s:11:\"trend_index\";i:234;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:387;a:15:{s:2:\"id\";i:16025;s:5:\"title\";s:33:\"Conoco Mobile App &#8211; Product\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2017/03/app.png\";s:12:\"tmpl_created\";i:1607863511;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/conoco-mobile-app-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:27:\"[\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:789;s:11:\"trend_index\";i:698;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:388;a:15:{s:2:\"id\";i:5607;s:5:\"title\";s:6:\"CTA 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_5.png\";s:12:\"tmpl_created\";i:1520520695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:42;s:11:\"trend_index\";i:11;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:389;a:15:{s:2:\"id\";i:12133;s:5:\"title\";s:24:\"Law Firm &#8211; Careers\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/11/careers.png\";s:12:\"tmpl_created\";i:1572847078;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/law-firm-careers/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:583;s:11:\"trend_index\";i:640;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:390;a:15:{s:2:\"id\";i:15853;s:5:\"title\";s:29:\"Me Mobile App &#8211; Product\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-app1.png\";s:12:\"tmpl_created\";i:1607857451;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/me-mobile-app-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:27:\"[\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:87;s:16:\"popularity_index\";i:811;s:11:\"trend_index\";i:704;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:391;a:15:{s:2:\"id\";i:6017;s:5:\"title\";s:6:\"CTA 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_14.png\";s:12:\"tmpl_created\";i:1520520331;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:87;s:16:\"popularity_index\";i:152;s:11:\"trend_index\";i:122;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:392;a:15:{s:2:\"id\";i:12155;s:5:\"title\";s:26:\"Law Firm &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/home.png\";s:12:\"tmpl_created\";i:1572847054;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/law-firm-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:87;s:16:\"popularity_index\";i:193;s:11:\"trend_index\";i:110;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:393;a:15:{s:2:\"id\";i:15844;s:5:\"title\";s:32:\"Torel Mobile App &#8211; Product\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-app2.png\";s:12:\"tmpl_created\";i:1607856863;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/torel-mobile-app-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:27:\"[\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:822;s:11:\"trend_index\";i:812;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:394;a:15:{s:2:\"id\";i:5885;s:5:\"title\";s:6:\"CTA 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_11.png\";s:12:\"tmpl_created\";i:1520520751;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:274;s:11:\"trend_index\";i:256;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:395;a:15:{s:2:\"id\";i:12080;s:5:\"title\";s:24:\"Law Firm &#8211; Partner\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/11/partner-1.png\";s:12:\"tmpl_created\";i:1572847120;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/law-firm-partner/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:556;s:11:\"trend_index\";i:471;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:396;a:15:{s:2:\"id\";i:16041;s:5:\"title\";s:31:\"Nano Mobile App &#8211; Product\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-app3.png\";s:12:\"tmpl_created\";i:1607863992;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/landing-page-mobile-app-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:27:\"[\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:847;s:11:\"trend_index\";i:723;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:397;a:15:{s:2:\"id\";i:10147;s:5:\"title\";s:34:\"Hello Bar | Sale | Promotion | Pop\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/donut_small.png\";s:12:\"tmpl_created\";i:1548055522;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/hello-bar-sale-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:775;s:11:\"trend_index\";i:824;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:398;a:15:{s:2:\"id\";i:11074;s:5:\"title\";s:31:\"Digital Agency &#8211; Services\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/07/Services_small.png\";s:12:\"tmpl_created\";i:1564641872;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/digital-agency-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:163;s:11:\"trend_index\";i:170;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:399;a:15:{s:2:\"id\";i:5877;s:5:\"title\";s:6:\"CTA 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_10.png\";s:12:\"tmpl_created\";i:1520520749;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:564;s:11:\"trend_index\";i:677;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:400;a:15:{s:2:\"id\";i:15890;s:5:\"title\";s:39:\"Personal Trainer &#8211; Online Service\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Personal-Trainer.png\";s:12:\"tmpl_created\";i:1607860512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/personal-trainer-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:35:\"[\"Fitness\",\"Landing Pages\",\"Sport\"]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:838;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:401;a:15:{s:2:\"id\";i:11506;s:5:\"title\";s:19:\"Gym &#8211; Classes\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Classes_Small.png\";s:12:\"tmpl_created\";i:1567392930;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-classes/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:514;s:11:\"trend_index\";i:554;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:402;a:15:{s:2:\"id\";i:5860;s:5:\"title\";s:6:\"CTA 17\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_9.png\";s:12:\"tmpl_created\";i:1520520746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:120;s:11:\"trend_index\";i:63;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:403;a:15:{s:2:\"id\";i:9923;s:5:\"title\";s:23:\"Slide In | Announcement\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/slide-in_ann_italian_small.png\";s:12:\"tmpl_created\";i:1547841537;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/slide-in-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:699;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:404;a:15:{s:2:\"id\";i:1503;s:5:\"title\";s:33:\"Landing Page &#8211; Mobile App 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-app1.png\";s:12:\"tmpl_created\";i:1494352113;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-mobile-app-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:165;s:11:\"trend_index\";i:191;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:405;a:15:{s:2:\"id\";i:16233;s:5:\"title\";s:36:\"Journey Photography &#8211; Business\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp1-l.png\";s:12:\"tmpl_created\";i:1607867416;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/journey-photography-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:42:\"[\"Business\",\"Landing Pages\",\"Photography\"]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:788;s:11:\"trend_index\";i:594;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:406;a:15:{s:2:\"id\";i:10117;s:5:\"title\";s:23:\"Slide In | Announcement\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/white_small.png\";s:12:\"tmpl_created\";i:1548066998;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/slide-in-announcement-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:727;s:11:\"trend_index\";i:662;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:407;a:15:{s:2:\"id\";i:5869;s:5:\"title\";s:6:\"CTA 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_10.png\";s:12:\"tmpl_created\";i:1520520747;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:345;s:11:\"trend_index\";i:486;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:408;a:15:{s:2:\"id\";i:16162;s:5:\"title\";s:29:\"Private Chef &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Private-Chef.png\";s:12:\"tmpl_created\";i:1607866578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/private-chef-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:24:\"[\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:855;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:409;a:15:{s:2:\"id\";i:5542;s:5:\"title\";s:6:\"CTA 19\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_1.png\";s:12:\"tmpl_created\";i:1520520681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:169;s:11:\"trend_index\";i:270;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:410;a:15:{s:2:\"id\";i:12044;s:5:\"title\";s:24:\"Law Firm &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/contsct_us.png\";s:12:\"tmpl_created\";i:1572847130;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/law-firm-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:437;s:11:\"trend_index\";i:304;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:411;a:15:{s:2:\"id\";i:9826;s:5:\"title\";s:33:\"Slide In | Announcement | webinar\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/web_small-2.png\";s:12:\"tmpl_created\";i:1547835513;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/slide-in-announcement-webinar/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:745;s:11:\"trend_index\";i:831;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:412;a:15:{s:2:\"id\";i:10478;s:5:\"title\";s:18:\"Slide In | Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/slide_wow_small.png\";s:12:\"tmpl_created\";i:1548056829;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/slide-in-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:595;s:11:\"trend_index\";i:559;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:413;a:15:{s:2:\"id\";i:16325;s:5:\"title\";s:28:\"Quality Lens &#8211; Product\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0006.png\";s:12:\"tmpl_created\";i:1607868782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/lp/quality-lens-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:27:\"[\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:804;s:11:\"trend_index\";i:621;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:414;a:15:{s:2:\"id\";i:5567;s:5:\"title\";s:5:\"CTA 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_2.png\";s:12:\"tmpl_created\";i:1520520685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:143;s:11:\"trend_index\";i:225;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:415;a:15:{s:2:\"id\";i:12124;s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/11/services.png\";s:12:\"tmpl_created\";i:1572847096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/law-firm-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:433;s:11:\"trend_index\";i:296;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:416;a:15:{s:2:\"id\";i:16332;s:5:\"title\";s:31:\"Luxury Flat &#8211; Real Estate\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0007.png\";s:12:\"tmpl_created\";i:1607868929;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/luxury-flat-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:38:\"[\"flat\",\"Landing Pages\",\"Real estate\"]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:809;s:11:\"trend_index\";i:707;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:417;a:15:{s:2:\"id\";i:11056;s:5:\"title\";s:35:\"Digital Agency &#8211; Social Media\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/07/Social-Media_small.png\";s:12:\"tmpl_created\";i:1564641867;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/digital-agency-social-media/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:297;s:11:\"trend_index\";i:361;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:418;a:15:{s:2:\"id\";i:5893;s:5:\"title\";s:6:\"CTA 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_12.png\";s:12:\"tmpl_created\";i:1520520752;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:259;s:11:\"trend_index\";i:457;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:419;a:15:{s:2:\"id\";i:16346;s:5:\"title\";s:33:\"Your New Home &#8211; Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp3-l.png\";s:12:\"tmpl_created\";i:1607869068;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/your-new-home-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:31:\"[\"Landing Pages\",\"Real estate\"]\";s:10:\"menu_order\";i:95;s:16:\"popularity_index\";i:791;s:11:\"trend_index\";i:696;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:420;a:15:{s:2:\"id\";i:5634;s:5:\"title\";s:6:\"CTA 24\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_6.png\";s:12:\"tmpl_created\";i:1520520699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-24/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:95;s:16:\"popularity_index\";i:188;s:11:\"trend_index\";i:255;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:421;a:15:{s:2:\"id\";i:11536;s:5:\"title\";s:19:\"Gym &#8211; Fitness\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Fitness_Small.png\";s:12:\"tmpl_created\";i:1567392927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:95;s:16:\"popularity_index\";i:621;s:11:\"trend_index\";i:674;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:422;a:15:{s:2:\"id\";i:10685;s:5:\"title\";s:32:\"Hello Bar | Register | Subscribe\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/env_small.png\";s:12:\"tmpl_created\";i:1547974729;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/hello-bar-register-subscribe-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:721;s:11:\"trend_index\";i:814;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:423;a:15:{s:2:\"id\";i:16358;s:5:\"title\";s:41:\"Sunset Valley Project &#8211; Real Estate\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Real-Estate-1.png\";s:12:\"tmpl_created\";i:1607869234;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/sunset-valley-project-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:31:\"[\"Landing Pages\",\"Real estate\"]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:846;s:11:\"trend_index\";i:743;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:424;a:15:{s:2:\"id\";i:5642;s:5:\"title\";s:6:\"CTA 25\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_6.png\";s:12:\"tmpl_created\";i:1520520701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-25/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:226;s:11:\"trend_index\";i:262;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:425;a:15:{s:2:\"id\";i:11545;s:5:\"title\";s:21:\"Gym &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Home_Small.png\";s:12:\"tmpl_created\";i:1567392943;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/gym-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:310;s:11:\"trend_index\";i:229;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:426;a:15:{s:2:\"id\";i:16379;s:5:\"title\";s:33:\"Property Page &#8211; Real Estate\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Real-Estate-2.png\";s:12:\"tmpl_created\";i:1607869379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/property-page-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:42:\"[\"Landing Pages\",\"Property\",\"Real estate\"]\";s:10:\"menu_order\";i:97;s:16:\"popularity_index\";i:864;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:427;a:15:{s:2:\"id\";i:5583;s:5:\"title\";s:6:\"CTA 26\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_3.png\";s:12:\"tmpl_created\";i:1520520689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-26/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:97;s:16:\"popularity_index\";i:117;s:11:\"trend_index\";i:117;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:428;a:15:{s:2:\"id\";i:12116;s:5:\"title\";s:24:\"Law Firm &#8211; Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/family_law.png\";s:12:\"tmpl_created\";i:1572847105;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/law-firm-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:97;s:16:\"popularity_index\";i:489;s:11:\"trend_index\";i:339;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:429;a:15:{s:2:\"id\";i:16392;s:5:\"title\";s:30:\"Open House &#8211; Real Estate\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Real-Estate-3.png\";s:12:\"tmpl_created\";i:1607869551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/landing-page-real-estate-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:150:\"[\"Agent\",\"Business\",\"clean\",\"corporate\",\"flat\",\"google maps\",\"homes\",\"Landing Pages\",\"listing\",\"modern\",\"Real estate\",\"Realestate\",\"realtor\",\"realty\"]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:839;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:430;a:15:{s:2:\"id\";i:11094;s:5:\"title\";s:30:\"Digital Agency &#8211; Clients\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/07/Clients_small.png\";s:12:\"tmpl_created\";i:1564641885;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/digital-agency-clients/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:424;s:11:\"trend_index\";i:424;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:431;a:15:{s:2:\"id\";i:5904;s:5:\"title\";s:6:\"CTA 27\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_13.png\";s:12:\"tmpl_created\";i:1520520754;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-27/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:528;s:11:\"trend_index\";i:517;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:432;a:15:{s:2:\"id\";i:9985;s:5:\"title\";s:20:\"Slide In | Promotion\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_promotion_av_small.png\";s:12:\"tmpl_created\";i:1547844661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/slide-in-promotion-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:758;s:11:\"trend_index\";i:815;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:433;a:15:{s:2:\"id\";i:15950;s:5:\"title\";s:30:\"Stylist &#8211; Online Service\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/03/Landing-Page-Stylist.png\";s:12:\"tmpl_created\";i:1607862286;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/stylist-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:162:\"[\"cosmetics\",\"Fashion\",\"girly\",\"hairdresser\",\"Landing Pages\",\"lifestyle\",\"makeup\",\"manicure\",\"pedicure\",\"Products\",\"salon\",\"Shop\",\"skincare\",\"stylist\",\"wellness\"]\";s:10:\"menu_order\";i:99;s:16:\"popularity_index\";i:853;s:11:\"trend_index\";i:805;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:434;a:15:{s:2:\"id\";i:11478;s:5:\"title\";s:17:\"Gym &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/About_Small.png\";s:12:\"tmpl_created\";i:1567392939;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:99:\"https://library.elementor.com/gym-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:99;s:16:\"popularity_index\";i:481;s:11:\"trend_index\";i:579;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:435;a:15:{s:2:\"id\";i:5912;s:5:\"title\";s:6:\"CTA 28\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_11.png\";s:12:\"tmpl_created\";i:1520520755;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-28/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:99;s:16:\"popularity_index\";i:665;s:11:\"trend_index\";i:702;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:436;a:15:{s:2:\"id\";i:16253;s:5:\"title\";s:33:\"Bicycle Adventures &#8211; Travel\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0005.png\";s:12:\"tmpl_created\";i:1607867944;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/bicycle-adventures-travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:36:\"[\"Bicycle\",\"Landing Pages\",\"Travel\"]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:785;s:11:\"trend_index\";i:524;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:437;a:15:{s:2:\"id\";i:11563;s:5:\"title\";s:19:\"Gym &#8211; Pricing\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Pricing_Small.png\";s:12:\"tmpl_created\";i:1567392923;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-pricing/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:577;s:11:\"trend_index\";i:736;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:438;a:15:{s:2:\"id\";i:5189;s:5:\"title\";s:6:\"CTA 29\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_1.png\";s:12:\"tmpl_created\";i:1520443456;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-29/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:472;s:11:\"trend_index\";i:631;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:439;a:15:{s:2:\"id\";i:16271;s:5:\"title\";s:42:\"Luxury Travel Destinations  &#8211; Travel\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Truism-1.png\";s:12:\"tmpl_created\";i:1607868120;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/luxury-travel-destinations-travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:37:\"[\"Landing Pages\",\"Travel\",\"Vacation\"]\";s:10:\"menu_order\";i:101;s:16:\"popularity_index\";i:830;s:11:\"trend_index\";i:833;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:440;a:15:{s:2:\"id\";i:11034;s:5:\"title\";s:30:\"Digital Agency &#8211; Contact\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/07/Contsct-Us_small.png\";s:12:\"tmpl_created\";i:1564641881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/contact-digital-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";i:101;s:16:\"popularity_index\";i:191;s:11:\"trend_index\";i:156;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:441;a:15:{s:2:\"id\";i:5667;s:5:\"title\";s:5:\"CTA 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_8.png\";s:12:\"tmpl_created\";i:1520520705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:101;s:16:\"popularity_index\";i:171;s:11:\"trend_index\";i:250;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:442;a:15:{s:2:\"id\";i:16283;s:5:\"title\";s:29:\"Vacation Deals &#8211; Travel\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Truism-2.png\";s:12:\"tmpl_created\";i:1607868279;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/vacation-deals-travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:37:\"[\"Landing Pages\",\"Travel\",\"Vacation\"]\";s:10:\"menu_order\";i:102;s:16:\"popularity_index\";i:850;s:11:\"trend_index\";i:799;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:443;a:15:{s:2:\"id\";i:11528;s:5:\"title\";s:19:\"Gym &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Contact_Small.png\";s:12:\"tmpl_created\";i:1567392917;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:102;s:16:\"popularity_index\";i:505;s:11:\"trend_index\";i:624;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:444;a:15:{s:2:\"id\";i:5198;s:5:\"title\";s:6:\"CTA 30\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_1.png\";s:12:\"tmpl_created\";i:1520443458;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-30/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:102;s:16:\"popularity_index\";i:572;s:11:\"trend_index\";i:511;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:445;a:15:{s:2:\"id\";i:519;s:5:\"title\";s:24:\"Homepage &#8211; Fitness\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0023.png\";s:12:\"tmpl_created\";i:1477388808;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/homepage-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:45:\"[\"Fitness\",\"Gym\",\"Health\",\"Homepage\",\"Sport\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:10;s:11:\"trend_index\";i:62;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:446;a:15:{s:2:\"id\";i:16299;s:5:\"title\";s:29:\"New Adventures &#8211; Travel\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Truism-3.png\";s:12:\"tmpl_created\";i:1607868454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/new-adventures-travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:50:\"[\"Adventures\",\"Landing Pages\",\"Travel\",\"Vacation\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:849;s:11:\"trend_index\";i:830;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:447;a:15:{s:2:\"id\";i:5206;s:5:\"title\";s:6:\"CTA 31\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_2.png\";s:12:\"tmpl_created\";i:1520443459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-31/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:593;s:11:\"trend_index\";i:611;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:448;a:15:{s:2:\"id\";i:487;s:5:\"title\";s:29:\"Landing Page &#8211; Vacation\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0021.png\";s:12:\"tmpl_created\";i:1477388357;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-vacation/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:104;s:16:\"popularity_index\";i:32;s:11:\"trend_index\";i:136;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:449;a:15:{s:2:\"id\";i:16312;s:5:\"title\";s:26:\"Summer Time &#8211; Travel\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2017/11/Vacation-–-Landing-Page.png\";s:12:\"tmpl_created\";i:1607868625;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/lp/summer-time-travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:37:\"[\"Landing Pages\",\"Travel\",\"Vacation\"]\";s:10:\"menu_order\";i:104;s:16:\"popularity_index\";i:829;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:450;a:15:{s:2:\"id\";i:5249;s:5:\"title\";s:6:\"CTA 32\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_4.png\";s:12:\"tmpl_created\";i:1520443470;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-32/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:104;s:16:\"popularity_index\";i:512;s:11:\"trend_index\";i:409;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:451;a:15:{s:2:\"id\";i:15870;s:5:\"title\";s:32:\"Tel Aviv Vacation &#8211; Travel\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0021.png\";s:12:\"tmpl_created\";i:1607860195;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/tel-aviv-vacation-travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:802;s:11:\"trend_index\";i:688;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:452;a:15:{s:2:\"id\";i:855;s:5:\"title\";s:37:\"Landing Page &#8211; Personal Trainer\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Personal-Trainer.png\";s:12:\"tmpl_created\";i:1494352061;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/landing-page-personal-trainer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:290;s:11:\"trend_index\";i:394;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:453;a:15:{s:2:\"id\";i:5550;s:5:\"title\";s:6:\"CTA 33\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_1.png\";s:12:\"tmpl_created\";i:1520520682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-33/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:260;s:11:\"trend_index\";i:562;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:454;a:15:{s:2:\"id\";i:9559;s:5:\"title\";s:16:\"Slide In | Login\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_login_01_small.png\";s:12:\"tmpl_created\";i:1546946547;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/slide-in-login-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:617;s:11:\"trend_index\";i:839;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:455;a:15:{s:2:\"id\";i:5852;s:5:\"title\";s:6:\"CTA 34\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2018/03/form_1.png\";s:12:\"tmpl_created\";i:1520443600;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-34/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:106;s:16:\"popularity_index\";i:563;s:11:\"trend_index\";i:828;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:456;a:15:{s:2:\"id\";i:955;s:5:\"title\";s:31:\"Landing Page &#8211; Law Office\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Law-Office.png\";s:12:\"tmpl_created\";i:1494352069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/landing-page-law-office/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:31:\"[\"Landing Page\",\"Law\",\"Office\"]\";s:10:\"menu_order\";i:106;s:16:\"popularity_index\";i:202;s:11:\"trend_index\";i:271;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:457;a:15:{s:2:\"id\";i:16440;s:5:\"title\";s:31:\"Marketing Webinar &#8211; Event\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0015.png\";s:12:\"tmpl_created\";i:1607934662;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/marketing-webinar-event/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:37:\"[\"Event\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:106;s:16:\"popularity_index\";i:794;s:11:\"trend_index\";i:762;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:458;a:15:{s:2:\"id\";i:16212;s:5:\"title\";s:33:\"Wedding Celebration &#8211; Event\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0025.png\";s:12:\"tmpl_created\";i:1607867299;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/wedding-celebration-event/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:35:\"[\"Event\",\"Landing Pages\",\"Wedding\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:798;s:11:\"trend_index\";i:730;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:459;a:15:{s:2:\"id\";i:5675;s:5:\"title\";s:5:\"CTA 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_8.png\";s:12:\"tmpl_created\";i:1520520707;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:391;s:11:\"trend_index\";i:484;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:460;a:15:{s:2:\"id\";i:9373;s:5:\"title\";s:33:\"Landing Page &#8211; Conference 5\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/11/conference-250.png\";s:12:\"tmpl_created\";i:1542811219;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-conference-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:283;s:11:\"trend_index\";i:325;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:461;a:15:{s:2:\"id\";i:9752;s:5:\"title\";s:27:\"Slide In | Sale | Promotion\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/rush_small.png\";s:12:\"tmpl_created\";i:1547823982;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/slide-in-sale-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:740;s:11:\"trend_index\";i:801;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:462;a:15:{s:2:\"id\";i:974;s:5:\"title\";s:28:\"Landing Page &#8211; Stylist\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/03/Landing-Page-Stylist.png\";s:12:\"tmpl_created\";i:1494352071;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-stylist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:146:\"[\"cosmetics\",\"fashion\",\"girly\",\"hairdresser\",\"lifestyle\",\"makeup\",\"manicure\",\"pedicure\",\"products\",\"salon\",\"Shop\",\"skincare\",\"stylist\",\"wellness\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:329;s:11:\"trend_index\";i:512;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:463;a:15:{s:2:\"id\";i:5591;s:5:\"title\";s:5:\"CTA 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_4.png\";s:12:\"tmpl_created\";i:1520520691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:133;s:11:\"trend_index\";i:130;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:464;a:15:{s:2:\"id\";i:5599;s:5:\"title\";s:5:\"CTA 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_4.png\";s:12:\"tmpl_created\";i:1520520693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:109;s:16:\"popularity_index\";i:252;s:11:\"trend_index\";i:362;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:465;a:15:{s:2:\"id\";i:11948;s:5:\"title\";s:18:\"Maintenance Mode 3\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/10/mm3.png\";s:12:\"tmpl_created\";i:1572153978;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/maintenance-mode-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:20:\"[\"Maintenance mode\"]\";s:10:\"menu_order\";i:109;s:16:\"popularity_index\";i:195;s:11:\"trend_index\";i:259;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:466;a:15:{s:2:\"id\";i:5575;s:5:\"title\";s:5:\"CTA 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_3.png\";s:12:\"tmpl_created\";i:1520443543;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:110;s:16:\"popularity_index\";i:13;s:11:\"trend_index\";i:586;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:467;a:15:{s:2:\"id\";i:754;s:5:\"title\";s:25:\"Services &#8211; Interior\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/01/Interior-Services.png\";s:12:\"tmpl_created\";i:1485269691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/services-interior/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:110;s:16:\"popularity_index\";i:251;s:11:\"trend_index\";i:400;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:468;a:15:{s:2:\"id\";i:752;s:5:\"title\";s:24:\"Contact &#8211; Interior\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/01/interior-contact.png\";s:12:\"tmpl_created\";i:1485269737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/contact-interior/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:344;s:11:\"trend_index\";i:425;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:469;a:15:{s:2:\"id\";i:5658;s:5:\"title\";s:5:\"CTA 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_7.png\";s:12:\"tmpl_created\";i:1520520704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:187;s:11:\"trend_index\";i:235;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:470;a:15:{s:2:\"id\";i:10169;s:5:\"title\";s:37:\"Slide In | Register | Subscribe | App\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/01/slideinapp_small.png\";s:12:\"tmpl_created\";i:1547852334;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/slide-in-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:546;s:11:\"trend_index\";i:701;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:471;a:15:{s:2:\"id\";i:753;s:5:\"title\";s:22:\"About &#8211; Interior\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/01/Interior-About.png\";s:12:\"tmpl_created\";i:1485269710;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/about-interior/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:309;s:11:\"trend_index\";i:435;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:472;a:15:{s:2:\"id\";i:5650;s:5:\"title\";s:5:\"CTA 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_7.png\";s:12:\"tmpl_created\";i:1520520702;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:94;s:11:\"trend_index\";i:148;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:473;a:15:{s:2:\"id\";i:15407;s:5:\"title\";s:24:\"Dance Studio &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/10/404.jpg\";s:12:\"tmpl_created\";i:1603181958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/dance-studio-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:22:\"[\"404\",\"dance studio\"]\";s:10:\"menu_order\";i:113;s:16:\"popularity_index\";i:783;s:11:\"trend_index\";i:710;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:474;a:15:{s:2:\"id\";i:751;s:5:\"title\";s:25:\"Homepage &#8211; Interior\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/01/interior-home.png\";s:12:\"tmpl_created\";i:1485269743;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/homepage-interior/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:113;s:16:\"popularity_index\";i:258;s:11:\"trend_index\";i:200;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:475;a:15:{s:2:\"id\";i:15400;s:5:\"title\";s:27:\"Dance Studio &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Footer.jpg\";s:12:\"tmpl_created\";i:1603181989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/dance-studio-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:25:\"[\"dance studio\",\"footer\"]\";s:10:\"menu_order\";i:114;s:16:\"popularity_index\";i:586;s:11:\"trend_index\";i:243;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:476;a:15:{s:2:\"id\";i:2402;s:5:\"title\";s:32:\"Homepage &#8211; Interior Design\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2017/09/Interior.png\";s:12:\"tmpl_created\";i:1506441447;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/homepage-interior-design/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:193:\"[\"Architecture\",\"building\",\"business\",\"Creative\",\"exterior design\",\"furniture design\",\"Gallery\",\"garden design\",\"house\",\"interior design\",\"landscape design\",\"multipurpose\",\"portfolio\",\"studio\"]\";s:10:\"menu_order\";i:114;s:16:\"popularity_index\";i:126;s:11:\"trend_index\";i:257;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:477;a:15:{s:2:\"id\";i:15391;s:5:\"title\";s:27:\"Dance Studio &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Header.jpg\";s:12:\"tmpl_created\";i:1603182011;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/dance-studio-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:25:\"[\"dance studio\",\"header\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:352;s:11:\"trend_index\";i:67;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:478;a:15:{s:2:\"id\";i:3626;s:5:\"title\";s:30:\"Snowboard Site &#8211; Contact\";s:9:\"thumbnail\";s:62:\"https://library.elementor.com/wp-content/uploads/2017/12/3.png\";s:12:\"tmpl_created\";i:1513513193;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/snowboard-site-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:293;s:11:\"trend_index\";i:637;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:479;a:15:{s:2:\"id\";i:9680;s:5:\"title\";s:23:\"Slide In | Content Lock\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2019/01/Slide-in_Content-lock_small_01.png\";s:12:\"tmpl_created\";i:1547010967;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/slide-in-content-lock-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:725;s:11:\"trend_index\";i:725;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:480;a:15:{s:2:\"id\";i:11192;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/07/Footer_small.jpg\";s:12:\"tmpl_created\";i:1564642399;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/digital-agency-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"footer\",\"marketing\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:172;s:11:\"trend_index\";i:105;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:481;a:15:{s:2:\"id\";i:11966;s:5:\"title\";s:18:\"Maintenance mode 4\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/10/mm4.png\";s:12:\"tmpl_created\";i:1572154274;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/maintenance-mode-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:20:\"[\"Maintenance mode\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:490;s:11:\"trend_index\";i:595;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:482;a:15:{s:2:\"id\";i:11198;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-digital-marketing-agency.png\";s:12:\"tmpl_created\";i:1564642395;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/digital-agency-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"header\",\"marketing\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:34;s:11:\"trend_index\";i:10;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:483;a:15:{s:2:\"id\";i:3632;s:5:\"title\";s:31:\"Snowboard Site &#8211; Services\";s:9:\"thumbnail\";s:62:\"https://library.elementor.com/wp-content/uploads/2017/12/2.png\";s:12:\"tmpl_created\";i:1513513171;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/snowboard-site-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:222;s:11:\"trend_index\";i:342;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:484;a:15:{s:2:\"id\";i:9783;s:5:\"title\";s:31:\"Slide In | Register | Subscribe\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_yellow_small.png\";s:12:\"tmpl_created\";i:1547831059;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/slide-in-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:534;s:11:\"trend_index\";i:415;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:485;a:15:{s:2:\"id\";i:11204;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/07/404_small.jpg\";s:12:\"tmpl_created\";i:1564642389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/digital-agency-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:36:\"[\"404\",\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:301;s:11:\"trend_index\";i:239;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:486;a:15:{s:2:\"id\";i:3619;s:5:\"title\";s:31:\"Snowboard Site &#8211; Homepage\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2017/12/home.png\";s:12:\"tmpl_created\";i:1513513137;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/snowboard-site-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:232;s:11:\"trend_index\";i:219;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:487;a:15:{s:2:\"id\";i:11220;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/08/Archive_small1.png\";s:12:\"tmpl_created\";i:1564642385;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/digital-agency-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";i:119;s:16:\"popularity_index\";i:116;s:11:\"trend_index\";i:73;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:488;a:15:{s:2:\"id\";i:9425;s:5:\"title\";s:38:\"Black Friday &#8211;  80&#8217;s style\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/11/unnamed-file.png\";s:12:\"tmpl_created\";i:1542901234;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/black-friday-80s-style/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:119;s:16:\"popularity_index\";i:360;s:11:\"trend_index\";i:472;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:489;a:15:{s:2:\"id\";i:11231;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/Post_small1.png\";s:12:\"tmpl_created\";i:1564642380;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/digital-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:145;s:11:\"trend_index\";i:71;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:490;a:15:{s:2:\"id\";i:11973;s:5:\"title\";s:18:\"Maintenance mode 5\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/10/mm5.png\";s:12:\"tmpl_created\";i:1572154523;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/maintenance-mode-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:20:\"[\"Maintenance mode\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:418;s:11:\"trend_index\";i:476;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:491;a:15:{s:2:\"id\";i:5711;s:5:\"title\";s:5:\"FAQ 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_2.png\";s:12:\"tmpl_created\";i:1520443571;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:121;s:16:\"popularity_index\";i:200;s:11:\"trend_index\";i:231;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:492;a:15:{s:2:\"id\";i:11981;s:5:\"title\";s:18:\"Maintenance mode 6\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/10/mm6.png\";s:12:\"tmpl_created\";i:1572155125;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/maintenance-mode-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:20:\"[\"Maintenance mode\"]\";s:10:\"menu_order\";i:121;s:16:\"popularity_index\";i:410;s:11:\"trend_index\";i:390;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:493;a:15:{s:2:\"id\";i:5737;s:5:\"title\";s:6:\"FAQ 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_4.png\";s:12:\"tmpl_created\";i:1520443576;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/faq-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:155;s:11:\"trend_index\";i:112;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:494;a:15:{s:2:\"id\";i:5746;s:5:\"title\";s:6:\"FAQ 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_4.png\";s:12:\"tmpl_created\";i:1520443578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/faq-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:123;s:16:\"popularity_index\";i:212;s:11:\"trend_index\";i:305;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:495;a:15:{s:2:\"id\";i:147;s:5:\"title\";s:20:\"Homepage &#8211; App\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0004.png\";s:12:\"tmpl_created\";i:1470829868;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/homepage-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"App\",\"Homepage\"]\";s:10:\"menu_order\";i:123;s:16:\"popularity_index\";i:5;s:11:\"trend_index\";i:16;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:496;a:15:{s:2:\"id\";i:5703;s:5:\"title\";s:6:\"FAQ 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_2.png\";s:12:\"tmpl_created\";i:1520443569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/faq-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:124;s:16:\"popularity_index\";i:29;s:11:\"trend_index\";i:38;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:497;a:15:{s:2:\"id\";i:777;s:5:\"title\";s:28:\"Homepage &#8211; Coffee Shop\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/01/rest-home.jpg\";s:12:\"tmpl_created\";i:1485273092;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/homepage-coffee-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:41:\"[\"Coffee\",\"Homepage\",\"Restaurant\",\"Shop\"]\";s:10:\"menu_order\";i:124;s:16:\"popularity_index\";i:175;s:11:\"trend_index\";i:414;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:498;a:15:{s:2:\"id\";i:5719;s:5:\"title\";s:5:\"FAQ 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_3.png\";s:12:\"tmpl_created\";i:1520443573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:125;s:11:\"trend_index\";i:251;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:499;a:15:{s:2:\"id\";i:2404;s:5:\"title\";s:24:\"Homepage &#8211; Product\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2017/09/product.png\";s:12:\"tmpl_created\";i:1506441452;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/homepage-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:103:\"[\"business\",\"colorful\",\"ecommerce\",\"flat\",\"mobile\",\"modern\",\"responsive\",\"retina\",\"Shop\",\"woocommerce\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:164;s:11:\"trend_index\";i:286;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:500;a:15:{s:2:\"id\";i:5729;s:5:\"title\";s:5:\"FAQ 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_3.png\";s:12:\"tmpl_created\";i:1520443575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:319;s:11:\"trend_index\";i:327;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:501;a:15:{s:2:\"id\";i:492;s:5:\"title\";s:25:\"Homepage &#8211; Law firm\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0024.png\";s:12:\"tmpl_created\";i:1477388365;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/homepage-law-firm/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:25:\"[\"Firm\",\"Homepage\",\"Law\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:14;s:11:\"trend_index\";i:79;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:502;a:15:{s:2:\"id\";i:5755;s:5:\"title\";s:5:\"FAQ 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_5.png\";s:12:\"tmpl_created\";i:1520443580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:127;s:16:\"popularity_index\";i:112;s:11:\"trend_index\";i:180;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:503;a:15:{s:2:\"id\";i:3451;s:5:\"title\";s:39:\"Homepage &#8211; Goodness meal services\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2017/11/goodness-featured-image.png\";s:12:\"tmpl_created\";i:1512054116;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/homepage-goodness-meal-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:127;s:16:\"popularity_index\";i:266;s:11:\"trend_index\";i:407;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:504;a:15:{s:2:\"id\";i:5764;s:5:\"title\";s:5:\"FAQ 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_5.png\";s:12:\"tmpl_created\";i:1520443582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:128;s:16:\"popularity_index\";i:338;s:11:\"trend_index\";i:474;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:505;a:15:{s:2:\"id\";i:2152;s:5:\"title\";s:26:\"Homepage &#8211; Cake Shop\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/07/cake-home.png\";s:12:\"tmpl_created\";i:1499774132;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/homepage-cake-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Cake\",\"Homepage\",\"Restaurant\",\"Shop\"]\";s:10:\"menu_order\";i:128;s:16:\"popularity_index\";i:382;s:11:\"trend_index\";i:530;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:506;a:15:{s:2:\"id\";i:5684;s:5:\"title\";s:5:\"FAQ 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_1.png\";s:12:\"tmpl_created\";i:1520443565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:74;s:11:\"trend_index\";i:193;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:507;a:15:{s:2:\"id\";i:1068;s:5:\"title\";s:27:\"Homepage &#8211; Copywriter\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2017/03/copywriter.png\";s:12:\"tmpl_created\";i:1488805928;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/homepage-copywriter/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:25:\"[\"Copywriter\",\"Homepage\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:249;s:11:\"trend_index\";i:437;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:508;a:15:{s:2:\"id\";i:5693;s:5:\"title\";s:5:\"FAQ 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_1.png\";s:12:\"tmpl_created\";i:1520443567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:224;s:11:\"trend_index\";i:515;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:509;a:15:{s:2:\"id\";i:2813;s:5:\"title\";s:32:\"Homepage &#8211; Creative Agency\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2017/11/Creative-Agency-–-Home-Page.png\";s:12:\"tmpl_created\";i:1509615049;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/homepage-creative-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Agency\",\"Creative\",\"Homepage\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:130;s:11:\"trend_index\";i:215;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:510;a:15:{s:2:\"id\";i:6053;s:5:\"title\";s:10:\"Features 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_5.png\";s:12:\"tmpl_created\";i:1520443645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:131;s:16:\"popularity_index\";i:179;s:11:\"trend_index\";i:463;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:511;a:15:{s:2:\"id\";i:728;s:5:\"title\";s:33:\"Homepage &#8211; Delivery Company\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/01/delivery-company-home-page.jpg\";s:12:\"tmpl_created\";i:1485269993;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/homepage-delivery-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Delivery\",\"Homepage\"]\";s:10:\"menu_order\";i:131;s:16:\"popularity_index\";i:324;s:11:\"trend_index\";i:790;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:512;a:15:{s:2:\"id\";i:5991;s:5:\"title\";s:11:\"Features 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_4.png\";s:12:\"tmpl_created\";i:1520443632;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/features-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:135;s:11:\"trend_index\";i:265;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:513;a:15:{s:2:\"id\";i:2403;s:5:\"title\";s:29:\"Homepage &#8211; Luxury Hotel\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/09/Hotel.png\";s:12:\"tmpl_created\";i:1506441428;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/homepage-luxury-hotel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:314;s:11:\"trend_index\";i:499;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:514;a:15:{s:2:\"id\";i:6044;s:5:\"title\";s:11:\"Features 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_5.png\";s:12:\"tmpl_created\";i:1520443643;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/features-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:133;s:16:\"popularity_index\";i:70;s:11:\"trend_index\";i:163;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:515;a:15:{s:2:\"id\";i:1903;s:5:\"title\";s:20:\"One Page &#8211; Spa\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2017/06/spa.png\";s:12:\"tmpl_created\";i:1496822325;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/one-page-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:132:\"[\"beauty\",\"care\",\"girly\",\"hair\",\"Health\",\"hospitality\",\"massage\",\"medical\",\"parlor\",\"physiotherapy\",\"salon\",\"spa\",\"wellness\",\"yoga\"]\";s:10:\"menu_order\";i:133;s:16:\"popularity_index\";i:211;s:11:\"trend_index\";i:320;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:516;a:15:{s:2:\"id\";i:6212;s:5:\"title\";s:11:\"Features 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_7.png\";s:12:\"tmpl_created\";i:1520443684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/features-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:81;s:11:\"trend_index\";i:98;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:517;a:15:{s:2:\"id\";i:2123;s:5:\"title\";s:33:\"One Page &#8211; Architect Office\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/06/architect.png\";s:12:\"tmpl_created\";i:1499772989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/one-page-architect-office/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:11;s:11:\"trend_index\";i:19;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:518;a:15:{s:2:\"id\";i:6220;s:5:\"title\";s:10:\"Features 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_8.png\";s:12:\"tmpl_created\";i:1520443685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:135;s:16:\"popularity_index\";i:88;s:11:\"trend_index\";i:189;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:519;a:15:{s:2:\"id\";i:1888;s:5:\"title\";s:32:\"One Page &#8211; Creative Meetup\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2017/06/creative-meetup.png\";s:12:\"tmpl_created\";i:1496822319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/one-page-creative-meetup/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:135;s:16:\"popularity_index\";i:315;s:11:\"trend_index\";i:771;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:520;a:15:{s:2:\"id\";i:5983;s:5:\"title\";s:10:\"Features 3\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_3.png\";s:12:\"tmpl_created\";i:1520443630;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:11:\"[\"featues\"]\";s:10:\"menu_order\";i:136;s:16:\"popularity_index\";i:231;s:11:\"trend_index\";i:351;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:521;a:15:{s:2:\"id\";i:1891;s:5:\"title\";s:35:\"One Page &#8211; Textile Convention\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/06/textile-meetup.png\";s:12:\"tmpl_created\";i:1496822323;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/one-page-textile-convention/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:136;s:16:\"popularity_index\";i:503;s:11:\"trend_index\";i:835;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:522;a:15:{s:2:\"id\";i:5974;s:5:\"title\";s:10:\"Features 4\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_3.png\";s:12:\"tmpl_created\";i:1520443629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:69;s:11:\"trend_index\";i:181;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:523;a:15:{s:2:\"id\";i:1880;s:5:\"title\";s:24:\"One Page &#8211; Wedding\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2017/06/wedding.png\";s:12:\"tmpl_created\";i:1496822317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/one-page-wedding/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"bride\",\"ceremony\",\"cute\",\"event\",\"fancy\",\"girly\",\"groom\",\"guestbook\",\"marriage\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:535;s:11:\"trend_index\";i:576;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:524;a:15:{s:2:\"id\";i:5624;s:5:\"title\";s:10:\"Features 5\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_1.png\";s:12:\"tmpl_created\";i:1520443553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:138;s:16:\"popularity_index\";i:93;s:11:\"trend_index\";i:352;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:525;a:15:{s:2:\"id\";i:1885;s:5:\"title\";s:29:\"One Page &#8211; Yacht Rental\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2017/06/yacht-home.png\";s:12:\"tmpl_created\";i:1496822321;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/one-page-yacht-rental/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:138;s:16:\"popularity_index\";i:235;s:11:\"trend_index\";i:610;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:526;a:15:{s:2:\"id\";i:5615;s:5:\"title\";s:10:\"Features 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_5.png\";s:12:\"tmpl_created\";i:1520443551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:41;s:11:\"trend_index\";i:119;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:527;a:15:{s:2:\"id\";i:2723;s:5:\"title\";s:34:\"Portfolio &#8211; Graphic Designer\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2017/11/Graphic-Designer-–-Portfolio.png\";s:12:\"tmpl_created\";i:1509633883;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/portfolio-graphic-designer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:218;s:11:\"trend_index\";i:300;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:528;a:15:{s:2:\"id\";i:5963;s:5:\"title\";s:10:\"Features 7\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_2.png\";s:12:\"tmpl_created\";i:1520443626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:67;s:11:\"trend_index\";i:133;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:529;a:15:{s:2:\"id\";i:2145;s:5:\"title\";s:30:\"About &#8211; Delivery Company\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/07/delivery-about.png\";s:12:\"tmpl_created\";i:1499774125;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/about-delivery-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:10:\"[\"moving\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:403;s:11:\"trend_index\";i:699;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:530;a:15:{s:2:\"id\";i:6204;s:5:\"title\";s:10:\"Features 8\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_6.png\";s:12:\"tmpl_created\";i:1520443681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:141;s:16:\"popularity_index\";i:217;s:11:\"trend_index\";i:223;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:531;a:15:{s:2:\"id\";i:2155;s:5:\"title\";s:23:\"About &#8211; Cake Shop\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2017/07/cake-about.png\";s:12:\"tmpl_created\";i:1499774130;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/about-cake-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:8:\"[\"Food\"]\";s:10:\"menu_order\";i:141;s:16:\"popularity_index\";i:471;s:11:\"trend_index\";i:461;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:532;a:15:{s:2:\"id\";i:6196;s:5:\"title\";s:10:\"Features 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_6.png\";s:12:\"tmpl_created\";i:1520443680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:142;s:16:\"popularity_index\";i:106;s:11:\"trend_index\";i:113;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:533;a:15:{s:2:\"id\";i:1085;s:5:\"title\";s:21:\"About &#8211; Startup\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2017/03/Startup.png\";s:12:\"tmpl_created\";i:1488810874;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/about-startup/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:19:\"[\"About\",\"Startup\"]\";s:10:\"menu_order\";i:142;s:16:\"popularity_index\";i:8;s:11:\"trend_index\";i:36;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:534;a:15:{s:2:\"id\";i:143;s:5:\"title\";s:22:\"About &#8211; Personal\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0010.png\";s:12:\"tmpl_created\";i:1470820447;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/about-personal/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:20:\"[\"About\",\"Personal\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:28;s:11:\"trend_index\";i:141;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:535;a:15:{s:2:\"id\";i:15033;s:5:\"title\";s:28:\"Flooring Company &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/08/404.png\";s:12:\"tmpl_created\";i:1597739459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/flooring-company-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:45:\"[\"404\",\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:655;s:11:\"trend_index\";i:671;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:536;a:15:{s:2:\"id\";i:15042;s:5:\"title\";s:32:\"Flooring Company &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Blog.png\";s:12:\"tmpl_created\";i:1597739084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/flooring-company-archive/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:144;s:16:\"popularity_index\";i:320;s:11:\"trend_index\";i:275;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:537;a:15:{s:2:\"id\";i:101;s:5:\"title\";s:16:\"About &#8211; CV\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0018.png\";s:12:\"tmpl_created\";i:1470829785;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:98:\"https://library.elementor.com/about-cv/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:77:\"[\"creative portfolio\",\"Personal\",\"portfolio\",\"professional\",\"resume\",\"vcard\"]\";s:10:\"menu_order\";i:144;s:16:\"popularity_index\";i:54;s:11:\"trend_index\";i:182;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:538;a:15:{s:2:\"id\";i:15017;s:5:\"title\";s:31:\"Flooring Company &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Footer.png\";s:12:\"tmpl_created\";i:1597738933;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/flooring-company-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"footer\"]\";s:10:\"menu_order\";i:145;s:16:\"popularity_index\";i:323;s:11:\"trend_index\";i:192;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:539;a:15:{s:2:\"id\";i:140;s:5:\"title\";s:25:\"About &#8211; Art Gallery\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0009.png\";s:12:\"tmpl_created\";i:1470820463;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/about-art-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:25:\"[\"About\",\"Art\",\"Gallery\"]\";s:10:\"menu_order\";i:145;s:16:\"popularity_index\";i:18;s:11:\"trend_index\";i:74;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:540;a:15:{s:2:\"id\";i:15007;s:5:\"title\";s:31:\"Flooring Company &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Header.png\";s:12:\"tmpl_created\";i:1597738896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/flooring-company-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"header\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:459;s:11:\"trend_index\";i:333;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:541;a:15:{s:2:\"id\";i:213;s:5:\"title\";s:26:\"About &#8211; Architecture\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0008.png\";s:12:\"tmpl_created\";i:1470829766;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/about-architecture/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:24:\"[\"About\",\"Architecture\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:20;s:11:\"trend_index\";i:65;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:542;a:15:{s:2:\"id\";i:15052;s:5:\"title\";s:36:\"Flooring Company &#8211; Single post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Single.png\";s:12:\"tmpl_created\";i:1597738858;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/flooring-company-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:147;s:16:\"popularity_index\";i:392;s:11:\"trend_index\";i:226;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:543;a:15:{s:2:\"id\";i:2802;s:5:\"title\";s:38:\"Portfolio &#8211; Fashion Photographer\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2017/11/Fashion-photographer-–-Portfolio.png\";s:12:\"tmpl_created\";i:1509615440;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/portfolio-fashion-photographer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:147;s:16:\"popularity_index\";i:263;s:11:\"trend_index\";i:504;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:544;a:15:{s:2:\"id\";i:2828;s:5:\"title\";s:35:\"Landing Page &#8211; Law Convention\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2017/11/Law-Convention-–-Landing-Page.png\";s:12:\"tmpl_created\";i:1509631636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/landing-page-law-convention/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:35:\"[\"Convention\",\"Landing Page\",\"Law\"]\";s:10:\"menu_order\";i:148;s:16:\"popularity_index\";i:423;s:11:\"trend_index\";i:625;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:545;a:15:{s:2:\"id\";i:7837;s:5:\"title\";s:9:\"footer 01\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.14.jpg\";s:12:\"tmpl_created\";i:1524582852;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:148;s:16:\"popularity_index\";i:495;s:11:\"trend_index\";i:539;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:546;a:15:{s:2:\"id\";i:1461;s:5:\"title\";s:28:\"Landing Page &#8211; Ebook 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Ebook-1.png\";s:12:\"tmpl_created\";i:1494352121;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-ebook-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:127:\"[\"App\",\"author\",\"book\",\"brochure\",\"download\",\"e-book\",\"ebook\",\"marketing\",\"product\",\"publisher\",\"sell online\",\"seo\",\"showcase\"]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:374;s:11:\"trend_index\";i:516;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:547;a:15:{s:2:\"id\";i:7937;s:5:\"title\";s:10:\"footer 010\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.5.jpg\";s:12:\"tmpl_created\";i:1524582665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-010/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:185;s:11:\"trend_index\";i:115;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:548;a:15:{s:2:\"id\";i:1460;s:5:\"title\";s:28:\"Landing Page &#8211; Ebook 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Ebook-2.png\";s:12:\"tmpl_created\";i:1494352124;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-ebook-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:150;s:16:\"popularity_index\";i:426;s:11:\"trend_index\";i:466;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:549;a:15:{s:2:\"id\";i:7950;s:5:\"title\";s:10:\"footer 011\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.4.jpg\";s:12:\"tmpl_created\";i:1524582631;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-011/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:150;s:16:\"popularity_index\";i:244;s:11:\"trend_index\";i:203;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:550;a:15:{s:2:\"id\";i:1459;s:5:\"title\";s:28:\"Landing Page &#8211; Ebook 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Ebook-3.png\";s:12:\"tmpl_created\";i:1494352125;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-ebook-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:254;s:11:\"trend_index\";i:422;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:551;a:15:{s:2:\"id\";i:7959;s:5:\"title\";s:10:\"footer 012\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.3.jpg\";s:12:\"tmpl_created\";i:1524582605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-012/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:177;s:11:\"trend_index\";i:140;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:552;a:15:{s:2:\"id\";i:1052;s:5:\"title\";s:33:\"Landing Page &#8211; Mobile App 1\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2017/03/app.png\";s:12:\"tmpl_created\";i:1488810873;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/landing-page-mobile-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:47;s:11:\"trend_index\";i:158;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:553;a:15:{s:2:\"id\";i:7982;s:5:\"title\";s:10:\"footer 013\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.2.jpg\";s:12:\"tmpl_created\";i:1524582468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-013/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:209;s:11:\"trend_index\";i:212;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:554;a:15:{s:2:\"id\";i:1505;s:5:\"title\";s:33:\"Landing Page &#8211; Mobile App 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-app3.png\";s:12:\"tmpl_created\";i:1494352110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-mobile-app-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:153;s:16:\"popularity_index\";i:454;s:11:\"trend_index\";i:547;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:555;a:15:{s:2:\"id\";i:7997;s:5:\"title\";s:10:\"footer 014\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.1.jpg\";s:12:\"tmpl_created\";i:1524582343;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-014/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:153;s:16:\"popularity_index\";i:64;s:11:\"trend_index\";i:41;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:556;a:15:{s:2:\"id\";i:726;s:5:\"title\";s:33:\"Landing Page &#8211; Conference 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2017/01/convention-landing-page.jpg\";s:12:\"tmpl_created\";i:1485270062;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/landing-page-conference/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:498;s:11:\"trend_index\";i:651;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:557;a:15:{s:2:\"id\";i:9119;s:5:\"title\";s:10:\"footer 015\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/Footer_GetStarted_350.png\";s:12:\"tmpl_created\";i:1532428138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/blocks/demo/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:240;s:11:\"trend_index\";i:154;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:558;a:15:{s:2:\"id\";i:1613;s:5:\"title\";s:33:\"Landing Page &#8211; Conference 2\";s:9:\"thumbnail\";s:109:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-International-Womens-Day-Conference.png\";s:12:\"tmpl_created\";i:1494352129;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-conference-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:155;s:16:\"popularity_index\";i:504;s:11:\"trend_index\";i:464;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:559;a:15:{s:2:\"id\";i:7852;s:5:\"title\";s:9:\"footer 02\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.13.jpg\";s:12:\"tmpl_created\";i:1524582875;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:155;s:16:\"popularity_index\";i:199;s:11:\"trend_index\";i:96;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:560;a:15:{s:2:\"id\";i:1612;s:5:\"title\";s:33:\"Landing Page &#8211; Conference 3\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Tech-Conference.png\";s:12:\"tmpl_created\";i:1494352127;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-conference-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:156;s:16:\"popularity_index\";i:549;s:11:\"trend_index\";i:693;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:561;a:15:{s:2:\"id\";i:7862;s:5:\"title\";s:9:\"footer 03\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.12.jpg\";s:12:\"tmpl_created\";i:1524582903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-03/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:156;s:16:\"popularity_index\";i:137;s:11:\"trend_index\";i:91;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:562;a:15:{s:2:\"id\";i:1614;s:5:\"title\";s:33:\"Landing Page &#8211; Conference 4\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Sustainability-Conference.png\";s:12:\"tmpl_created\";i:1494352131;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-conference-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:447;s:11:\"trend_index\";i:657;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:563;a:15:{s:2:\"id\";i:7871;s:5:\"title\";s:9:\"footer 04\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.11.jpg\";s:12:\"tmpl_created\";i:1524582927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-04/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:97;s:11:\"trend_index\";i:55;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:564;a:15:{s:2:\"id\";i:906;s:5:\"title\";s:29:\"Landing Page &#8211;  Coacher\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2017/02/Landin-Page-Coacher.png\";s:12:\"tmpl_created\";i:1494352066;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-coacher/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:158;s:16:\"popularity_index\";i:302;s:11:\"trend_index\";i:397;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:565;a:15:{s:2:\"id\";i:7884;s:5:\"title\";s:9:\"footer 05\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.10.jpg\";s:12:\"tmpl_created\";i:1524582944;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-05/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:158;s:16:\"popularity_index\";i:92;s:11:\"trend_index\";i:109;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:566;a:15:{s:2:\"id\";i:879;s:5:\"title\";s:41:\"Landing Page &#8211; Financial Consultant\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Financial-consultant.png\";s:12:\"tmpl_created\";i:1494352064;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/landing-page-financial-consultant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:305;s:11:\"trend_index\";i:406;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:567;a:15:{s:2:\"id\";i:7892;s:5:\"title\";s:9:\"footer 06\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.9.jpg\";s:12:\"tmpl_created\";i:1524583015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-06/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:132;s:11:\"trend_index\";i:146;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:568;a:15:{s:2:\"id\";i:926;s:5:\"title\";s:33:\"Landing Page &#8211; Private Chef\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Private-Chef.png\";s:12:\"tmpl_created\";i:1494352068;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-private-chef/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:160;s:16:\"popularity_index\";i:461;s:11:\"trend_index\";i:549;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:569;a:15:{s:2:\"id\";i:7904;s:5:\"title\";s:9:\"footer 07\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.8.jpg\";s:12:\"tmpl_created\";i:1524582814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-07/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:160;s:16:\"popularity_index\";i:203;s:11:\"trend_index\";i:186;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:570;a:15:{s:2:\"id\";i:1032;s:5:\"title\";s:27:\"Landing Page &#8211; Agency\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2017/03/Agency.png\";s:12:\"tmpl_created\";i:1488810866;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/landing-page-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:161;s:16:\"popularity_index\";i:462;s:11:\"trend_index\";i:715;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:571;a:15:{s:2:\"id\";i:7917;s:5:\"title\";s:9:\"footer 08\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.7.jpg\";s:12:\"tmpl_created\";i:1524582788;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-08/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:161;s:16:\"popularity_index\";i:89;s:11:\"trend_index\";i:144;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:572;a:15:{s:2:\"id\";i:730;s:5:\"title\";s:24:\"Landing Page &#8211; App\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/01/app.-landing-page.jpg\";s:12:\"tmpl_created\";i:1485273430;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/landing-page-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:386;s:11:\"trend_index\";i:614;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:573;a:15:{s:2:\"id\";i:7927;s:5:\"title\";s:9:\"footer 09\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.6.jpg\";s:12:\"tmpl_created\";i:1524582691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-09/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:178;s:11:\"trend_index\";i:100;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:574;a:15:{s:2:\"id\";i:643;s:5:\"title\";s:29:\"Landing Page &#8211; Festival\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2016/12/festival.jpg\";s:12:\"tmpl_created\";i:1481549290;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-festival/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:163;s:16:\"popularity_index\";i:518;s:11:\"trend_index\";i:748;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:575;a:15:{s:2:\"id\";i:542;s:5:\"title\";s:28:\"Landing Page &#8211; Wedding\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0025.png\";s:12:\"tmpl_created\";i:1477388484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-wedding/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:164;s:16:\"popularity_index\";i:128;s:11:\"trend_index\";i:355;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:576;a:15:{s:2:\"id\";i:1187;s:5:\"title\";s:32:\"Landing Page &#8211; Photography\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp1-l.png\";s:12:\"tmpl_created\";i:1490707385;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/landing-page-photography/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:165;s:16:\"popularity_index\";i:53;s:11:\"trend_index\";i:196;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:577;a:15:{s:2:\"id\";i:641;s:5:\"title\";s:28:\"Landing Page &#8211; Fashion\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2016/12/fashion-landing-page.jpg\";s:12:\"tmpl_created\";i:1481549264;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-fashion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:166;s:16:\"popularity_index\";i:355;s:11:\"trend_index\";i:480;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:578;a:15:{s:2:\"id\";i:189;s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 1\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0005.png\";s:12:\"tmpl_created\";i:1470820715;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-tourism/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:167;s:16:\"popularity_index\";i:17;s:11:\"trend_index\";i:107;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:579;a:15:{s:2:\"id\";i:1547;s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Truism-1.png\";s:12:\"tmpl_created\";i:1494352115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/landing-page-tourism-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:168;s:16:\"popularity_index\";i:377;s:11:\"trend_index\";i:491;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:580;a:15:{s:2:\"id\";i:1546;s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Truism-2.png\";s:12:\"tmpl_created\";i:1494352116;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/landing-page-tourism-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:169;s:16:\"popularity_index\";i:550;s:11:\"trend_index\";i:690;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:581;a:15:{s:2:\"id\";i:4676;s:5:\"title\";s:8:\"Footer 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_7.png\";s:12:\"tmpl_created\";i:1522014215;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/footer_7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"footer\"]\";s:10:\"menu_order\";i:169;s:16:\"popularity_index\";i:237;s:11:\"trend_index\";i:346;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:582;a:15:{s:2:\"id\";i:1545;s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 4\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Truism-3.png\";s:12:\"tmpl_created\";i:1494352118;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/landing-page-tourism-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:170;s:16:\"popularity_index\";i:425;s:11:\"trend_index\";i:404;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:583;a:15:{s:2:\"id\";i:7627;s:5:\"title\";s:8:\"Footer 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_1.png\";s:12:\"tmpl_created\";i:1521547332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/footer-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"footer\"]\";s:10:\"menu_order\";i:170;s:16:\"popularity_index\";i:100;s:11:\"trend_index\";i:83;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:584;a:15:{s:2:\"id\";i:2714;s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 5\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2017/11/Vacation-–-Landing-Page.png\";s:12:\"tmpl_created\";i:1509631782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/landing-page-tourism-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:415;s:11:\"trend_index\";i:584;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:585;a:15:{s:2:\"id\";i:7638;s:5:\"title\";s:8:\"Footer 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_2.png\";s:12:\"tmpl_created\";i:1521547502;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/footer-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"footer\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:124;s:11:\"trend_index\";i:147;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:586;a:15:{s:2:\"id\";i:195;s:5:\"title\";s:28:\"Landing Page &#8211; Product\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0006.png\";s:12:\"tmpl_created\";i:1470820765;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:172;s:16:\"popularity_index\";i:72;s:11:\"trend_index\";i:242;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:587;a:15:{s:2:\"id\";i:11424;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/08/404_Small.png\";s:12:\"tmpl_created\";i:1567393309;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/gym-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:13:\"[\"404\",\"Gym\"]\";s:10:\"menu_order\";i:172;s:16:\"popularity_index\";i:679;s:11:\"trend_index\";i:769;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:588;a:15:{s:2:\"id\";i:197;s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 1\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0007.png\";s:12:\"tmpl_created\";i:1470825711;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/landing-page-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:173;s:16:\"popularity_index\";i:162;s:11:\"trend_index\";i:366;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:589;a:15:{s:2:\"id\";i:11435;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Archiv_Small.png\";s:12:\"tmpl_created\";i:1567393296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/gym-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:173;s:16:\"popularity_index\";i:441;s:11:\"trend_index\";i:507;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:590;a:15:{s:2:\"id\";i:1193;s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 2\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp3-l.png\";s:12:\"tmpl_created\";i:1490707422;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/landing-page-real-estate-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:174;s:16:\"popularity_index\";i:86;s:11:\"trend_index\";i:245;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:591;a:15:{s:2:\"id\";i:11445;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Post_Small.png\";s:12:\"tmpl_created\";i:1567393229;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/gym-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:174;s:16:\"popularity_index\";i:452;s:11:\"trend_index\";i:479;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:592;a:15:{s:2:\"id\";i:1415;s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 3\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Real-Estate-1.png\";s:12:\"tmpl_created\";i:1494352106;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/landing-page-real-estate-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:175;s:16:\"popularity_index\";i:381;s:11:\"trend_index\";i:462;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:593;a:15:{s:2:\"id\";i:11453;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Footer_Small.png\";s:12:\"tmpl_created\";i:1567393224;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/gym-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:16:\"[\"footer\",\"Gym\"]\";s:10:\"menu_order\";i:175;s:16:\"popularity_index\";i:270;s:11:\"trend_index\";i:331;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:594;a:15:{s:2:\"id\";i:1414;s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 4\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Real-Estate-2.png\";s:12:\"tmpl_created\";i:1494352107;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/landing-page-real-estate-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:176;s:16:\"popularity_index\";i:573;s:11:\"trend_index\";i:670;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:595;a:15:{s:2:\"id\";i:11461;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-gym-and-fitness.png\";s:12:\"tmpl_created\";i:1567393219;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:100:\"https://library.elementor.com/blocks/gym/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:16:\"[\"Gym\",\"header\"]\";s:10:\"menu_order\";i:176;s:16:\"popularity_index\";i:201;s:11:\"trend_index\";i:135;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:596;a:15:{s:2:\"id\";i:1413;s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 5\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Real-Estate-3.png\";s:12:\"tmpl_created\";i:1494352109;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/landing-page-real-estate-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:134:\"[\"Agent\",\"business\",\"clean\",\"corporate\",\"flat\",\"google maps\",\"homes\",\"listing\",\"modern\",\"real estate\",\"realestate\",\"realtor\",\"realty\"]\";s:10:\"menu_order\";i:177;s:16:\"popularity_index\";i:486;s:11:\"trend_index\";i:444;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:597;a:15:{s:2:\"id\";i:7596;s:5:\"title\";s:8:\"Header 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.12.jpg\";s:12:\"tmpl_created\";i:1521546999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"header\"]\";s:10:\"menu_order\";i:177;s:16:\"popularity_index\";i:33;s:11:\"trend_index\";i:17;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:598;a:15:{s:2:\"id\";i:1573;s:5:\"title\";s:29:\"Landing Page &#8211; Coupon 1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-02.png\";s:12:\"tmpl_created\";i:1494352133;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-coupon-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:178;s:16:\"popularity_index\";i:594;s:11:\"trend_index\";i:687;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:599;a:15:{s:2:\"id\";i:7801;s:5:\"title\";s:9:\"header 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.9.jpg\";s:12:\"tmpl_created\";i:1524583659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:178;s:16:\"popularity_index\";i:51;s:11:\"trend_index\";i:14;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:600;a:15:{s:2:\"id\";i:1572;s:5:\"title\";s:29:\"Landing Page &#8211; Coupon 2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-03.png\";s:12:\"tmpl_created\";i:1494352134;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-coupon-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:179;s:16:\"popularity_index\";i:632;s:11:\"trend_index\";i:774;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:601;a:15:{s:2:\"id\";i:7812;s:5:\"title\";s:9:\"header 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.10.jpg\";s:12:\"tmpl_created\";i:1524583298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:179;s:16:\"popularity_index\";i:96;s:11:\"trend_index\";i:103;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:602;a:15:{s:2:\"id\";i:1570;s:5:\"title\";s:29:\"Landing Page &#8211; Coupon 3\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-01.png\";s:12:\"tmpl_created\";i:1494352136;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-coupon-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:180;s:16:\"popularity_index\";i:674;s:11:\"trend_index\";i:785;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:603;a:15:{s:2:\"id\";i:7825;s:5:\"title\";s:9:\"header 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.11.jpg\";s:12:\"tmpl_created\";i:1524583273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:180;s:16:\"popularity_index\";i:63;s:11:\"trend_index\";i:75;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:604;a:15:{s:2:\"id\";i:1571;s:5:\"title\";s:29:\"Landing Page &#8211; Coupon 4\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-04.png\";s:12:\"tmpl_created\";i:1494352138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-coupon-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:181;s:16:\"popularity_index\";i:647;s:11:\"trend_index\";i:737;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:605;a:15:{s:2:\"id\";i:9127;s:5:\"title\";s:9:\"header 13\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2018/07/Header_get_started_1200V3.png\";s:12:\"tmpl_created\";i:1532428699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:181;s:16:\"popularity_index\";i:61;s:11:\"trend_index\";i:58;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:606;a:15:{s:2:\"id\";i:192;s:5:\"title\";s:28:\"Landing Page &#8211; Webinar\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0015.png\";s:12:\"tmpl_created\";i:1470820734;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-webinar/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:182;s:16:\"popularity_index\";i:141;s:11:\"trend_index\";i:388;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:607;a:15:{s:2:\"id\";i:7615;s:5:\"title\";s:8:\"Header 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.1.jpg\";s:12:\"tmpl_created\";i:1521547237;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"header\"]\";s:10:\"menu_order\";i:182;s:16:\"popularity_index\";i:30;s:11:\"trend_index\";i:33;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:608;a:15:{s:2:\"id\";i:2141;s:5:\"title\";s:32:\"Contact &#8211; Delivery Company\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/07/delivery-contact.png\";s:12:\"tmpl_created\";i:1499774122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/contact-delivery-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:183;s:16:\"popularity_index\";i:363;s:11:\"trend_index\";i:678;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:609;a:15:{s:2:\"id\";i:7713;s:5:\"title\";s:8:\"header 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.2.jpg\";s:12:\"tmpl_created\";i:1524584780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:183;s:16:\"popularity_index\";i:43;s:11:\"trend_index\";i:28;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:610;a:15:{s:2:\"id\";i:137;s:5:\"title\";s:22:\"Contact &#8211; Modern\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0013.png\";s:12:\"tmpl_created\";i:1470829828;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/contact-modern/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:184;s:16:\"popularity_index\";i:55;s:11:\"trend_index\";i:210;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:611;a:15:{s:2:\"id\";i:7724;s:5:\"title\";s:8:\"header 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.3.jpg\";s:12:\"tmpl_created\";i:1524583367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:184;s:16:\"popularity_index\";i:24;s:11:\"trend_index\";i:13;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:612;a:15:{s:2:\"id\";i:256;s:5:\"title\";s:26:\"Contact &#8211; Restaurant\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0011.png\";s:12:\"tmpl_created\";i:1470829796;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/contact-restaurant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:185;s:16:\"popularity_index\";i:154;s:11:\"trend_index\";i:370;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:613;a:15:{s:2:\"id\";i:7734;s:5:\"title\";s:8:\"header 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.4.jpg\";s:12:\"tmpl_created\";i:1524583436;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:185;s:16:\"popularity_index\";i:36;s:11:\"trend_index\";i:18;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:614;a:15:{s:2:\"id\";i:2150;s:5:\"title\";s:25:\"Contact &#8211; Cake Shop\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/07/cake-contact.png\";s:12:\"tmpl_created\";i:1499774127;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/contact-cake-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:186;s:16:\"popularity_index\";i:85;s:11:\"trend_index\";i:247;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:615;a:15:{s:2:\"id\";i:7744;s:5:\"title\";s:8:\"Header 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.5.jpg\";s:12:\"tmpl_created\";i:1524584784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:186;s:16:\"popularity_index\";i:65;s:11:\"trend_index\";i:94;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:616;a:15:{s:2:\"id\";i:223;s:5:\"title\";s:21:\"Contact &#8211; Hotel\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0002.png\";s:12:\"tmpl_created\";i:1470820471;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/contact-hotel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:187;s:16:\"popularity_index\";i:157;s:11:\"trend_index\";i:354;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:617;a:15:{s:2:\"id\";i:7754;s:5:\"title\";s:8:\"header 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.6.jpg\";s:12:\"tmpl_created\";i:1524583712;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:187;s:16:\"popularity_index\";i:111;s:11:\"trend_index\";i:143;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:618;a:15:{s:2:\"id\";i:24;s:5:\"title\";s:25:\"Contact &#8211; Corporate\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0012.png\";s:12:\"tmpl_created\";i:1470248619;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/contact-corporate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:188;s:16:\"popularity_index\";i:12;s:11:\"trend_index\";i:24;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:619;a:15:{s:2:\"id\";i:7771;s:5:\"title\";s:8:\"header 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.7.jpg\";s:12:\"tmpl_created\";i:1524583540;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:188;s:16:\"popularity_index\";i:91;s:11:\"trend_index\";i:60;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:620;a:15:{s:2:\"id\";i:184;s:5:\"title\";s:23:\"Services &#8211; Moving\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0017.png\";s:12:\"tmpl_created\";i:1470829889;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/services-moving/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:189;s:16:\"popularity_index\";i:26;s:11:\"trend_index\";i:89;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:621;a:15:{s:2:\"id\";i:7787;s:5:\"title\";s:8:\"header 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.8.jpg\";s:12:\"tmpl_created\";i:1524583598;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:189;s:16:\"popularity_index\";i:102;s:11:\"trend_index\";i:78;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:622;a:15:{s:2:\"id\";i:625;s:5:\"title\";s:31:\"Services &#8211; Cake Shop Menu\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2016/12/cake-shop-menu.jpg\";s:12:\"tmpl_created\";i:1481549196;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/services-cake-shop-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:190;s:16:\"popularity_index\";i:642;s:11:\"trend_index\";i:733;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:623;a:15:{s:2:\"id\";i:6266;s:5:\"title\";s:6:\"Hero 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_4.png\";s:12:\"tmpl_created\";i:1520443695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:190;s:16:\"popularity_index\";i:52;s:11:\"trend_index\";i:35;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:624;a:15:{s:2:\"id\";i:5783;s:5:\"title\";s:7:\"Hero 10\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_2.png\";s:12:\"tmpl_created\";i:1520443586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/hero-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:191;s:16:\"popularity_index\";i:365;s:11:\"trend_index\";i:567;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:625;a:15:{s:2:\"id\";i:187;s:5:\"title\";s:20:\"Services &#8211; Fun\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0001.png\";s:12:\"tmpl_created\";i:1470829892;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/services-fun/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:191;s:16:\"popularity_index\";i:109;s:11:\"trend_index\";i:338;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:626;a:15:{s:2:\"id\";i:5773;s:5:\"title\";s:7:\"Hero 11\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_1.png\";s:12:\"tmpl_created\";i:1520443584;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/hero-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:192;s:16:\"popularity_index\";i:39;s:11:\"trend_index\";i:179;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:627;a:15:{s:2:\"id\";i:238;s:5:\"title\";s:27:\"Services &#8211; Consulting\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0014.png\";s:12:\"tmpl_created\";i:1470829865;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/services-consulting/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:192;s:16:\"popularity_index\";i:25;s:11:\"trend_index\";i:51;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:628;a:15:{s:2:\"id\";i:647;s:5:\"title\";s:33:\"Services &#8211; Coffee Shop Menu\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2016/12/restaurant-menu.jpg\";s:12:\"tmpl_created\";i:1481549320;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/services-coffee-shop-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:193;s:16:\"popularity_index\";i:517;s:11:\"trend_index\";i:529;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:629;a:15:{s:2:\"id\";i:5238;s:5:\"title\";s:7:\"Hero 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4.png\";s:12:\"tmpl_created\";i:1520443468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/hero-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:193;s:16:\"popularity_index\";i:611;s:11:\"trend_index\";i:555;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:630;a:15:{s:2:\"id\";i:6274;s:5:\"title\";s:6:\"Hero 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_5.png\";s:12:\"tmpl_created\";i:1520443698;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:194;s:16:\"popularity_index\";i:87;s:11:\"trend_index\";i:88;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:631;a:15:{s:2:\"id\";i:2138;s:5:\"title\";s:33:\"Services &#8211; Delivery Company\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/07/delivery-services.png\";s:12:\"tmpl_created\";i:1499774119;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/services-delivery-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:194;s:16:\"popularity_index\";i:456;s:11:\"trend_index\";i:545;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:632;a:15:{s:2:\"id\";i:823;s:5:\"title\";s:19:\"Pricing &#8211; App\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2017/01/pricing-app.jpg\";s:12:\"tmpl_created\";i:1485272966;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/pricing-app-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:195;s:16:\"popularity_index\";i:384;s:11:\"trend_index\";i:416;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:633;a:15:{s:2:\"id\";i:6239;s:5:\"title\";s:6:\"Hero 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_1.png\";s:12:\"tmpl_created\";i:1520443689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:195;s:16:\"popularity_index\";i:23;s:11:\"trend_index\";i:34;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:634;a:15:{s:2:\"id\";i:824;s:5:\"title\";s:24:\"Pricing &#8211; Software\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/01/pricing-software.png\";s:12:\"tmpl_created\";i:1485272900;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/pricing-software-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:196;s:16:\"popularity_index\";i:409;s:11:\"trend_index\";i:534;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:635;a:15:{s:2:\"id\";i:6258;s:5:\"title\";s:6:\"Hero 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_3.png\";s:12:\"tmpl_created\";i:1520443693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:196;s:16:\"popularity_index\";i:479;s:11:\"trend_index\";i:470;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:636;a:15:{s:2:\"id\";i:825;s:5:\"title\";s:24:\"Product &#8211; Speakers\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/01/product-page.jpg\";s:12:\"tmpl_created\";i:1485272513;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/product-speakers/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:197;s:16:\"popularity_index\";i:439;s:11:\"trend_index\";i:418;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:637;a:15:{s:2:\"id\";i:6249;s:5:\"title\";s:6:\"Hero 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_2.png\";s:12:\"tmpl_created\";i:1520443691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:197;s:16:\"popularity_index\";i:56;s:11:\"trend_index\";i:85;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:638;a:15:{s:2:\"id\";i:245;s:5:\"title\";s:21:\"Product &#8211; Clean\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0020.png\";s:12:\"tmpl_created\";i:1470829876;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/product-clean/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"fast\",\"minimal\",\"minimalistic\",\"seo\",\"simple\"]\";s:10:\"menu_order\";i:198;s:16:\"popularity_index\";i:107;s:11:\"trend_index\";i:276;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:639;a:15:{s:2:\"id\";i:6230;s:5:\"title\";s:6:\"Hero 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_white_1.png\";s:12:\"tmpl_created\";i:1520443687;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:198;s:16:\"popularity_index\";i:406;s:11:\"trend_index\";i:542;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:640;a:15:{s:2:\"id\";i:5801;s:5:\"title\";s:6:\"Hero 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_4.png\";s:12:\"tmpl_created\";i:1520443589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:199;s:16:\"popularity_index\";i:15;s:11:\"trend_index\";i:37;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:641;a:15:{s:2:\"id\";i:1075;s:5:\"title\";s:19:\"Shop &#8211; Sweets\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2017/03/Sweets.png\";s:12:\"tmpl_created\";i:1488810871;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/shop-sweets/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:154:\"[\"bakery\",\"beverage\",\"business\",\"cafe\",\"candy bar\",\"catering\",\"delivery service\",\"Food\",\"online shop\",\"pastry\",\"Restaurant\",\"store\",\"sweet shop\",\"sweets\"]\";s:10:\"menu_order\";i:199;s:16:\"popularity_index\";i:68;s:11:\"trend_index\";i:174;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:642;a:15:{s:2:\"id\";i:5811;s:5:\"title\";s:6:\"Hero 8\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_5.png\";s:12:\"tmpl_created\";i:1520443591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:200;s:16:\"popularity_index\";i:105;s:11:\"trend_index\";i:86;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:643;a:15:{s:2:\"id\";i:1051;s:5:\"title\";s:24:\"Blog Post &#8211; Launch\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2017/03/post-cloud.png\";s:12:\"tmpl_created\";i:1488810869;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blog-post-launch/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:210:\"[\"Agency\",\"bootstrap\",\"business\",\"corporate\",\"Landing Page\",\"launch\",\"marketing campaign\",\"marketing landing page\",\"marketing template landing page\",\"product launch\",\"software\",\"Startup\",\"startup landing page\"]\";s:10:\"menu_order\";i:200;s:16:\"popularity_index\";i:16;s:11:\"trend_index\";i:27;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:644;a:15:{s:2:\"id\";i:5792;s:5:\"title\";s:6:\"Hero 9\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_3.png\";s:12:\"tmpl_created\";i:1520443588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:201;s:16:\"popularity_index\";i:225;s:11:\"trend_index\";i:244;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:645;a:15:{s:2:\"id\";i:1245;s:5:\"title\";s:13:\"Coming Soon 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-1.png\";s:12:\"tmpl_created\";i:1491207184;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:201;s:16:\"popularity_index\";i:257;s:11:\"trend_index\";i:252;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:646;a:15:{s:2:\"id\";i:1247;s:5:\"title\";s:13:\"Coming Soon 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-2.png\";s:12:\"tmpl_created\";i:1491207138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:202;s:16:\"popularity_index\";i:35;s:11:\"trend_index\";i:48;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:647;a:15:{s:2:\"id\";i:13251;s:5:\"title\";s:27:\"Interior Design &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.png\";s:12:\"tmpl_created\";i:1586148737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/interior-design-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:30:\"[\"business\",\"interior design\"]\";s:10:\"menu_order\";i:202;s:16:\"popularity_index\";i:730;s:11:\"trend_index\";i:795;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:648;a:15:{s:2:\"id\";i:1248;s:5:\"title\";s:13:\"Coming Soon 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-3.png\";s:12:\"tmpl_created\";i:1491207050;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:203;s:16:\"popularity_index\";i:427;s:11:\"trend_index\";i:601;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:649;a:15:{s:2:\"id\";i:13244;s:5:\"title\";s:30:\"Interior Design &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.png\";s:12:\"tmpl_created\";i:1586148742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/interior-design-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"business\",\"footer\",\"interior design\"]\";s:10:\"menu_order\";i:203;s:16:\"popularity_index\";i:322;s:11:\"trend_index\";i:178;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:650;a:15:{s:2:\"id\";i:1249;s:5:\"title\";s:13:\"Coming Soon 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-4.png\";s:12:\"tmpl_created\";i:1491207380;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:204;s:16:\"popularity_index\";i:469;s:11:\"trend_index\";i:638;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:651;a:15:{s:2:\"id\";i:13236;s:5:\"title\";s:30:\"Interior Design &#8211; Header\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-interior-design.png\";s:12:\"tmpl_created\";i:1586148746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/interior-design-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"business\",\"header\",\"interior design\"]\";s:10:\"menu_order\";i:204;s:16:\"popularity_index\";i:146;s:11:\"trend_index\";i:64;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:652;a:15:{s:2:\"id\";i:1250;s:5:\"title\";s:13:\"Coming Soon 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-5.png\";s:12:\"tmpl_created\";i:1491207450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:205;s:16:\"popularity_index\";i:82;s:11:\"trend_index\";i:104;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:653;a:15:{s:2:\"id\";i:13259;s:5:\"title\";s:36:\"Interior Design &#8211; News Archive\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Archiv-Blog.png\";s:12:\"tmpl_created\";i:1586148733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/interior-design-news-archive/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"business\",\"interior design\"]\";s:10:\"menu_order\";i:205;s:16:\"popularity_index\";i:436;s:11:\"trend_index\";i:132;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:654;a:15:{s:2:\"id\";i:1260;s:5:\"title\";s:18:\"Maintenance Mode 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-6.png\";s:12:\"tmpl_created\";i:1491207507;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/maintenance-mode-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:20:\"[\"Maintenance mode\"]\";s:10:\"menu_order\";i:206;s:16:\"popularity_index\";i:506;s:11:\"trend_index\";i:623;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:655;a:15:{s:2:\"id\";i:13267;s:5:\"title\";s:35:\"Interior Design &#8211; Single News\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Post.png\";s:12:\"tmpl_created\";i:1586148728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/interior-design-single-news/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"business\",\"interior design\"]\";s:10:\"menu_order\";i:206;s:16:\"popularity_index\";i:402;s:11:\"trend_index\";i:108;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:656;a:15:{s:2:\"id\";i:1261;s:5:\"title\";s:18:\"Maintenance Mode 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/04/Coming-Soon-7.png\";s:12:\"tmpl_created\";i:1491207584;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/maintenance-mode-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:20:\"[\"Maintenance mode\"]\";s:10:\"menu_order\";i:207;s:16:\"popularity_index\";i:98;s:11:\"trend_index\";i:164;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:657;a:15:{s:2:\"id\";i:13274;s:5:\"title\";s:38:\"Interior Design &#8211; Single Project\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/04/Single-Project-.png\";s:12:\"tmpl_created\";i:1586148723;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/interior-design-single-project/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"business\",\"interior design\"]\";s:10:\"menu_order\";i:207;s:16:\"popularity_index\";i:601;s:11:\"trend_index\";i:324;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:658;a:15:{s:2:\"id\";i:1272;s:5:\"title\";s:13:\"Coming Soon 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-8.png\";s:12:\"tmpl_created\";i:1491207674;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:208;s:16:\"popularity_index\";i:296;s:11:\"trend_index\";i:317;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:659;a:15:{s:2:\"id\";i:14058;s:5:\"title\";s:36:\"Japanese restaurant &#8211; 404 page\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/06/404-Page.jpg\";s:12:\"tmpl_created\";i:1592290211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/japanese-restaurant-404-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:38:\"[\"404\",\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:208;s:16:\"popularity_index\";i:724;s:11:\"trend_index\";i:647;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:660;a:15:{s:2:\"id\";i:1279;s:5:\"title\";s:13:\"Coming Soon 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-9.png\";s:12:\"tmpl_created\";i:1491207756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:209;s:16:\"popularity_index\";i:160;s:11:\"trend_index\";i:403;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:661;a:15:{s:2:\"id\";i:14050;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1592290247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/japanese-restaurant-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:41:\"[\"Food\",\"footer\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:209;s:16:\"popularity_index\";i:317;s:11:\"trend_index\";i:238;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:662;a:15:{s:2:\"id\";i:1745;s:5:\"title\";s:14:\"Coming Soon 10\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/login-002.png\";s:12:\"tmpl_created\";i:1494849745;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/coming-soon-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:210;s:16:\"popularity_index\";i:292;s:11:\"trend_index\";i:371;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:663;a:15:{s:2:\"id\";i:14042;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Header\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2020/06/japanese-restaurant-header.jpg\";s:12:\"tmpl_created\";i:1592290277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/japanese-restaurant-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:41:\"[\"Food\",\"header\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:210;s:16:\"popularity_index\";i:411;s:11:\"trend_index\";i:274;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:664;a:15:{s:2:\"id\";i:1742;s:5:\"title\";s:12:\"Login Page 1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/login-003.png\";s:12:\"tmpl_created\";i:1494849744;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:100:\"https://library.elementor.com/login-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:211;s:16:\"popularity_index\";i:470;s:11:\"trend_index\";i:616;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:665;a:15:{s:2:\"id\";i:12164;s:5:\"title\";s:20:\"Law Firm &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/11/404.png\";s:12:\"tmpl_created\";i:1572846979;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/law-firm-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:211;s:16:\"popularity_index\";i:704;s:11:\"trend_index\";i:716;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:666;a:15:{s:2:\"id\";i:1748;s:5:\"title\";s:12:\"Login Page 2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/login-001.png\";s:12:\"tmpl_created\";i:1494849742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/login-page-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:212;s:16:\"popularity_index\";i:313;s:11:\"trend_index\";i:306;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:667;a:15:{s:2:\"id\";i:12170;s:5:\"title\";s:23:\"Law Firm &#8211; Archiv\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/archiv.png\";s:12:\"tmpl_created\";i:1572846967;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/law-firm-archiv/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:212;s:16:\"popularity_index\";i:431;s:11:\"trend_index\";i:294;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:668;a:15:{s:2:\"id\";i:3963;s:5:\"title\";s:32:\"Restaurant Site &#8211; Homepage\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/01/R.HomepageThumb.png\";s:12:\"tmpl_created\";i:1516284821;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/restaurant-site-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:109:\"[\"bar\",\"cafe\",\"cooking\",\"drink\",\"events\",\"fast food\",\"Food\",\"menu\",\"modern\",\"reservation\",\"Shop\",\"snack bar\"]\";s:10:\"menu_order\";i:213;s:16:\"popularity_index\";i:238;s:11:\"trend_index\";i:61;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:669;a:15:{s:2:\"id\";i:12179;s:5:\"title\";s:23:\"Law Firm &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/footer.png\";s:12:\"tmpl_created\";i:1572846958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/law-firm-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"footer\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:213;s:16:\"popularity_index\";i:388;s:11:\"trend_index\";i:240;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:670;a:15:{s:2:\"id\";i:3969;s:5:\"title\";s:28:\"Restaurant Site &#8211; Menu\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/01/R.MenuThumb.png\";s:12:\"tmpl_created\";i:1516284829;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/restaurant-site-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:109:\"[\"bar\",\"cafe\",\"cooking\",\"drink\",\"events\",\"fast food\",\"Food\",\"menu\",\"modern\",\"reservation\",\"Shop\",\"snack bar\"]\";s:10:\"menu_order\";i:214;s:16:\"popularity_index\";i:440;s:11:\"trend_index\";i:543;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:671;a:15:{s:2:\"id\";i:12194;s:5:\"title\";s:23:\"Law Firm &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-law-firm.png\";s:12:\"tmpl_created\";i:1572846935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/law-firm-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"header\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:214;s:16:\"popularity_index\";i:80;s:11:\"trend_index\";i:39;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:672;a:15:{s:2:\"id\";i:12203;s:5:\"title\";s:30:\"Law Firm &#8211; Search Archiv\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/11/search_result.png\";s:12:\"tmpl_created\";i:1572846925;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/law-firm-search-archiv/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:215;s:16:\"popularity_index\";i:493;s:11:\"trend_index\";i:433;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:673;a:15:{s:2:\"id\";i:3966;s:5:\"title\";s:29:\"Restaurant Site &#8211; About\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/01/R.AboutThumb.png.png\";s:12:\"tmpl_created\";i:1516284839;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/restaurant-site-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:109:\"[\"bar\",\"cafe\",\"cooking\",\"drink\",\"events\",\"fast food\",\"Food\",\"menu\",\"modern\",\"reservation\",\"Shop\",\"snack bar\"]\";s:10:\"menu_order\";i:215;s:16:\"popularity_index\";i:275;s:11:\"trend_index\";i:528;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:674;a:15:{s:2:\"id\";i:12212;s:5:\"title\";s:28:\"Law Firm &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/single.png\";s:12:\"tmpl_created\";i:1572846914;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/law-firm-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:216;s:16:\"popularity_index\";i:326;s:11:\"trend_index\";i:214;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:675;a:15:{s:2:\"id\";i:3972;s:5:\"title\";s:31:\"Restaurant Site &#8211; Contact\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/01/R.ContactThumb.png\";s:12:\"tmpl_created\";i:1516284847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/restaurant-site-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:109:\"[\"bar\",\"cafe\",\"cooking\",\"drink\",\"events\",\"fast food\",\"Food\",\"menu\",\"modern\",\"reservation\",\"Shop\",\"snack bar\"]\";s:10:\"menu_order\";i:216;s:16:\"popularity_index\";i:405;s:11:\"trend_index\";i:588;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:676;a:15:{s:2:\"id\";i:2080;s:5:\"title\";s:27:\"Ski Resort &#8211; Homepage\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/10/Ski-Resort-Home-Page.png\";s:12:\"tmpl_created\";i:1508161124;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/ski-resort-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:217;s:16:\"popularity_index\";i:358;s:11:\"trend_index\";i:612;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:677;a:15:{s:2:\"id\";i:14772;s:5:\"title\";s:35:\"Luxury Real Estate &#8211; 404 page\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/07/404.png\";s:12:\"tmpl_created\";i:1595315728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/luxury-real-estate-404-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:217;s:16:\"popularity_index\";i:759;s:11:\"trend_index\";i:720;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:678;a:15:{s:2:\"id\";i:2088;s:5:\"title\";s:24:\"Ski Resort &#8211; About\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/10/Ski-Resort-About.png\";s:12:\"tmpl_created\";i:1508161129;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/ski-resort-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:218;s:16:\"popularity_index\";i:487;s:11:\"trend_index\";i:683;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:679;a:15:{s:2:\"id\";i:14779;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Footer.png\";s:12:\"tmpl_created\";i:1595315743;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/luxury-real-estate-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"footer\",\"real estate\",\"realestate\"]\";s:10:\"menu_order\";i:218;s:16:\"popularity_index\";i:536;s:11:\"trend_index\";i:505;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:680;a:15:{s:2:\"id\";i:14790;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Header.png\";s:12:\"tmpl_created\";i:1595315760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/luxury-real-estate-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"header\",\"real estate\",\"realestate\"]\";s:10:\"menu_order\";i:219;s:16:\"popularity_index\";i:101;s:11:\"trend_index\";i:157;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:681;a:15:{s:2:\"id\";i:2085;s:5:\"title\";s:27:\"Ski Resort &#8211; Services\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2017/10/Ski-Resort-Services.png\";s:12:\"tmpl_created\";i:1508161134;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/ski-resort-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:219;s:16:\"popularity_index\";i:620;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:682;a:15:{s:2:\"id\";i:14809;s:5:\"title\";s:45:\"Luxury Real Estate &#8211; Properties Archive\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Properties.png\";s:12:\"tmpl_created\";i:1595315826;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/luxury-real-estate-properties-archive/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"real estate\",\"realestate\"]\";s:10:\"menu_order\";i:220;s:16:\"popularity_index\";i:414;s:11:\"trend_index\";i:420;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:683;a:15:{s:2:\"id\";i:2462;s:5:\"title\";s:23:\"Architect &#8211; About\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2017/10/architect-–-about.png\";s:12:\"tmpl_created\";i:1508243317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/architect-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:220;s:16:\"popularity_index\";i:364;s:11:\"trend_index\";i:383;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:684;a:15:{s:2:\"id\";i:14816;s:5:\"title\";s:47:\"Luxury Real Estate &#8211; Property single post\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/07/Single-Property-.png\";s:12:\"tmpl_created\";i:1595315847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/luxury-real-estate-property-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"real estate\",\"realestate\"]\";s:10:\"menu_order\";i:221;s:16:\"popularity_index\";i:541;s:11:\"trend_index\";i:665;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:685;a:15:{s:2:\"id\";i:2362;s:5:\"title\";s:26:\"Architect &#8211; Projects\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2017/10/Architect-Projects.png\";s:12:\"tmpl_created\";i:1508243335;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/architect-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:221;s:16:\"popularity_index\";i:460;s:11:\"trend_index\";i:443;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:686;a:15:{s:2:\"id\";i:14799;s:5:\"title\";s:38:\"Luxury Real Estate &#8211; single post\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Post.png\";s:12:\"tmpl_created\";i:1595315792;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/luxury-real-estate-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"real estate\",\"realestate\"]\";s:10:\"menu_order\";i:222;s:16:\"popularity_index\";i:369;s:11:\"trend_index\";i:441;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:687;a:15:{s:2:\"id\";i:614;s:5:\"title\";s:25:\"Architect &#8211; Contact\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2016/12/architect-contact.jpg\";s:12:\"tmpl_created\";i:1481549169;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/architect-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:222;s:16:\"popularity_index\";i:335;s:11:\"trend_index\";i:446;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:688;a:15:{s:2:\"id\";i:2126;s:5:\"title\";s:37:\"Construction Company &#8211; Homepage\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2017/10/Construction-Company-Home-Page.png\";s:12:\"tmpl_created\";i:1508325849;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/construction-company-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:223;s:16:\"popularity_index\";i:271;s:11:\"trend_index\";i:311;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:689;a:15:{s:2:\"id\";i:12635;s:5:\"title\";s:20:\"Magazine &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/01/404_s.png\";s:12:\"tmpl_created\";i:1579060746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/magazine-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:25:\"[\"404\",\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:223;s:16:\"popularity_index\";i:645;s:11:\"trend_index\";i:734;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:690;a:15:{s:2:\"id\";i:2129;s:5:\"title\";s:34:\"Construction Company &#8211; About\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/10/Construction-Company-About.png\";s:12:\"tmpl_created\";i:1508325881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/construction-company-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:224;s:16:\"popularity_index\";i:321;s:11:\"trend_index\";i:448;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:691;a:15:{s:2:\"id\";i:12643;s:5:\"title\";s:24:\"Magazine &#8211; Archiv1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv1_s.png\";s:12:\"tmpl_created\";i:1579060737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/magazine-archiv1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:224;s:16:\"popularity_index\";i:346;s:11:\"trend_index\";i:272;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:692;a:15:{s:2:\"id\";i:2135;s:5:\"title\";s:36:\"Construction Company &#8211; Contact\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2017/10/Construction-Company-Contact.png\";s:12:\"tmpl_created\";i:1508325922;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/construction-company-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:225;s:16:\"popularity_index\";i:370;s:11:\"trend_index\";i:473;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:693;a:15:{s:2:\"id\";i:12669;s:5:\"title\";s:23:\"Magazine &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Footer_s.png\";s:12:\"tmpl_created\";i:1579060715;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/magazine-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:28:\"[\"Blog\",\"footer\",\"Magazine\"]\";s:10:\"menu_order\";i:225;s:16:\"popularity_index\";i:442;s:11:\"trend_index\";i:349;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:694;a:15:{s:2:\"id\";i:2094;s:5:\"title\";s:28:\"Plants Shop &#8211; Homepage\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/11/Plants-Shop-Home.png\";s:12:\"tmpl_created\";i:1509621053;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/plants-shop-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:226;s:16:\"popularity_index\";i:269;s:11:\"trend_index\";i:254;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:695;a:15:{s:2:\"id\";i:12678;s:5:\"title\";s:23:\"Magazine &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-magazine.png\";s:12:\"tmpl_created\";i:1579060701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/magazine-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:28:\"[\"Blog\",\"header\",\"Magazine\"]\";s:10:\"menu_order\";i:226;s:16:\"popularity_index\";i:295;s:11:\"trend_index\";i:197;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:696;a:15:{s:2:\"id\";i:2120;s:5:\"title\";s:25:\"Plants Shop &#8211; About\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/11/Plants-Shop-About.png\";s:12:\"tmpl_created\";i:1509631820;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/plants-shop-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:227;s:16:\"popularity_index\";i:376;s:11:\"trend_index\";i:573;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:697;a:15:{s:2:\"id\";i:12661;s:5:\"title\";s:23:\"Magazine &#8211; Search\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Search_s.png\";s:12:\"tmpl_created\";i:1579060722;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/magazine-search/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:227;s:16:\"popularity_index\";i:396;s:11:\"trend_index\";i:509;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:698;a:15:{s:2:\"id\";i:3153;s:5:\"title\";s:14:\"Halloween Pack\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/10/halloween.png\";s:12:\"tmpl_created\";i:1508950132;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/halloween-pack/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:228;s:16:\"popularity_index\";i:685;s:11:\"trend_index\";i:775;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:699;a:15:{s:2:\"id\";i:12688;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 1\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post2_s.png\";s:12:\"tmpl_created\";i:1579060692;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/magazine-single-post-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:228;s:16:\"popularity_index\";i:342;s:11:\"trend_index\";i:175;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:700;a:15:{s:2:\"id\";i:3338;s:5:\"title\";s:31:\"Black Friday &#8211; Nature Set\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/11/black-friday-1.png\";s:12:\"tmpl_created\";i:1511203351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/black-friday-nature-set/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:229;s:16:\"popularity_index\";i:604;s:11:\"trend_index\";i:786;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:701;a:15:{s:2:\"id\";i:12699;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 2\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post3_s.png\";s:12:\"tmpl_created\";i:1579060680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/magazine-single-post-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:229;s:16:\"popularity_index\";i:348;s:11:\"trend_index\";i:129;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:702;a:15:{s:2:\"id\";i:3339;s:5:\"title\";s:35:\"Black Friday &#8211; Pop-Styled Set\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/11/black-friday-2.png\";s:12:\"tmpl_created\";i:1511203636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/black-friday-pop-styled-set/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:230;s:16:\"popularity_index\";i:561;s:11:\"trend_index\";i:836;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:703;a:15:{s:2:\"id\";i:12707;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post1_s.png\";s:12:\"tmpl_created\";i:1579060669;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/magazine-single-post-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:230;s:16:\"popularity_index\";i:476;s:11:\"trend_index\";i:246;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:704;a:15:{s:2:\"id\";i:3335;s:5:\"title\";s:31:\"Black Friday &#8211; Retail Set\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/11/black-friday-4.png\";s:12:\"tmpl_created\";i:1511203246;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/black-friday-retail-set/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:231;s:16:\"popularity_index\";i:560;s:11:\"trend_index\";i:680;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:705;a:15:{s:2:\"id\";i:12716;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post4_s.png\";s:12:\"tmpl_created\";i:1579060659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-single-post-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:231;s:16:\"popularity_index\";i:513;s:11:\"trend_index\";i:489;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:706;a:15:{s:2:\"id\";i:3340;s:5:\"title\";s:41:\"Black Friday &#8211; Software Product Set\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/11/black-friday-3.png\";s:12:\"tmpl_created\";i:1511203713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/black-friday-software-product-set/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:232;s:16:\"popularity_index\";i:502;s:11:\"trend_index\";i:592;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:707;a:15:{s:2:\"id\";i:12652;s:5:\"title\";s:17:\"Magazine- Archiv2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv2_s.png\";s:12:\"tmpl_created\";i:1579060730;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/magazine-archiv2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:232;s:16:\"popularity_index\";i:525;s:11:\"trend_index\";i:585;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:708;a:15:{s:2:\"id\";i:3517;s:5:\"title\";s:27:\"Christmas &#8211; Gift Shop\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/12/XmasThumb.png\";s:12:\"tmpl_created\";i:1513877937;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/christmas-gift-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:233;s:16:\"popularity_index\";i:580;s:11:\"trend_index\";i:834;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:709;a:15:{s:2:\"id\";i:13361;s:5:\"title\";s:25:\"Online Course &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.jpg\";s:12:\"tmpl_created\";i:1587474710;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/online-course-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:35:\"[\"404\",\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:233;s:16:\"popularity_index\";i:682;s:11:\"trend_index\";i:498;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:710;a:15:{s:2:\"id\";i:3734;s:5:\"title\";s:28:\"Christmas &#8211; Car Agency\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/12/cover-lib-v3.png\";s:12:\"tmpl_created\";i:1514197794;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/christmas-car-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:234;s:16:\"popularity_index\";i:575;s:11:\"trend_index\";i:622;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:711;a:15:{s:2:\"id\";i:13387;s:5:\"title\";s:32:\"Online Course &#8211; End Lesson\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-End-.jpg\";s:12:\"tmpl_created\";i:1587474682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/online-course-end-lesson/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:234;s:16:\"popularity_index\";i:653;s:11:\"trend_index\";i:408;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:712;a:15:{s:2:\"id\";i:3764;s:5:\"title\";s:33:\"Christmas &#8211; Interior Design\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/12/cover-lib-v6.png\";s:12:\"tmpl_created\";i:1514198234;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/christmas-interior-design/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:235;s:16:\"popularity_index\";i:566;s:11:\"trend_index\";i:708;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:713;a:15:{s:2:\"id\";i:13369;s:5:\"title\";s:28:\"Online Course &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.jpg\";s:12:\"tmpl_created\";i:1587474701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/online-course-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"footer\"]\";s:10:\"menu_order\";i:235;s:16:\"popularity_index\";i:389;s:11:\"trend_index\";i:308;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:714;a:15:{s:2:\"id\";i:3565;s:5:\"title\";s:27:\"Christmas &#8211; Tree Shop\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/12/XmasTreeThumb.png\";s:12:\"tmpl_created\";i:1514204382;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/christmas-tree-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:236;s:16:\"popularity_index\";i:455;s:11:\"trend_index\";i:469;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:715;a:15:{s:2:\"id\";i:13378;s:5:\"title\";s:28:\"Online Course &#8211; Header\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-education-online-courses.jpg\";s:12:\"tmpl_created\";i:1587474693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/online-course-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"header\"]\";s:10:\"menu_order\";i:236;s:16:\"popularity_index\";i:492;s:11:\"trend_index\";i:519;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:716;a:15:{s:2:\"id\";i:3862;s:5:\"title\";s:35:\"Christmas &#8211; Design Conference\";s:9:\"thumbnail\";s:63:\"https://library.elementor.com/wp-content/uploads/2017/12/q1.png\";s:12:\"tmpl_created\";i:1514206745;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/christmas-design-conference/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:237;s:16:\"popularity_index\";i:473;s:11:\"trend_index\";i:518;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:717;a:15:{s:2:\"id\";i:13395;s:5:\"title\";s:34:\"Online Course &#8211; Start Lesson\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-Start.jpg\";s:12:\"tmpl_created\";i:1587474673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/online-course-start-lesson/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:237;s:16:\"popularity_index\";i:672;s:11:\"trend_index\";i:578;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:718;a:15:{s:2:\"id\";i:3777;s:5:\"title\";s:39:\"Christmas &#8211; Snowboard Competition\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/12/cover-lib-v7.png\";s:12:\"tmpl_created\";i:1514205420;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/christmas-snowboard-competition/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:238;s:16:\"popularity_index\";i:509;s:11:\"trend_index\";i:682;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:719;a:15:{s:2:\"id\";i:13089;s:5:\"title\";s:23:\"Photography &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/02/404_s.png\";s:12:\"tmpl_created\";i:1582091623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/photography-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:33:\"[\"404\",\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:238;s:16:\"popularity_index\";i:702;s:11:\"trend_index\";i:706;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:720;a:15:{s:2:\"id\";i:420;s:5:\"title\";s:11:\"Hero UI Kit\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2016/09/library-ui-kit-cover.png\";s:12:\"tmpl_created\";i:1475067229;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/hero-ui-kit/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:239;s:16:\"popularity_index\";i:22;s:11:\"trend_index\";i:160;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:721;a:15:{s:2:\"id\";i:13096;s:5:\"title\";s:32:\"Photography &#8211; Archiv Media\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Archiv_s.png\";s:12:\"tmpl_created\";i:1582091742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/photography-archiv-media/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:239;s:16:\"popularity_index\";i:631;s:11:\"trend_index\";i:405;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:722;a:15:{s:2:\"id\";i:13103;s:5:\"title\";s:26:\"Photography &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Footer_s.png\";s:12:\"tmpl_created\";i:1582091903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/photography-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:36:\"[\"footer\",\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:240;s:16:\"popularity_index\";i:422;s:11:\"trend_index\";i:230;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:723;a:15:{s:2:\"id\";i:13112;s:5:\"title\";s:26:\"Photography &#8211; Header\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-photography-portfolio.png\";s:12:\"tmpl_created\";i:1582092483;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/photography-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:36:\"[\"header\",\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:241;s:16:\"popularity_index\";i:325;s:11:\"trend_index\";i:205;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:724;a:15:{s:2:\"id\";i:13120;s:5:\"title\";s:31:\"Photography &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Post_s.png\";s:12:\"tmpl_created\";i:1582092351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/photography-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:242;s:16:\"popularity_index\";i:671;s:11:\"trend_index\";i:645;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:725;a:15:{s:2:\"id\";i:11807;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/09/404_small.png\";s:12:\"tmpl_created\";i:1569430070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:243;s:16:\"popularity_index\";i:480;s:11:\"trend_index\";i:497;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:726;a:15:{s:2:\"id\";i:11832;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Footer_small.png\";s:12:\"tmpl_created\";i:1569430019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"footer\",\"portfolio\"]\";s:10:\"menu_order\";i:244;s:16:\"popularity_index\";i:246;s:11:\"trend_index\";i:102;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:727;a:15:{s:2:\"id\";i:11847;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Archiv_small.png\";s:12:\"tmpl_created\";i:1569430010;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:245;s:16:\"popularity_index\";i:336;s:11:\"trend_index\";i:455;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:728;a:15:{s:2:\"id\";i:11854;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/09/Post_small.png\";s:12:\"tmpl_created\";i:1569429983;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/portfolio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:246;s:16:\"popularity_index\";i:482;s:11:\"trend_index\";i:609;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:729;a:15:{s:2:\"id\";i:11890;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-design-portfolio.png\";s:12:\"tmpl_created\";i:1571907344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"header\",\"portfolio\"]\";s:10:\"menu_order\";i:247;s:16:\"popularity_index\";i:306;s:11:\"trend_index\";i:364;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:730;a:15:{s:2:\"id\";i:11861;s:5:\"title\";s:27:\"Portfolio &#8211; Project 1\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project1_small.png\";s:12:\"tmpl_created\";i:1569429975;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/portfolio-project-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:248;s:16:\"popularity_index\";i:643;s:11:\"trend_index\";i:764;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:731;a:15:{s:2:\"id\";i:11870;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569429964;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/portfolio-project-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:249;s:16:\"popularity_index\";i:662;s:11:\"trend_index\";i:816;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:732;a:15:{s:2:\"id\";i:11897;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569494236;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-project-2-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:250;s:16:\"popularity_index\";i:733;s:11:\"trend_index\";i:744;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:733;a:15:{s:2:\"id\";i:11877;s:5:\"title\";s:27:\"Portfolio &#8211; Project 3\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project3_small.png\";s:12:\"tmpl_created\";i:1569429954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/portfolio-project-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:251;s:16:\"popularity_index\";i:692;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:734;a:15:{s:2:\"id\";i:5019;s:5:\"title\";s:11:\"Portfolio 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_1.png\";s:12:\"tmpl_created\";i:1520520580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:252;s:16:\"popularity_index\";i:170;s:11:\"trend_index\";i:236;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:735;a:15:{s:2:\"id\";i:5141;s:5:\"title\";s:12:\"Portfolio 10\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_10.png\";s:12:\"tmpl_created\";i:1520520601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:253;s:16:\"popularity_index\";i:416;s:11:\"trend_index\";i:478;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:736;a:15:{s:2:\"id\";i:5027;s:5:\"title\";s:12:\"Portfolio 11\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_2.png\";s:12:\"tmpl_created\";i:1520520581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:254;s:16:\"popularity_index\";i:304;s:11:\"trend_index\";i:421;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:737;a:15:{s:2:\"id\";i:5037;s:5:\"title\";s:12:\"Portfolio 12\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_3.png\";s:12:\"tmpl_created\";i:1520520583;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:255;s:16:\"popularity_index\";i:279;s:11:\"trend_index\";i:399;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:738;a:15:{s:2:\"id\";i:5057;s:5:\"title\";s:12:\"Portfolio 13\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_4.png\";s:12:\"tmpl_created\";i:1520520586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:256;s:16:\"popularity_index\";i:239;s:11:\"trend_index\";i:288;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:739;a:15:{s:2:\"id\";i:5071;s:5:\"title\";s:12:\"Portfolio 14\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_5.png\";s:12:\"tmpl_created\";i:1520520588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:257;s:16:\"popularity_index\";i:276;s:11:\"trend_index\";i:329;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:740;a:15:{s:2:\"id\";i:5090;s:5:\"title\";s:12:\"Portfolio 15\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_6.png\";s:12:\"tmpl_created\";i:1520520591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:258;s:16:\"popularity_index\";i:186;s:11:\"trend_index\";i:283;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:741;a:15:{s:2:\"id\";i:5098;s:5:\"title\";s:12:\"Portfolio 16\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_7.png\";s:12:\"tmpl_created\";i:1520520593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:259;s:16:\"popularity_index\";i:156;s:11:\"trend_index\";i:211;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:742;a:15:{s:2:\"id\";i:5115;s:5:\"title\";s:12:\"Portfolio 17\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_8.png\";s:12:\"tmpl_created\";i:1520520596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:260;s:16:\"popularity_index\";i:19;s:11:\"trend_index\";i:22;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:743;a:15:{s:2:\"id\";i:5133;s:5:\"title\";s:12:\"Portfolio 18\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_9.png\";s:12:\"tmpl_created\";i:1520520599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:261;s:16:\"popularity_index\";i:180;s:11:\"trend_index\";i:280;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:744;a:15:{s:2:\"id\";i:5149;s:5:\"title\";s:11:\"Portfolio 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_10.png\";s:12:\"tmpl_created\";i:1520520602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:262;s:16:\"popularity_index\";i:413;s:11:\"trend_index\";i:635;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:745;a:15:{s:2:\"id\";i:5045;s:5:\"title\";s:11:\"Portfolio 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_2.png\";s:12:\"tmpl_created\";i:1520443423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:263;s:16:\"popularity_index\";i:636;s:11:\"trend_index\";i:608;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:746;a:15:{s:2:\"id\";i:5082;s:5:\"title\";s:11:\"Portfolio 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_4.png\";s:12:\"tmpl_created\";i:1520520589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:264;s:16:\"popularity_index\";i:558;s:11:\"trend_index\";i:654;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:747;a:15:{s:2:\"id\";i:5107;s:5:\"title\";s:11:\"Portfolio 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_7.png\";s:12:\"tmpl_created\";i:1520520594;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:265;s:16:\"popularity_index\";i:380;s:11:\"trend_index\";i:347;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:748;a:15:{s:2:\"id\";i:5125;s:5:\"title\";s:11:\"Portfolio 6\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_8.png\";s:12:\"tmpl_created\";i:1520520597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:266;s:16:\"popularity_index\";i:236;s:11:\"trend_index\";i:386;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:749;a:15:{s:2:\"id\";i:5007;s:5:\"title\";s:11:\"Portfolio 7\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_1.png\";s:12:\"tmpl_created\";i:1520520578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:267;s:16:\"popularity_index\";i:44;s:11:\"trend_index\";i:183;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:750;a:15:{s:2:\"id\";i:4509;s:5:\"title\";s:9:\"Pricing 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_1.png\";s:12:\"tmpl_created\";i:1520443310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:268;s:16:\"popularity_index\";i:703;s:11:\"trend_index\";i:641;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:751;a:15:{s:2:\"id\";i:4553;s:5:\"title\";s:10:\"Pricing 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_4.png\";s:12:\"tmpl_created\";i:1520443319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:269;s:16:\"popularity_index\";i:511;s:11:\"trend_index\";i:506;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:752;a:15:{s:2:\"id\";i:4572;s:5:\"title\";s:10:\"Pricing 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_5.png\";s:12:\"tmpl_created\";i:1520443324;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:270;s:16:\"popularity_index\";i:308;s:11:\"trend_index\";i:248;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:753;a:15:{s:2:\"id\";i:4580;s:5:\"title\";s:10:\"Pricing 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_6.png\";s:12:\"tmpl_created\";i:1520443326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:271;s:16:\"popularity_index\";i:576;s:11:\"trend_index\";i:526;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:754;a:15:{s:2:\"id\";i:4597;s:5:\"title\";s:10:\"Pricing 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_7.png\";s:12:\"tmpl_created\";i:1520443330;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:272;s:16:\"popularity_index\";i:613;s:11:\"trend_index\";i:450;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:755;a:15:{s:2:\"id\";i:4613;s:5:\"title\";s:10:\"Pricing 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_8.png\";s:12:\"tmpl_created\";i:1520443334;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:273;s:16:\"popularity_index\";i:581;s:11:\"trend_index\";i:568;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:756;a:15:{s:2:\"id\";i:4529;s:5:\"title\";s:9:\"Pricing 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_2.png\";s:12:\"tmpl_created\";i:1520443314;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:274;s:16:\"popularity_index\";i:609;s:11:\"trend_index\";i:613;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:757;a:15:{s:2:\"id\";i:4545;s:5:\"title\";s:9:\"Pricing 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_3.png\";s:12:\"tmpl_created\";i:1520443317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:275;s:16:\"popularity_index\";i:707;s:11:\"trend_index\";i:825;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:758;a:15:{s:2:\"id\";i:4562;s:5:\"title\";s:9:\"Pricing 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_4.png\";s:12:\"tmpl_created\";i:1520443322;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:276;s:16:\"popularity_index\";i:697;s:11:\"trend_index\";i:821;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:759;a:15:{s:2:\"id\";i:4589;s:5:\"title\";s:9:\"Pricing 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_6.png\";s:12:\"tmpl_created\";i:1520443327;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:277;s:16:\"popularity_index\";i:716;s:11:\"trend_index\";i:639;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:760;a:15:{s:2:\"id\";i:4605;s:5:\"title\";s:9:\"Pricing 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_7.png\";s:12:\"tmpl_created\";i:1520443332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:278;s:16:\"popularity_index\";i:738;s:11:\"trend_index\";i:773;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:761;a:15:{s:2:\"id\";i:4500;s:5:\"title\";s:9:\"Pricing 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_1.png\";s:12:\"tmpl_created\";i:1520443308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:279;s:16:\"popularity_index\";i:500;s:11:\"trend_index\";i:451;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:762;a:15:{s:2:\"id\";i:4521;s:5:\"title\";s:9:\"Pricing 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_2.png\";s:12:\"tmpl_created\";i:1520443312;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:280;s:16:\"popularity_index\";i:311;s:11:\"trend_index\";i:372;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:763;a:15:{s:2:\"id\";i:4537;s:5:\"title\";s:9:\"Pricing 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_3.png\";s:12:\"tmpl_created\";i:1520443315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:281;s:16:\"popularity_index\";i:589;s:11:\"trend_index\";i:841;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:764;a:15:{s:2:\"id\";i:9239;s:5:\"title\";s:17:\"product archive 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-1.png\";s:12:\"tmpl_created\";i:1532953482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/product-archive-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:282;s:16:\"popularity_index\";i:60;s:11:\"trend_index\";i:25;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:765;a:15:{s:2:\"id\";i:9247;s:5:\"title\";s:17:\"product archive 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-2.png\";s:12:\"tmpl_created\";i:1532953793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/product-archive-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:283;s:16:\"popularity_index\";i:71;s:11:\"trend_index\";i:30;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:766;a:15:{s:2:\"id\";i:9254;s:5:\"title\";s:17:\"product archive 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-3.png\";s:12:\"tmpl_created\";i:1532954032;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/product-archive-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:284;s:16:\"popularity_index\";i:73;s:11:\"trend_index\";i:44;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:767;a:15:{s:2:\"id\";i:15204;s:5:\"title\";s:24:\"Psychologist &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/09/404.jpg\";s:12:\"tmpl_created\";i:1600161419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/psychologist-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:285;s:16:\"popularity_index\";i:574;s:11:\"trend_index\";i:493;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:768;a:15:{s:2:\"id\";i:15212;s:5:\"title\";s:28:\"Psychologist &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Blog.jpg\";s:12:\"tmpl_created\";i:1600162340;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/psychologist-archive/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:286;s:16:\"popularity_index\";i:379;s:11:\"trend_index\";i:358;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:769;a:15:{s:2:\"id\";i:15219;s:5:\"title\";s:27:\"Psychologist &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Footer.jpg\";s:12:\"tmpl_created\";i:1600163069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/psychologist-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"footer\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:287;s:16:\"popularity_index\";i:599;s:11:\"trend_index\";i:500;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:770;a:15:{s:2:\"id\";i:15230;s:5:\"title\";s:27:\"Psychologist &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Header.png\";s:12:\"tmpl_created\";i:1600163444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/psychologist-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"header\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:288;s:16:\"popularity_index\";i:429;s:11:\"trend_index\";i:423;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:771;a:15:{s:2:\"id\";i:15240;s:5:\"title\";s:34:\"Psychologist &#8211; single post 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Post.png\";s:12:\"tmpl_created\";i:1600164087;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/psychologist-single-post-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:289;s:16:\"popularity_index\";i:562;s:11:\"trend_index\";i:570;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:772;a:15:{s:2:\"id\";i:15251;s:5:\"title\";s:34:\"Psychologist &#8211; single post 2\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Service-Page.png\";s:12:\"tmpl_created\";i:1600165179;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/psychologist-single-post-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:290;s:16:\"popularity_index\";i:507;s:11:\"trend_index\";i:368;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:773;a:15:{s:2:\"id\";i:4313;s:5:\"title\";s:11:\"Services 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_8.png\";s:12:\"tmpl_created\";i:1520443268;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:291;s:16:\"popularity_index\";i:115;s:11:\"trend_index\";i:53;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:774;a:15:{s:2:\"id\";i:4324;s:5:\"title\";s:11:\"Services 14\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_9.png\";s:12:\"tmpl_created\";i:1520443270;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:292;s:16:\"popularity_index\";i:277;s:11:\"trend_index\";i:138;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:775;a:15:{s:2:\"id\";i:4368;s:5:\"title\";s:11:\"Services 16\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_13.png\";s:12:\"tmpl_created\";i:1520443279;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:293;s:16:\"popularity_index\";i:62;s:11:\"trend_index\";i:59;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:776;a:15:{s:2:\"id\";i:4391;s:5:\"title\";s:11:\"Services 17\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_14.png\";s:12:\"tmpl_created\";i:1520443283;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:294;s:16:\"popularity_index\";i:153;s:11:\"trend_index\";i:120;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:777;a:15:{s:2:\"id\";i:4235;s:5:\"title\";s:11:\"Services 18\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_2.png\";s:12:\"tmpl_created\";i:1520443251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:295;s:16:\"popularity_index\";i:273;s:11:\"trend_index\";i:172;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:778;a:15:{s:2:\"id\";i:4357;s:5:\"title\";s:11:\"Services 20\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_12.png\";s:12:\"tmpl_created\";i:1520443277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:296;s:16:\"popularity_index\";i:45;s:11:\"trend_index\";i:45;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:779;a:15:{s:2:\"id\";i:4341;s:5:\"title\";s:11:\"Services 21\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_11.png\";s:12:\"tmpl_created\";i:1520443274;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:297;s:16:\"popularity_index\";i:142;s:11:\"trend_index\";i:114;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:780;a:15:{s:2:\"id\";i:4332;s:5:\"title\";s:11:\"Services 22\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_10.png\";s:12:\"tmpl_created\";i:1520443272;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-22/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:298;s:16:\"popularity_index\";i:138;s:11:\"trend_index\";i:149;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:781;a:15:{s:2:\"id\";i:4212;s:5:\"title\";s:11:\"Services 23\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_1.png\";s:12:\"tmpl_created\";i:1520443248;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-23/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:299;s:16:\"popularity_index\";i:136;s:11:\"trend_index\";i:302;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:782;a:15:{s:2:\"id\";i:4276;s:5:\"title\";s:11:\"Services 24\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_4.png\";s:12:\"tmpl_created\";i:1520443261;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-24/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:300;s:16:\"popularity_index\";i:353;s:11:\"trend_index\";i:514;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:783;a:15:{s:2:\"id\";i:4260;s:5:\"title\";s:11:\"Services 25\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_3.png\";s:12:\"tmpl_created\";i:1520443257;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-25/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:301;s:16:\"popularity_index\";i:184;s:11:\"trend_index\";i:209;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:784;a:15:{s:2:\"id\";i:4244;s:5:\"title\";s:11:\"Services 26\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_2.png\";s:12:\"tmpl_created\";i:1520443253;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-26/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:302;s:16:\"popularity_index\";i:544;s:11:\"trend_index\";i:596;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:785;a:15:{s:2:\"id\";i:4400;s:5:\"title\";s:11:\"Services 27\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_13.png\";s:12:\"tmpl_created\";i:1520443285;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-27/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:303;s:16:\"popularity_index\";i:286;s:11:\"trend_index\";i:438;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:786;a:15:{s:2:\"id\";i:4376;s:5:\"title\";s:11:\"Services 28\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_12.png\";s:12:\"tmpl_created\";i:1520443281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-28/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:304;s:16:\"popularity_index\";i:151;s:11:\"trend_index\";i:249;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:787;a:15:{s:2:\"id\";i:4349;s:5:\"title\";s:11:\"Services 29\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_11.png\";s:12:\"tmpl_created\";i:1520443275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-29/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:305;s:16:\"popularity_index\";i:330;s:11:\"trend_index\";i:483;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:788;a:15:{s:2:\"id\";i:4227;s:5:\"title\";s:11:\"Services 30\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_1.png\";s:12:\"tmpl_created\";i:1520443250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-30/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:306;s:16:\"popularity_index\";i:351;s:11:\"trend_index\";i:553;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:789;a:15:{s:2:\"id\";i:6162;s:5:\"title\";s:11:\"Services 31\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_1.png\";s:12:\"tmpl_created\";i:1520443668;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-31/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:307;s:16:\"popularity_index\";i:372;s:11:\"trend_index\";i:550;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:790;a:15:{s:2:\"id\";i:4302;s:5:\"title\";s:10:\"Services 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_7.png\";s:12:\"tmpl_created\";i:1520443266;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:308;s:16:\"popularity_index\";i:58;s:11:\"trend_index\";i:97;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:791;a:15:{s:2:\"id\";i:4293;s:5:\"title\";s:10:\"Services 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_6.png\";s:12:\"tmpl_created\";i:1520443265;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:309;s:16:\"popularity_index\";i:288;s:11:\"trend_index\";i:269;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:792;a:15:{s:2:\"id\";i:4284;s:5:\"title\";s:10:\"Services 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_5.png\";s:12:\"tmpl_created\";i:1520443263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:310;s:16:\"popularity_index\";i:27;s:11:\"trend_index\";i:21;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:793;a:15:{s:2:\"id\";i:4268;s:5:\"title\";s:10:\"Services 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_4.png\";s:12:\"tmpl_created\";i:1520443259;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:311;s:16:\"popularity_index\";i:173;s:11:\"trend_index\";i:213;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:794;a:15:{s:2:\"id\";i:4252;s:5:\"title\";s:10:\"Services 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_3.png\";s:12:\"tmpl_created\";i:1520443255;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:312;s:16:\"popularity_index\";i:46;s:11:\"trend_index\";i:99;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:795;a:15:{s:2:\"id\";i:8676;s:5:\"title\";s:13:\"single page 1\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.6.jpg\";s:12:\"tmpl_created\";i:1527682423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:313;s:16:\"popularity_index\";i:285;s:11:\"trend_index\";i:145;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:796;a:15:{s:2:\"id\";i:8678;s:5:\"title\";s:13:\"single page 2\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.2.jpg\";s:12:\"tmpl_created\";i:1527682780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:314;s:16:\"popularity_index\";i:140;s:11:\"trend_index\";i:82;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:797;a:15:{s:2:\"id\";i:8679;s:5:\"title\";s:13:\"single page 3\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.3.jpg\";s:12:\"tmpl_created\";i:1527682847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:315;s:16:\"popularity_index\";i:122;s:11:\"trend_index\";i:23;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:798;a:15:{s:2:\"id\";i:8680;s:5:\"title\";s:13:\"single page 4\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.1.jpg\";s:12:\"tmpl_created\";i:1527682896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:316;s:16:\"popularity_index\";i:373;s:11:\"trend_index\";i:190;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:799;a:15:{s:2:\"id\";i:8681;s:5:\"title\";s:13:\"single page 5\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.5.jpg\";s:12:\"tmpl_created\";i:1527682969;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:317;s:16:\"popularity_index\";i:287;s:11:\"trend_index\";i:218;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:800;a:15:{s:2:\"id\";i:8682;s:5:\"title\";s:13:\"single page 6\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.4.jpg\";s:12:\"tmpl_created\";i:1527683026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:318;s:16:\"popularity_index\";i:412;s:11:\"trend_index\";i:227;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:801;a:15:{s:2:\"id\";i:8703;s:5:\"title\";s:13:\"single page 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.7.jpg\";s:12:\"tmpl_created\";i:1527683072;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:319;s:16:\"popularity_index\";i:401;s:11:\"trend_index\";i:316;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:802;a:15:{s:2:\"id\";i:7650;s:5:\"title\";s:13:\"Single Post 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_1_v2.jpg\";s:12:\"tmpl_created\";i:1521557736;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:320;s:16:\"popularity_index\";i:119;s:11:\"trend_index\";i:266;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:803;a:15:{s:2:\"id\";i:7663;s:5:\"title\";s:13:\"Single Post 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_2_v2.jpg\";s:12:\"tmpl_created\";i:1521547761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:321;s:16:\"popularity_index\";i:50;s:11:\"trend_index\";i:139;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:804;a:15:{s:2:\"id\";i:9296;s:5:\"title\";s:13:\"Single Post 3\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3002.jpg\";s:12:\"tmpl_created\";i:1537440673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:322;s:16:\"popularity_index\";i:213;s:11:\"trend_index\";i:204;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:805;a:15:{s:2:\"id\";i:9301;s:5:\"title\";s:13:\"Single Post 4\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3003.jpg\";s:12:\"tmpl_created\";i:1537440661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:323;s:16:\"popularity_index\";i:248;s:11:\"trend_index\";i:336;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:806;a:15:{s:2:\"id\";i:9313;s:5:\"title\";s:13:\"Single Post 5\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3001.jpg\";s:12:\"tmpl_created\";i:1537440798;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:324;s:16:\"popularity_index\";i:197;s:11:\"trend_index\";i:177;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:807;a:15:{s:2:\"id\";i:9343;s:5:\"title\";s:13:\"Single Post 6\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3004.jpg\";s:12:\"tmpl_created\";i:1537443531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:325;s:16:\"popularity_index\";i:228;s:11:\"trend_index\";i:279;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:808;a:15:{s:2:\"id\";i:9349;s:5:\"title\";s:13:\"Single Post 7\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3005.jpg\";s:12:\"tmpl_created\";i:1537443903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:326;s:16:\"popularity_index\";i:158;s:11:\"trend_index\";i:253;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:809;a:15:{s:2:\"id\";i:9174;s:5:\"title\";s:17:\"single product 01\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product01_350.png\";s:12:\"tmpl_created\";i:1532950125;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/single-product-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:327;s:16:\"popularity_index\";i:31;s:11:\"trend_index\";i:6;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:810;a:15:{s:2:\"id\";i:9178;s:5:\"title\";s:17:\"single product 02\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product02_350new.png\";s:12:\"tmpl_created\";i:1532951997;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/single-product-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:328;s:16:\"popularity_index\";i:66;s:11:\"trend_index\";i:42;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:811;a:15:{s:2:\"id\";i:9180;s:5:\"title\";s:17:\"single product 03\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product03_350.png\";s:12:\"tmpl_created\";i:1532952302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/single-product-03/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:329;s:16:\"popularity_index\";i:108;s:11:\"trend_index\";i:66;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:812;a:15:{s:2:\"id\";i:9182;s:5:\"title\";s:17:\"single product 04\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product040_350.png\";s:12:\"tmpl_created\";i:1532952606;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/single-product-04/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:330;s:16:\"popularity_index\";i:123;s:11:\"trend_index\";i:81;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:813;a:15:{s:2:\"id\";i:6114;s:5:\"title\";s:7:\"Stats 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_6.png\";s:12:\"tmpl_created\";i:1520443659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:331;s:16:\"popularity_index\";i:434;s:11:\"trend_index\";i:692;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:814;a:15:{s:2:\"id\";i:6178;s:5:\"title\";s:8:\"Stats 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_2.png\";s:12:\"tmpl_created\";i:1520443676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:332;s:16:\"popularity_index\";i:435;s:11:\"trend_index\";i:755;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:815;a:15:{s:2:\"id\";i:6170;s:5:\"title\";s:8:\"Stats 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_2.png\";s:12:\"tmpl_created\";i:1520443670;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:333;s:16:\"popularity_index\";i:366;s:11:\"trend_index\";i:552;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:816;a:15:{s:2:\"id\";i:6186;s:5:\"title\";s:8:\"Stats 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_3.png\";s:12:\"tmpl_created\";i:1520443678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:334;s:16:\"popularity_index\";i:569;s:11:\"trend_index\";i:811;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:817;a:15:{s:2:\"id\";i:6071;s:5:\"title\";s:8:\"Stats 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_3.png\";s:12:\"tmpl_created\";i:1520443649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:335;s:16:\"popularity_index\";i:168;s:11:\"trend_index\";i:328;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:818;a:15:{s:2:\"id\";i:6106;s:5:\"title\";s:7:\"Stats 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_6.png\";s:12:\"tmpl_created\";i:1520443657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:336;s:16:\"popularity_index\";i:361;s:11:\"trend_index\";i:784;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:819;a:15:{s:2:\"id\";i:6079;s:5:\"title\";s:7:\"Stats 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_4.png\";s:12:\"tmpl_created\";i:1520443651;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:337;s:16:\"popularity_index\";i:284;s:11:\"trend_index\";i:385;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:820;a:15:{s:2:\"id\";i:6089;s:5:\"title\";s:7:\"Stats 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_5.png\";s:12:\"tmpl_created\";i:1520443653;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:338;s:16:\"popularity_index\";i:205;s:11:\"trend_index\";i:452;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:821;a:15:{s:2:\"id\";i:6063;s:5:\"title\";s:7:\"Stats 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_2.png\";s:12:\"tmpl_created\";i:1520443647;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:339;s:16:\"popularity_index\";i:181;s:11:\"trend_index\";i:419;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:822;a:15:{s:2:\"id\";i:6097;s:5:\"title\";s:7:\"Stats 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_2.png\";s:12:\"tmpl_created\";i:1520443655;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:340;s:16:\"popularity_index\";i:264;s:11:\"trend_index\";i:492;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:823;a:15:{s:2:\"id\";i:5956;s:5:\"title\";s:7:\"Stats 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_1.png\";s:12:\"tmpl_created\";i:1520443623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:341;s:16:\"popularity_index\";i:532;s:11:\"trend_index\";i:541;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:824;a:15:{s:2:\"id\";i:5947;s:5:\"title\";s:7:\"Stats 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_1.png\";s:12:\"tmpl_created\";i:1520443621;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:342;s:16:\"popularity_index\";i:368;s:11:\"trend_index\";i:531;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:825;a:15:{s:2:\"id\";i:6152;s:5:\"title\";s:7:\"Stats 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_1.png\";s:12:\"tmpl_created\";i:1520443666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:343;s:16:\"popularity_index\";i:272;s:11:\"trend_index\";i:557;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:826;a:15:{s:2:\"id\";i:5157;s:5:\"title\";s:11:\"Subscribe 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_1.png\";s:12:\"tmpl_created\";i:1520443448;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";i:344;s:16:\"popularity_index\";i:340;s:11:\"trend_index\";i:293;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:827;a:15:{s:2:\"id\";i:5181;s:5:\"title\";s:11:\"Subscribe 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_2.png\";s:12:\"tmpl_created\";i:1520443454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/subscribe-2-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";i:345;s:16:\"popularity_index\";i:451;s:11:\"trend_index\";i:340;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:828;a:15:{s:2:\"id\";i:5165;s:5:\"title\";s:11:\"Subscribe 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_1.png\";s:12:\"tmpl_created\";i:1520443450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";i:346;s:16:\"popularity_index\";i:520;s:11:\"trend_index\";i:620;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:829;a:15:{s:2:\"id\";i:5222;s:5:\"title\";s:11:\"Subscribe 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_3.png\";s:12:\"tmpl_created\";i:1520443464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";i:347;s:16:\"popularity_index\";i:397;s:11:\"trend_index\";i:427;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:830;a:15:{s:2:\"id\";i:5173;s:5:\"title\";s:11:\"Subscribe 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_2.png\";s:12:\"tmpl_created\";i:1520443452;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";i:348;s:16:\"popularity_index\";i:261;s:11:\"trend_index\";i:237;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:831;a:15:{s:2:\"id\";i:4801;s:5:\"title\";s:7:\"Team 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_8.png\";s:12:\"tmpl_created\";i:1520443369;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:349;s:16:\"popularity_index\";i:332;s:11:\"trend_index\";i:188;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:832;a:15:{s:2:\"id\";i:4770;s:5:\"title\";s:7:\"Team 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_6.png\";s:12:\"tmpl_created\";i:1520443364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/team-12-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:350;s:16:\"popularity_index\";i:432;s:11:\"trend_index\";i:488;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:833;a:15:{s:2:\"id\";i:4727;s:5:\"title\";s:7:\"Team 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_2.png\";s:12:\"tmpl_created\";i:1520443356;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:351;s:16:\"popularity_index\";i:375;s:11:\"trend_index\";i:345;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:834;a:15:{s:2:\"id\";i:5999;s:5:\"title\";s:7:\"Team 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_10.png\";s:12:\"tmpl_created\";i:1520443634;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:352;s:16:\"popularity_index\";i:110;s:11:\"trend_index\";i:318;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:835;a:15:{s:2:\"id\";i:4698;s:5:\"title\";s:7:\"Team 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_1.png\";s:12:\"tmpl_created\";i:1520443350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:353;s:16:\"popularity_index\";i:449;s:11:\"trend_index\";i:410;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:836;a:15:{s:2:\"id\";i:4781;s:5:\"title\";s:7:\"Team 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_7.png\";s:12:\"tmpl_created\";i:1520443365;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:354;s:16:\"popularity_index\";i:267;s:11:\"trend_index\";i:330;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:837;a:15:{s:2:\"id\";i:6144;s:5:\"title\";s:7:\"Team 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_11.png\";s:12:\"tmpl_created\";i:1520443664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:355;s:16:\"popularity_index\";i:166;s:11:\"trend_index\";i:365;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:838;a:15:{s:2:\"id\";i:4793;s:5:\"title\";s:7:\"Team 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_8.png\";s:12:\"tmpl_created\";i:1520443367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:356;s:16:\"popularity_index\";i:207;s:11:\"trend_index\";i:173;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:839;a:15:{s:2:\"id\";i:4809;s:5:\"title\";s:7:\"Team 19\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_9.png\";s:12:\"tmpl_created\";i:1520443371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:357;s:16:\"popularity_index\";i:300;s:11:\"trend_index\";i:465;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:840;a:15:{s:2:\"id\";i:4736;s:5:\"title\";s:7:\"Team 20\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_4.png\";s:12:\"tmpl_created\";i:1520443358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:358;s:16:\"popularity_index\";i:144;s:11:\"trend_index\";i:159;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:841;a:15:{s:2:\"id\";i:4818;s:5:\"title\";s:7:\"Team 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_9.png\";s:12:\"tmpl_created\";i:1520443373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:359;s:16:\"popularity_index\";i:515;s:11:\"trend_index\";i:606;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:842;a:15:{s:2:\"id\";i:4759;s:5:\"title\";s:7:\"Team 22\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_5.png\";s:12:\"tmpl_created\";i:1520443362;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-22/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:360;s:16:\"popularity_index\";i:299;s:11:\"trend_index\";i:376;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:843;a:15:{s:2:\"id\";i:4746;s:5:\"title\";s:7:\"Team 23\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_4.png\";s:12:\"tmpl_created\";i:1520443360;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-23/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:361;s:16:\"popularity_index\";i:282;s:11:\"trend_index\";i:378;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:844;a:15:{s:2:\"id\";i:4718;s:5:\"title\";s:6:\"Team 4\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_3.png\";s:12:\"tmpl_created\";i:1520443354;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:362;s:16:\"popularity_index\";i:192;s:11:\"trend_index\";i:359;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:845;a:15:{s:2:\"id\";i:4706;s:5:\"title\";s:6:\"Team 5\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_2.png\";s:12:\"tmpl_created\";i:1520443352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:363;s:16:\"popularity_index\";i:149;s:11:\"trend_index\";i:299;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:846;a:15:{s:2:\"id\";i:6008;s:5:\"title\";s:6:\"Team 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_10.png\";s:12:\"tmpl_created\";i:1520443636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:364;s:16:\"popularity_index\";i:75;s:11:\"trend_index\";i:277;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:847;a:15:{s:2:\"id\";i:4690;s:5:\"title\";s:6:\"Team 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_1.png\";s:12:\"tmpl_created\";i:1520443348;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:365;s:16:\"popularity_index\";i:243;s:11:\"trend_index\";i:402;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:848;a:15:{s:2:\"id\";i:4921;s:5:\"title\";s:14:\"Testimonial 10\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_5.png\";s:12:\"tmpl_created\";i:1520520562;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:366;s:16:\"popularity_index\";i:219;s:11:\"trend_index\";i:198;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:849;a:15:{s:2:\"id\";i:4889;s:5:\"title\";s:14:\"Testimonial 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-2.jpg\";s:12:\"tmpl_created\";i:1520520556;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:367;s:16:\"popularity_index\";i:557;s:11:\"trend_index\";i:522;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:850;a:15:{s:2:\"id\";i:4871;s:5:\"title\";s:14:\"Testimonial 12\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_3.png\";s:12:\"tmpl_created\";i:1520520552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:368;s:16:\"popularity_index\";i:262;s:11:\"trend_index\";i:391;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:851;a:15:{s:2:\"id\";i:4854;s:5:\"title\";s:14:\"Testimonial 13\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_2.png\";s:12:\"tmpl_created\";i:1520520549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:369;s:16:\"popularity_index\";i:637;s:11:\"trend_index\";i:741;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:852;a:15:{s:2:\"id\";i:4995;s:5:\"title\";s:14:\"Testimonial 14\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_12.png\";s:12:\"tmpl_created\";i:1520520577;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:370;s:16:\"popularity_index\";i:400;s:11:\"trend_index\";i:411;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:853;a:15:{s:2:\"id\";i:4979;s:5:\"title\";s:14:\"Testimonial 15\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_10.png\";s:12:\"tmpl_created\";i:1520520573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:371;s:16:\"popularity_index\";i:568;s:11:\"trend_index\";i:544;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:854;a:15:{s:2:\"id\";i:4835;s:5:\"title\";s:14:\"Testimonial 16\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_1.png\";s:12:\"tmpl_created\";i:1520520546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:372;s:16:\"popularity_index\";i:399;s:11:\"trend_index\";i:401;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:855;a:15:{s:2:\"id\";i:4987;s:5:\"title\";s:14:\"Testimonial 17\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_12-1.png\";s:12:\"tmpl_created\";i:1520520575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:373;s:16:\"popularity_index\";i:159;s:11:\"trend_index\";i:199;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:856;a:15:{s:2:\"id\";i:4843;s:5:\"title\";s:14:\"Testimonial 18\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_2.png\";s:12:\"tmpl_created\";i:1520520548;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:374;s:16:\"popularity_index\";i:457;s:11:\"trend_index\";i:780;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:857;a:15:{s:2:\"id\";i:4863;s:5:\"title\";s:14:\"Testimonial 19\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_3.png\";s:12:\"tmpl_created\";i:1520520551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:375;s:16:\"popularity_index\";i:245;s:11:\"trend_index\";i:599;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:858;a:15:{s:2:\"id\";i:4880;s:5:\"title\";s:14:\"Testimonial 20\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-1.jpg\";s:12:\"tmpl_created\";i:1520520554;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:376;s:16:\"popularity_index\";i:446;s:11:\"trend_index\";i:653;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:859;a:15:{s:2:\"id\";i:4897;s:5:\"title\";s:14:\"Testimonial 21\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_5.png\";s:12:\"tmpl_created\";i:1520520557;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:377;s:16:\"popularity_index\";i:78;s:11:\"trend_index\";i:289;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:860;a:15:{s:2:\"id\";i:4905;s:5:\"title\";s:14:\"Testimonial 22\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_6.png\";s:12:\"tmpl_created\";i:1520520559;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-22/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:378;s:16:\"popularity_index\";i:121;s:11:\"trend_index\";i:221;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:861;a:15:{s:2:\"id\";i:4913;s:5:\"title\";s:14:\"Testimonial 23\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_7.png\";s:12:\"tmpl_created\";i:1520520561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-23/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:379;s:16:\"popularity_index\";i:247;s:11:\"trend_index\";i:566;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:862;a:15:{s:2:\"id\";i:4826;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_1.png\";s:12:\"tmpl_created\";i:1520520544;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/testimonial-24-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:380;s:16:\"popularity_index\";i:256;s:11:\"trend_index\";i:395;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:863;a:15:{s:2:\"id\";i:4929;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_8.png\";s:12:\"tmpl_created\";i:1520520564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-24/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:381;s:16:\"popularity_index\";i:49;s:11:\"trend_index\";i:206;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:864;a:15:{s:2:\"id\";i:4963;s:5:\"title\";s:14:\"Testimonial 25\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_10.png\";s:12:\"tmpl_created\";i:1520520570;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/testimonial-25-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:382;s:16:\"popularity_index\";i:417;s:11:\"trend_index\";i:546;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:865;a:15:{s:2:\"id\";i:4971;s:5:\"title\";s:14:\"Testimonial 26\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_11.png\";s:12:\"tmpl_created\";i:1520520572;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-26/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:383;s:16:\"popularity_index\";i:649;s:11:\"trend_index\";i:718;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:866;a:15:{s:2:\"id\";i:4947;s:5:\"title\";s:14:\"Testimonial 27\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_9.png\";s:12:\"tmpl_created\";i:1520520567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-27/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:384;s:16:\"popularity_index\";i:221;s:11:\"trend_index\";i:496;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:867;a:15:{s:2:\"id\";i:4955;s:5:\"title\";s:14:\"Testimonial 29\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_9.png\";s:12:\"tmpl_created\";i:1520520569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-29/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:385;s:16:\"popularity_index\";i:378;s:11:\"trend_index\";i:695;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:868;a:15:{s:2:\"id\";i:4939;s:5:\"title\";s:13:\"Testimonial 9\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_8.png\";s:12:\"tmpl_created\";i:1520520565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/testimonial-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:386;s:16:\"popularity_index\";i:103;s:11:\"trend_index\";i:341;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:869;a:15:{s:2:\"id\";i:12509;s:5:\"title\";s:18:\"Travel &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/404.png\";s:12:\"tmpl_created\";i:1575960378;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/travel-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:387;s:16:\"popularity_index\";i:747;s:11:\"trend_index\";i:712;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:870;a:15:{s:2:\"id\";i:12516;s:5:\"title\";s:27:\"Travel &#8211; Archive Blog\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Archiv_s.png\";s:12:\"tmpl_created\";i:1575960387;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/travel-archive-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:388;s:16:\"popularity_index\";i:496;s:11:\"trend_index\";i:487;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:871;a:15:{s:2:\"id\";i:12500;s:5:\"title\";s:21:\"Travel &#8211; Header\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-travel-and-tours.png\";s:12:\"tmpl_created\";i:1575960371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/travel-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"header\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:389;s:16:\"popularity_index\";i:443;s:11:\"trend_index\";i:434;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:872;a:15:{s:2:\"id\";i:12524;s:5:\"title\";s:26:\"Travel &#8211; Single Post\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Post_s.png\";s:12:\"tmpl_created\";i:1575960397;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/travel-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:390;s:16:\"popularity_index\";i:591;s:11:\"trend_index\";i:663;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:873;a:15:{s:2:\"id\";i:12531;s:5:\"title\";s:31:\"Travel &#8211; Single Post Tour\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Tour_s.png\";s:12:\"tmpl_created\";i:1575960404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/travel-single-post-tour/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:391;s:16:\"popularity_index\";i:630;s:11:\"trend_index\";i:548;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:874;a:15:{s:2:\"id\";i:12492;s:5:\"title\";s:14:\"Travel -Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Footer_s.png\";s:12:\"tmpl_created\";i:1575960358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/travel-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"footer\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:392;s:16:\"popularity_index\";i:453;s:11:\"trend_index\";i:322;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:875;a:15:{s:2:\"id\";i:15498;s:5:\"title\";s:23:\"Travel Blog &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/11/404.jpg\";s:12:\"tmpl_created\";i:1606215636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/travel-blog-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:23:\"[\"404\",\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:393;s:16:\"popularity_index\";i:749;s:11:\"trend_index\";i:759;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:876;a:15:{s:2:\"id\";i:15508;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-1-350.jpg\";s:12:\"tmpl_created\";i:1606215649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/travel-blog-archive-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:394;s:16:\"popularity_index\";i:659;s:11:\"trend_index\";i:468;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:877;a:15:{s:2:\"id\";i:15518;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-2-350-Copy.jpg\";s:12:\"tmpl_created\";i:1606215663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/travel-blog-archive-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:395;s:16:\"popularity_index\";i:688;s:11:\"trend_index\";i:431;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:878;a:15:{s:2:\"id\";i:15528;s:5:\"title\";s:26:\"Travel Blog &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Footer.jpg\";s:12:\"tmpl_created\";i:1606215673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/travel-blog-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:26:\"[\"Blog\",\"Footer\",\"Travel\"]\";s:10:\"menu_order\";i:396;s:16:\"popularity_index\";i:656;s:11:\"trend_index\";i:377;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:879;a:15:{s:2:\"id\";i:15536;s:5:\"title\";s:26:\"Travel Blog &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Header.jpg\";s:12:\"tmpl_created\";i:1606215625;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/travel-blog-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:26:\"[\"Blog\",\"Header\",\"Travel\"]\";s:10:\"menu_order\";i:397;s:16:\"popularity_index\";i:584;s:11:\"trend_index\";i:228;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:880;a:15:{s:2:\"id\";i:15545;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-1-350.jpg\";s:12:\"tmpl_created\";i:1606215684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/travel-blog-single-post-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:398;s:16:\"popularity_index\";i:669;s:11:\"trend_index\";i:482;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:881;a:15:{s:2:\"id\";i:15556;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 2\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-2-350.jpg\";s:12:\"tmpl_created\";i:1606215613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/travel-blog-single-post-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:399;s:16:\"popularity_index\";i:652;s:11:\"trend_index\";i:454;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}}}','no'),(431,'ct_theme_options','a:167:{s:8:\"last_tab\";s:0:\"\";s:7:\"favicon\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:8:\"dev_mode\";s:1:\"0\";s:17:\"show_page_loading\";s:1:\"1\";s:12:\"loading_type\";s:6:\"style5\";s:11:\"loading_img\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:20:\"mouse_move_animation\";s:1:\"1\";s:16:\"newsletter_popup\";s:1:\"1\";s:15:\"newslette_title\";s:0:\"\";s:14:\"newslette_desc\";s:0:\"\";s:20:\"newslette_close_text\";s:0:\"\";s:27:\"newslette_email_placeholder\";s:0:\"\";s:13:\"header_layout\";s:2:\"22\";s:15:\"header_bg_color\";s:0:\"\";s:22:\"header_bg_color_sticky\";s:0:\"\";s:11:\"header_full\";s:1:\"0\";s:9:\"sticky_on\";s:1:\"1\";s:11:\"search_icon\";s:1:\"0\";s:26:\"h_search_field_placeholder\";s:0:\"\";s:9:\"cart_icon\";s:1:\"0\";s:17:\"cart_icon_sidebar\";s:0:\"\";s:19:\"hidden_sidebar_icon\";s:1:\"0\";s:15:\"language_switch\";s:0:\"\";s:13:\"h_mobile_type\";s:5:\"light\";s:8:\"h_style1\";s:8:\"h-style1\";s:18:\"phone_button_label\";s:0:\"\";s:17:\"phone_button_link\";s:0:\"\";s:21:\"h_social_facebook_url\";s:1:\"#\";s:20:\"h_social_twitter_url\";s:1:\"#\";s:20:\"h_social_inkedin_url\";s:1:\"#\";s:22:\"h_social_instagram_url\";s:0:\"\";s:19:\"h_social_google_url\";s:0:\"\";s:18:\"h_social_skype_url\";s:0:\"\";s:22:\"h_social_pinterest_url\";s:1:\"#\";s:18:\"h_social_vimeo_url\";s:0:\"\";s:20:\"h_social_youtube_url\";s:0:\"\";s:17:\"h_social_yelp_url\";s:0:\"\";s:19:\"h_social_tumblr_url\";s:0:\"\";s:24:\"h_social_tripadvisor_url\";s:0:\"\";s:15:\"topbar_bg_color\";s:0:\"\";s:8:\"wellcome\";s:0:\"\";s:13:\"h_phone_label\";s:21:\"Call Us: 509-993-4655\";s:7:\"h_phone\";s:12:\"509-993-4655\";s:12:\"h_phone_link\";s:12:\"509-993-4655\";s:19:\"h_phone_link_target\";s:5:\"_self\";s:15:\"h_address_label\";s:0:\"\";s:9:\"h_address\";s:0:\"\";s:14:\"h_address_link\";s:0:\"\";s:21:\"h_address_link_target\";s:5:\"_self\";s:12:\"h_time_label\";s:38:\"Mon - Sat: 8 am - 5 pm, Sunday: CLOSED\";s:6:\"h_time\";s:0:\"\";s:11:\"h_time_link\";s:0:\"\";s:18:\"h_time_link_target\";s:5:\"_self\";s:13:\"h_email_label\";s:0:\"\";s:7:\"h_email\";s:0:\"\";s:12:\"h_email_link\";s:0:\"\";s:19:\"h_email_link_target\";s:5:\"_self\";s:10:\"logo_light\";a:5:{s:3:\"url\";s:93:\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Screen-Shot-2021-03-26-at-1.45.54-PM.png\";s:2:\"id\";s:4:\"4118\";s:6:\"height\";s:3:\"178\";s:5:\"width\";s:3:\"466\";s:9:\"thumbnail\";s:101:\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Screen-Shot-2021-03-26-at-1.45.54-PM-150x150.png\";}s:4:\"logo\";a:5:{s:3:\"url\";s:93:\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Screen-Shot-2021-03-26-at-1.45.54-PM.png\";s:2:\"id\";s:4:\"4118\";s:6:\"height\";s:3:\"178\";s:5:\"width\";s:3:\"466\";s:9:\"thumbnail\";s:101:\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Screen-Shot-2021-03-26-at-1.45.54-PM-150x150.png\";}s:11:\"logo_mobile\";a:5:{s:3:\"url\";s:93:\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Screen-Shot-2021-03-26-at-1.45.54-PM.png\";s:2:\"id\";s:4:\"4118\";s:6:\"height\";s:3:\"178\";s:5:\"width\";s:3:\"466\";s:9:\"thumbnail\";s:101:\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Screen-Shot-2021-03-26-at-1.45.54-PM-150x150.png\";}s:12:\"logo_tagline\";s:0:\"\";s:9:\"logo_maxh\";a:2:{s:6:\"height\";s:5:\"100px\";s:5:\"units\";s:2:\"px\";}s:16:\"logo_maxh_sticky\";a:2:{s:6:\"height\";s:0:\"\";s:5:\"units\";s:2:\"px\";}s:12:\"logo_maxh_sm\";a:2:{s:6:\"height\";s:0:\"\";s:5:\"units\";s:2:\"px\";}s:9:\"font_menu\";a:7:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";}s:19:\"hamburger_btn_color\";s:0:\"\";s:17:\"icon_has_children\";s:4:\"plus\";s:15:\"main_menu_color\";a:3:{s:7:\"regular\";s:0:\"\";s:5:\"hover\";s:0:\"\";s:6:\"active\";s:0:\"\";}s:7:\"menu_fs\";s:0:\"\";s:17:\"sticky_menu_color\";a:3:{s:7:\"regular\";s:0:\"\";s:5:\"hover\";s:0:\"\";s:6:\"active\";s:0:\"\";}s:18:\"sub_menu_displayed\";s:9:\"sub-hover\";s:14:\"sub_menu_color\";a:3:{s:7:\"regular\";s:0:\"\";s:5:\"hover\";s:0:\"\";s:6:\"active\";s:0:\"\";}s:16:\"sub_menu_bgcolor\";s:0:\"\";s:11:\"sub_menu_fs\";s:0:\"\";s:8:\"h_btn_on\";s:4:\"show\";s:10:\"h_btn_text\";s:13:\"Subscribe now\";s:15:\"h_btn_link_type\";s:4:\"page\";s:10:\"h_btn_link\";s:2:\"24\";s:17:\"h_btn_link_custom\";s:0:\"\";s:12:\"h_btn_target\";s:5:\"_self\";s:9:\"h_btn_on2\";s:4:\"hide\";s:11:\"h_btn_text2\";s:0:\"\";s:16:\"h_btn_link_type2\";s:4:\"page\";s:11:\"h_btn_link2\";s:0:\"\";s:18:\"h_btn_link_custom2\";s:0:\"\";s:13:\"h_btn_target2\";s:5:\"_self\";s:9:\"pagetitle\";s:4:\"show\";s:9:\"ptitle_bg\";a:7:{s:16:\"background-color\";s:0:\"\";s:17:\"background-repeat\";s:0:\"\";s:15:\"background-size\";s:0:\"\";s:21:\"background-attachment\";s:0:\"\";s:19:\"background-position\";s:0:\"\";s:16:\"background-image\";s:70:\"https://sa7717.dev34.info/wp-content/uploads/2019/11/bg-page-title.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1512\";s:6:\"height\";s:3:\"570\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:78:\"https://sa7717.dev34.info/wp-content/uploads/2019/11/bg-page-title-150x150.jpg\";}}s:14:\"ptitle_overlay\";s:4:\"show\";s:18:\"pagetitle_bg_color\";a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:0:\"\";s:4:\"rgba\";s:0:\"\";}s:16:\"page_title_color\";s:0:\"\";s:18:\"page_title_padding\";a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}s:21:\"page_title_padding_sm\";a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}s:20:\"ptitle_breadcrumb_on\";s:4:\"show\";s:16:\"breadcrumb_color\";s:0:\"\";s:16:\"content_bg_color\";a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}s:15:\"content_padding\";a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}s:24:\"search_field_placeholder\";s:0:\"\";s:19:\"archive_sidebar_pos\";s:5:\"right\";s:15:\"archive_date_on\";s:1:\"1\";s:17:\"archive_author_on\";s:1:\"1\";s:21:\"archive_categories_on\";s:1:\"0\";s:19:\"archive_comments_on\";s:1:\"1\";s:13:\"text_btn_more\";s:0:\"\";s:15:\"s_custom_header\";s:0:\"\";s:15:\"s_header_layout\";s:1:\"1\";s:18:\"s_custom_pagetitle\";s:7:\"default\";s:11:\"s_ptitle_bg\";a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}s:18:\"content_none_title\";s:0:\"\";s:17:\"content_none_desc\";s:0:\"\";s:16:\"post_sidebar_pos\";s:5:\"right\";s:12:\"post_date_on\";s:1:\"1\";s:14:\"post_author_on\";s:1:\"1\";s:18:\"post_categories_on\";s:1:\"1\";s:12:\"post_tags_on\";s:1:\"1\";s:8:\"f_crop_w\";s:3:\"900\";s:8:\"f_crop_h\";s:3:\"313\";s:18:\"post_navigation_on\";s:1:\"1\";s:20:\"post_social_share_on\";s:1:\"1\";s:20:\"post_social_facebook\";s:1:\"1\";s:19:\"post_social_twitter\";s:1:\"1\";s:21:\"post_social_pinterest\";s:1:\"1\";s:21:\"post_social_linkedin \";s:1:\"1\";s:12:\"sidebar_shop\";s:5:\"right\";s:16:\"product_per_page\";s:1:\"9\";s:20:\"footer_layout_custom\";s:2:\"20\";s:13:\"back_totop_on\";s:4:\"show\";s:12:\"fixed_footer\";s:1:\"1\";s:8:\"page_404\";s:7:\"default\";s:15:\"page_custom_404\";s:0:\"\";s:13:\"primary_color\";s:7:\"#ff1111\";s:15:\"secondary_color\";s:7:\"#0e0e0e\";s:11:\"third_color\";s:7:\"#f7ca00\";s:10:\"four_color\";s:7:\"#0099ff\";s:10:\"link_color\";a:3:{s:7:\"regular\";s:7:\"#ff0000\";s:5:\"hover\";s:7:\"#f7ca00\";s:6:\"active\";s:7:\"#f7ca00\";}s:14:\"gradient_color\";a:2:{s:4:\"from\";s:7:\"#ff0000\";s:2:\"to\";s:7:\"#3a1c1c\";}s:17:\"button_type_color\";s:8:\"gradient\";s:17:\"body_default_font\";s:11:\"Google-Font\";s:9:\"font_main\";a:10:{s:11:\"font-family\";s:7:\"Poppins\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:20:\"heading_default_font\";s:11:\"Google-Font\";s:7:\"font_h1\";a:10:{s:11:\"font-family\";s:6:\"Roboto\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:4:\"true\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:7:\"font_h2\";a:10:{s:11:\"font-family\";s:6:\"Roboto\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:4:\"true\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:7:\"font_h3\";a:10:{s:11:\"font-family\";s:6:\"Roboto\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:4:\"true\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:7:\"font_h4\";a:10:{s:11:\"font-family\";s:7:\"Poppins\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:7:\"font_h5\";a:10:{s:11:\"font-family\";s:7:\"Poppins\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:7:\"font_h6\";a:10:{s:11:\"font-family\";s:7:\"Poppins\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:13:\"custom_font_1\";a:10:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:23:\"custom_font_selectors_1\";s:0:\"\";s:10:\"gm_api_key\";s:39:\"AIzaSyC08_qdlXXCWiFNVj02d-L2BDK5qr6ZnfM\";s:16:\"site_header_code\";s:0:\"\";s:16:\"site_footer_code\";s:0:\"\";s:17:\"portfolio_display\";s:1:\"1\";s:14:\"portfolio_slug\";s:0:\"\";s:14:\"portfolio_name\";s:0:\"\";s:22:\"archive_portfolio_link\";s:0:\"\";s:15:\"service_display\";s:1:\"1\";s:12:\"service_slug\";s:0:\"\";s:12:\"service_name\";s:0:\"\";s:20:\"archive_service_link\";s:0:\"\";s:18:\"case_study_display\";s:1:\"1\";s:15:\"case_study_slug\";s:0:\"\";s:15:\"case_study_name\";s:0:\"\";s:23:\"archive_case_study_link\";s:0:\"\";s:15:\"courses_display\";s:0:\"\";s:12:\"courses_slug\";s:0:\"\";s:12:\"courses_name\";s:0:\"\";s:8:\"site_css\";s:0:\"\";}','yes'),(432,'ct_theme_options-transients','a:4:{s:14:\"changed_values\";a:3:{s:7:\"font_h1\";a:10:{s:11:\"font-family\";s:7:\"Poppins\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:7:\"font_h2\";a:10:{s:11:\"font-family\";s:7:\"Poppins\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:7:\"font_h3\";a:10:{s:11:\"font-family\";s:7:\"Poppins\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:5:\"color\";s:0:\"\";}}s:9:\"last_save\";i:1618508960;s:13:\"last_compiler\";i:1618508960;s:11:\"last_import\";i:1618508960;}','yes'),(433,'booked_wc_payment_options','a:4:{s:19:\"email_confirmations\";s:14:\"after_complete\";s:17:\"enable_thumbnails\";s:6:\"enable\";s:19:\"enable_auto_cleanup\";s:7:\"disable\";s:12:\"cleanup_mode\";s:10:\"twicedaily\";}','yes'),(437,'elementor_remote_info_feed_data','a:5:{i:0;a:5:{s:5:\"title\";s:55:\"What Is Material Design? Definition, Uses, and Examples\";s:7:\"excerpt\";s:147:\"Material Design is the standard for designing and creating websites and apps. Discover why and learn how to use it to make a user-friendly website.\";s:7:\"created\";i:1612263675;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:123:\"https://elementor.com/blog/what-is-material-design/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:1;a:5:{s:5:\"title\";s:53:\"Elementor SEO: How To Optimize Your Elementor Website\";s:7:\"excerpt\";s:154:\"SEO is crucial to the success of any website, but to many users, it still remains a mystery. Discover what SEO is and how to use it to optimize your site.\";s:7:\"created\";i:1611838485;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:113:\"https://elementor.com/blog/elementor-seo/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:2;a:5:{s:5:\"title\";s:97:\"Introducing Elementor 3.1: Experiments, Performance Enhancements, And a New Landing Page Workflow\";s:7:\"excerpt\";s:162:\"The new Elementor version 3.1 features performance improvements, a new Landing Page area and workflow to manage your marketing pages, and exploratory experiments.\";s:7:\"created\";i:1611665700;s:5:\"badge\";s:11:\"New Feature\";s:3:\"url\";s:125:\"https://elementor.com/blog/introducing-elementor-3-1/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:3;a:5:{s:5:\"title\";s:33:\"How To Redirect URLs in WordPress\";s:7:\"excerpt\";s:152:\"Redirecting visitors from one page to another is an important part of website maintenance. Explore all the reasons for redirects and how to create them.\";s:7:\"created\";i:1611143960;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:122:\"https://elementor.com/blog/redirect-url-wordpress/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:4;a:5:{s:5:\"title\";s:33:\"How to Create the Perfect Favicon\";s:7:\"excerpt\";s:140:\"Favicons are an integral part of building up your brand and a recognizable website. Understand what they are, and how to use them correctly.\";s:7:\"created\";i:1610975844;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:122:\"https://elementor.com/blog/favicon-complete-guide/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}}','no'),(1246,'woocommerce_tracker_last_send','1625692547','yes'),(2118,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:19:\"alex@inspirable.com\";s:7:\"version\";s:5:\"5.7.2\";s:9:\"timestamp\";i:1620948213;}','no'),(440,'mc4wp_version','4.8.3','yes'),(517,'_transient_woocommerce_reports-transient-version','1616787523','yes'),(447,'yith-wcqv-background-modal','#ffffff','yes'),(448,'yith-wcqv-close-color','#cdcdcd','yes'),(449,'yith-wcqv-close-color-hover','#ff0000','yes'),(450,'yit_plugin_fw_panel_wc_default_options_set','a:2:{s:15:\"yith_wcqv_panel\";b:1;s:15:\"yith_wcwl_panel\";b:1;}','yes'),(451,'yith_wcwl_ajax_enable','no','yes'),(452,'yith_wfbt_enable_integration','yes','yes'),(453,'yith_wcwl_after_add_to_wishlist_behaviour','view','yes'),(454,'yith_wcwl_show_on_loop','no','yes'),(455,'yith_wcwl_loop_position','after_add_to_cart','yes'),(456,'yith_wcwl_button_position','after_add_to_cart','yes'),(457,'yith_wcwl_add_to_wishlist_text','Add to wishlist','yes'),(458,'yith_wcwl_product_added_text','Product added!','yes'),(459,'yith_wcwl_browse_wishlist_text','Browse wishlist','yes'),(460,'yith_wcwl_already_in_wishlist_text','The product is already in your wishlist!','yes'),(461,'yith_wcwl_add_to_wishlist_style','link','yes'),(462,'yith_wcwl_rounded_corners_radius','16','yes'),(463,'yith_wcwl_add_to_wishlist_icon','fa-heart-o','yes'),(464,'yith_wcwl_add_to_wishlist_custom_icon','','yes'),(465,'yith_wcwl_added_to_wishlist_icon','fa-heart','yes'),(466,'yith_wcwl_added_to_wishlist_custom_icon','','yes'),(467,'yith_wcwl_custom_css','','yes'),(468,'yith_wcwl_variation_show','','yes'),(469,'yith_wcwl_price_show','yes','yes'),(470,'yith_wcwl_stock_show','yes','yes'),(471,'yith_wcwl_show_dateadded','','yes'),(472,'yith_wcwl_add_to_cart_show','yes','yes'),(473,'yith_wcwl_show_remove','yes','yes'),(474,'yith_wcwl_repeat_remove_button','','yes'),(475,'yith_wcwl_redirect_cart','no','yes'),(476,'yith_wcwl_remove_after_add_to_cart','yes','yes'),(477,'yith_wcwl_enable_share','yes','yes'),(478,'yith_wcwl_share_fb','yes','yes'),(479,'yith_wcwl_share_twitter','yes','yes'),(480,'yith_wcwl_share_pinterest','yes','yes'),(481,'yith_wcwl_share_email','yes','yes'),(482,'yith_wcwl_share_whatsapp','yes','yes'),(483,'yith_wcwl_share_url','no','yes'),(484,'yith_wcwl_socials_title','My wishlist on System Amusement','yes'),(485,'yith_wcwl_socials_text','','yes'),(486,'yith_wcwl_socials_image_url','','yes'),(487,'yith_wcwl_wishlist_title','My wishlist','yes'),(488,'yith_wcwl_add_to_cart_text','Add to cart','yes'),(489,'yith_wcwl_add_to_cart_style','link','yes'),(490,'yith_wcwl_add_to_cart_rounded_corners_radius','16','yes'),(491,'yith_wcwl_add_to_cart_icon','fa-shopping-cart','yes'),(492,'yith_wcwl_add_to_cart_custom_icon','','yes'),(493,'yith_wcwl_color_headers_background','#F4F4F4','yes'),(494,'yith_wcwl_fb_button_icon','fa-facebook','yes'),(495,'yith_wcwl_fb_button_custom_icon','','yes'),(496,'yith_wcwl_tw_button_icon','fa-twitter','yes'),(497,'yith_wcwl_tw_button_custom_icon','','yes'),(498,'yith_wcwl_pr_button_icon','fa-pinterest','yes'),(499,'yith_wcwl_pr_button_custom_icon','','yes'),(500,'yith_wcwl_em_button_icon','fa-envelope-o','yes'),(501,'yith_wcwl_em_button_custom_icon','','yes'),(502,'yith_wcwl_wa_button_icon','fa-whatsapp','yes'),(503,'yith_wcwl_wa_button_custom_icon','','yes'),(528,'woocommerce_onboarding_profile','a:2:{s:7:\"skipped\";b:1;s:9:\"completed\";b:1;}','yes'),(505,'sbi_notifications','a:4:{s:6:\"update\";i:1621619412;s:4:\"feed\";a:0:{}s:6:\"events\";a:0:{}s:9:\"dismissed\";a:0:{}}','yes'),(506,'sbi_newuser_notifications','a:4:{s:6:\"update\";i:1616787522;s:4:\"feed\";a:2:{s:6:\"review\";a:6:{s:5:\"title\";s:22:\"Could you help us out?\";s:7:\"content\";s:273:\"It\'s great to see that you\'ve been using the <strong><span>{plugin}</span></strong> plugin for a while now. Hopefully you\'re happy with it!&nbsp; If so, would you consider leaving a positive review? It really helps to support the plugin and helps others to discover it too!\";s:2:\"id\";s:6:\"review\";s:5:\"image\";s:12:\"sbi-icon.png\";s:4:\"btns\";a:4:{s:7:\"primary\";a:4:{s:3:\"url\";s:12:\"{review-url}\";s:4:\"attr\";a:1:{i:0;s:11:\"targetblank\";}s:5:\"class\";s:31:\"sbi_notice_dismiss sbi_main_cta\";s:4:\"text\";s:18:\"Sure, I\'d love to!\";}s:7:\"dismiss\";a:3:{s:3:\"url\";a:1:{s:28:\"sbi_ignore_rating_notice_nag\";s:1:\"1\";}s:5:\"class\";s:18:\"sbi_notice_dismiss\";s:4:\"text\";s:9:\"No thanks\";}s:8:\"complete\";a:3:{s:3:\"url\";a:1:{s:28:\"sbi_ignore_rating_notice_nag\";s:1:\"1\";}s:5:\"class\";s:18:\"sbi_notice_dismiss\";s:4:\"text\";s:27:\"I\'ve already given a review\";}s:5:\"later\";a:3:{s:3:\"url\";a:1:{s:28:\"sbi_ignore_rating_notice_nag\";s:5:\"later\";}s:5:\"class\";s:18:\"sbi_notice_dismiss\";s:4:\"text\";s:12:\"Ask Me Later\";}}s:4:\"wait\";s:2:\"14\";}s:8:\"discount\";a:8:{s:5:\"title\";s:28:\"Attention {platform} Lovers!\";s:7:\"content\";s:221:\"<strong><span>Exclusive offer!</span></strong> We don\'t run promotions very often, but for a limited time we\'re offering <strong><span>{amount} off</span></strong> our Pro version to all users of our free {plugin} plugin.\";s:2:\"id\";s:8:\"discount\";s:6:\"amount\";s:3:\"60%\";s:5:\"image\";s:12:\"sbi-icon.png\";s:13:\"image_overlay\";s:7:\"60% off\";s:4:\"btns\";a:2:{s:7:\"primary\";a:4:{s:3:\"url\";s:127:\"https://smashballoon.com/{slug}/?utm_campaign={campaign}&utm_source=notices&utm_medium=newuser&discount={lowerplatform}thankyou\";s:5:\"class\";s:32:\"sbi_notice_dismiss sbi_offer_btn\";s:4:\"text\";s:14:\"Get this offer\";s:4:\"attr\";a:1:{i:0;s:11:\"targetblank\";}}s:7:\"dismiss\";a:3:{s:3:\"url\";a:1:{s:31:\"sbi_ignore_new_user_sale_notice\";s:6:\"always\";}s:5:\"class\";s:18:\"sbi_notice_dismiss\";s:4:\"text\";s:18:\"I\'m not interested\";}}s:4:\"wait\";s:2:\"30\";}}s:6:\"events\";a:0:{}s:9:\"dismissed\";a:0:{}}','yes'),(509,'has_transient','1','yes'),(510,'track_transient','1','yes'),(511,'yith_plugin_fw_promo_2019_bis','1','yes'),(512,'_elementor_installed_time','1616787522','yes'),(2433,'elementor_1_elementor_updater_batch_1fac963c963a05f228e3a9f99eb5','a:1:{i:0;a:1:{s:8:\"callback\";a:2:{i:0;s:31:\"Elementor\\Core\\Upgrade\\Upgrades\";i:1;s:42:\"_v_3_2_0_migrate_breakpoints_to_new_system\";}}}','no'),(2436,'_elementor_global_css','a:6:{s:4:\"time\";i:1619640200;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;b:0;}','yes');
INSERT INTO `wp9s_options` VALUES (237,'rs-templates','a:3:{s:4:\"hash\";s:32:\"48ca121d3c7d930ea1304b5d75c00ebe\";s:6:\"slider\";a:510:{i:0;a:22:{s:2:\"id\";s:1:\"1\";s:5:\"title\";s:16:\"Classic Carousel\";s:5:\"alias\";s:16:\"classic-carousel\";s:3:\"zip\";s:20:\"classic-carousel.zip\";s:3:\"uid\";s:32:\"146a01dd380c0cdee85c4456ee68cd84\";s:3:\"img\";s:27:\"classic-carousel/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/carousel-slider-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:141:\"<span class=\"ttm_content\">Our classic, full-width carousel example. Drag, swipe or click to navigate!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:284:\"<span class=\"ttm_content\">This is a \"Default\" content carousel. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-22 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:1;a:22:{s:2:\"id\";s:1:\"2\";s:5:\"title\";s:14:\"Classic Slider\";s:5:\"alias\";s:13:\"classicslider\";s:3:\"zip\";s:17:\"classicslider.zip\";s:3:\"uid\";s:32:\"a0d6a9248c9066b404ba0f1cdadc5cf2\";s:3:\"img\";s:24:\"classicslider/slider.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-slideshow-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:136:\" <span class=\"ttm_content\">A classic slideshow example with timer, bullets and arrow navigation.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:2;a:22:{s:2:\"id\";s:1:\"3\";s:5:\"title\";s:12:\"Content Tabs\";s:5:\"alias\";s:11:\"contenttabs\";s:3:\"zip\";s:15:\"contenttabs.zip\";s:3:\"uid\";s:32:\"e02e91604b690123a3d07a65582c4fd0\";s:3:\"img\";s:22:\"contenttabs/slider.jpg\";s:7:\"preview\";s:63:\"http://revolution.themepunch.com/wordpress-content-tabs-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:170:\" <span class=\"ttm_content\">An auto-size slider with a cool split-text animation effect. Navigate with vertical bullets and thumbs.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:3;a:22:{s:2:\"id\";s:1:\"4\";s:5:\"title\";s:13:\"Facebook Feed\";s:5:\"alias\";s:13:\"facebook-feed\";s:3:\"zip\";s:17:\"facebook-feed.zip\";s:3:\"uid\";s:32:\"5506431d5b1babcb25dcf52c508d42e3\";s:3:\"img\";s:24:\"facebook-feed/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-facebook-feed/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:174:\"<span class=\"ttm_content\"> This slider is automatically populated by a Facebook stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"Facebook Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:4;a:22:{s:2:\"id\";s:1:\"5\";s:5:\"title\";s:7:\"Fashion\";s:5:\"alias\";s:7:\"fashion\";s:3:\"zip\";s:11:\"fashion.zip\";s:3:\"uid\";s:32:\"4f4b914d6db35e19101ff003c4e7ea3a\";s:3:\"img\";s:18:\"fashion/slider.jpg\";s:7:\"preview\";s:65:\"http://revolution.themepunch.com/wordpress-one-page-slider-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:183:\"  <span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or bullets.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:5;a:22:{s:2:\"id\";s:1:\"6\";s:5:\"title\";s:14:\"Flickr Gallery\";s:5:\"alias\";s:14:\"flickr-gallery\";s:3:\"zip\";s:18:\"flickr-gallery.zip\";s:3:\"uid\";s:32:\"ad85cfac7acfa678e6a1b8febfee51ed\";s:3:\"img\";s:25:\"flickr-gallery/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-flickr-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"640\";s:11:\"description\";s:173:\" <span class=\"ttm_content\"> This slider is automatically populated by a Flickr stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:413:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"Flickr Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:6;a:22:{s:2:\"id\";s:1:\"7\";s:5:\"title\";s:3:\"Gym\";s:5:\"alias\";s:3:\"gym\";s:3:\"zip\";s:7:\"gym.zip\";s:3:\"uid\";s:32:\"e4d81f13f96fb9bc905f4ad89615032b\";s:3:\"img\";s:14:\"gym/slider.jpg\";s:7:\"preview\";s:59:\"http://revolution.themepunch.com/one-page-wordpress-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:189:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the slider menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:7;a:22:{s:2:\"id\";s:1:\"8\";s:5:\"title\";s:18:\"Highlight Carousel\";s:5:\"alias\";s:18:\"highlight-carousel\";s:3:\"zip\";s:22:\"highlight-carousel.zip\";s:3:\"uid\";s:32:\"ada52163f723a942f782351fa0396b3d\";s:3:\"img\";s:29:\"highlight-carousel/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-swipe-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"720\";s:11:\"description\";s:138:\"  <span class=\"ttm_content\">A swipe-controlled carousel with an additional tab-based navigation.</span>\r\n<span class=\"ttm_space\"></span>\r\n\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:8;a:22:{s:2:\"id\";s:1:\"9\";s:5:\"title\";s:18:\"Highlight Showcase\";s:5:\"alias\";s:18:\"highlight-showcase\";s:3:\"zip\";s:22:\"highlight-showcase.zip\";s:3:\"uid\";s:32:\"2bfe0bd410fb48fec9d942eab1e21530\";s:3:\"img\";s:29:\"highlight-showcase/slider.jpg\";s:7:\"preview\";s:62:\"http://revolution.themepunch.com/wordpress-parallax-slideshow/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"720\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">A tab-based navigation, a slideshow timer and cool animations make this slider interesting!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:9;a:22:{s:2:\"id\";s:2:\"10\";s:5:\"title\";s:10:\"Image Hero\";s:5:\"alias\";s:10:\"image-hero\";s:3:\"zip\";s:13:\"imagehero.zip\";s:3:\"uid\";s:32:\"7db18781d44f2adc28c962440894aac1\";s:3:\"img\";s:20:\"imagehero/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/wordpress-hero-image/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:121:\"<span class=\"ttm_content\">A commonly used full-width image hero block with texts.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:10;a:22:{s:2:\"id\";s:2:\"11\";s:5:\"title\";s:17:\"Instagram Gallery\";s:5:\"alias\";s:13:\"insta-gallery\";s:3:\"zip\";s:17:\"insta-gallery.zip\";s:3:\"uid\";s:32:\"711732b0d42ec2b57818a2b9b1d86cba\";s:3:\"img\";s:24:\"insta-gallery/slider.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-instagram-gallery/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"640\";s:11:\"description\";s:174:\"<span class=\"ttm_content\">This slider is automatically populated by a Instagram stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:416:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"Instagram Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:11;a:22:{s:2:\"id\";s:2:\"12\";s:5:\"title\";s:21:\"Levano Restaurant Bar\";s:5:\"alias\";s:19:\"levanorestaurantbar\";s:3:\"zip\";s:23:\"levanorestaurantbar.zip\";s:3:\"uid\";s:32:\"4178f837db67d1b2eb6cb5840bbd0b42\";s:3:\"img\";s:30:\"levanorestaurantbar/slider.jpg\";s:7:\"preview\";s:63:\"http://revolution.themepunch.com/wordpress-front-page-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:181:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or bullets.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:12;a:22:{s:2:\"id\";s:2:\"13\";s:5:\"title\";s:19:\"Main Feature Slider\";s:5:\"alias\";s:11:\"mainfeature\";s:3:\"zip\";s:15:\"mainfeature.zip\";s:3:\"uid\";s:32:\"1e002a3230ab00095bedc6f60393ee7f\";s:3:\"img\";s:22:\"mainfeature/slider.jpg\";s:7:\"preview\";s:33:\"http://revolution.themepunch.com/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"750\";s:11:\"description\";s:127:\" <span class=\"ttm_content\">A slightly stripped down version of the main preview slider.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:13;a:22:{s:2:\"id\";s:2:\"14\";s:5:\"title\";s:17:\"Media Gallery Two\";s:5:\"alias\";s:17:\"media-gallery-two\";s:3:\"zip\";s:21:\"media-gallery-two.zip\";s:3:\"uid\";s:32:\"d002f1b1b55805f9322c264c5504ba5a\";s:3:\"img\";s:28:\"media-gallery-two/slider.jpg\";s:7:\"preview\";s:64:\"http://revolution.themepunch.com/wordpress-media-gallery-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:6:\"6.2.22\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"692\";s:11:\"description\";s:127:\"<span class=\"ttm_content\">A media gallery example with Vimeo, HTML5 and Youtube videos.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change media and titles.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:14;a:22:{s:2:\"id\";s:2:\"15\";s:5:\"title\";s:23:\"Media Carousel Autoplay\";s:5:\"alias\";s:23:\"media-carousel-autoplay\";s:3:\"zip\";s:27:\"media-carousel-autoplay.zip\";s:3:\"uid\";s:32:\"393d7875b1cc9d933378b35e4f645d76\";s:3:\"img\";s:34:\"media-carousel-autoplay/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-media-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"720\";s:6:\"height\";s:3:\"405\";s:11:\"description\";s:153:\"<span class=\"ttm_content\">A media carousel with \"autoplay\" activated. Swipe or click tabs to navigate the slider.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:289:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change media and caption texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:15;a:22:{s:2:\"id\";s:2:\"16\";s:5:\"title\";s:21:\"News Background Video\";s:5:\"alias\";s:21:\"news-background-video\";s:3:\"zip\";s:17:\"news-bg-video.zip\";s:3:\"uid\";s:32:\"a0efe44ac3af0f958b3f84c816a08272\";s:3:\"img\";s:24:\"news-bg-video/slider.jpg\";s:7:\"preview\";s:58:\"http://revolution.themepunch.com/wordpress-content-blocks/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A hero block with HTML5 background video that plays when entering the screen.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background video and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:16;a:22:{s:2:\"id\";s:2:\"17\";s:5:\"title\";s:12:\"News Gallery\";s:5:\"alias\";s:12:\"news-gallery\";s:3:\"zip\";s:16:\"news-gallery.zip\";s:3:\"uid\";s:32:\"3a069c3b286dbb9ee435563f747e3300\";s:3:\"img\";s:23:\"news-gallery/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-news-rotator/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:131:\"<span class=\"ttm_content\">A news gallery slideshow with tab navigation. Great for any blog!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:17;a:22:{s:2:\"id\";s:2:\"18\";s:5:\"title\";s:23:\"News Gallery Post Based\";s:5:\"alias\";s:23:\"news-gallery-post-based\";s:3:\"zip\";s:27:\"news-gallery-post-based.zip\";s:3:\"uid\";s:32:\"32fe05b1039c29ab9420bfd15aec5488\";s:3:\"img\";s:34:\"news-gallery-post-based/slider.jpg\";s:7:\"preview\";s:55:\"http://revolution.themepunch.com/wordpress-post-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:125:\"<span class=\"ttm_content\"> This slider is automatically populated by WordPress posts.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:423:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"Post-Based Slider\"</a>. Make sure to select the post type you want to display in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:18;a:22:{s:2:\"id\";s:2:\"19\";s:5:\"title\";s:9:\"News Hero\";s:5:\"alias\";s:9:\"news-hero\";s:3:\"zip\";s:13:\"news-hero.zip\";s:3:\"uid\";s:32:\"96a0385538a17c8c81ed8175740f70ea\";s:3:\"img\";s:20:\"news-hero/slider.jpg\";s:7:\"preview\";s:58:\"http://revolution.themepunch.com/wordpress-content-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:107:\"<span class=\"ttm_content\">A image hero block with ken burns effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:19;a:22:{s:2:\"id\";s:2:\"20\";s:5:\"title\";s:10:\"News Video\";s:5:\"alias\";s:10:\"news-video\";s:3:\"zip\";s:14:\"news-video.zip\";s:3:\"uid\";s:32:\"f901e9e16e0363248156c2209eb584e9\";s:3:\"img\";s:21:\"news-video/slider.jpg\";s:7:\"preview\";s:58:\"http://revolution.themepunch.com/wordpress-content-blocks/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:128:\"<span class=\"ttm_content\">A Vimeo background video hero block with play / pause buttons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:289:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the video and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:20;a:22:{s:2:\"id\";s:2:\"21\";s:5:\"title\";s:15:\"Newsletter Hero\";s:5:\"alias\";s:15:\"newsletter-hero\";s:3:\"zip\";s:19:\"newsletter-hero.zip\";s:3:\"uid\";s:32:\"6290a9864d8c4c6311784586ed1cc5fe\";s:3:\"img\";s:26:\"newsletter-hero/slider.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-newsletter-signup/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:137:\"<span class=\"ttm_content\">This hero block uses a custom styled Mailchimp newsletter signup field.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:435:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image, texts, and <a href=\"https://www.themepunch.com/faq/how-to-setup-mailchimp-for-the-newsletter-hero-template/\" target=\"_blank\">Mailchimp code</a>.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:21;a:22:{s:2:\"id\";s:2:\"22\";s:5:\"title\";s:11:\"Not Generic\";s:5:\"alias\";s:10:\"notgeneric\";s:3:\"zip\";s:14:\"notgeneric.zip\";s:3:\"uid\";s:32:\"9d87ba95e02210a9f82387add2ceadf9\";s:3:\"img\";s:21:\"notgeneric/slider.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-fullscreen-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">A full-screen slider with a layer based navigation and sleek content elements.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:22;a:22:{s:2:\"id\";s:2:\"23\";s:5:\"title\";s:11:\"Photography\";s:5:\"alias\";s:11:\"photography\";s:3:\"zip\";s:15:\"photography.zip\";s:3:\"uid\";s:32:\"1b2072547afb75e49f33b016751ed360\";s:3:\"img\";s:22:\"photography/slider.jpg\";s:7:\"preview\";s:62:\"http://revolution.themepunch.com/wordpress-photography-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:23;a:22:{s:2:\"id\";s:2:\"24\";s:5:\"title\";s:20:\"Photography Carousel\";s:5:\"alias\";s:20:\"photography-carousel\";s:3:\"zip\";s:24:\"photography-carousel.zip\";s:3:\"uid\";s:32:\"9a84b859ba23dc49ba8784e3a86545fa\";s:3:\"img\";s:31:\"photography-carousel/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-photo-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">A front-page carousel that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:24;a:22:{s:2:\"id\";s:2:\"25\";s:5:\"title\";s:16:\"Search Form Hero\";s:5:\"alias\";s:16:\"search-form-hero\";s:3:\"zip\";s:20:\"search-form-hero.zip\";s:3:\"uid\";s:32:\"e09eb1bd0f22b3a2b02a1aa251dd1f3e\";s:3:\"img\";s:27:\"search-form-hero/slider.jpg\";s:7:\"preview\";s:60:\"http://revolution.themepunch.com/wordpress-search-form-hero/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">This hero block uses a custom styled input field to show search results on a WordPress site.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:320:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image, texts, and search field code.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:25;a:22:{s:2:\"id\";s:2:\"26\";s:5:\"title\";s:17:\"Showcase Carousel\";s:5:\"alias\";s:16:\"showcasecarousel\";s:3:\"zip\";s:20:\"showcasecarousel.zip\";s:3:\"uid\";s:32:\"c5ca218398331bd2c064efc2f62eae56\";s:3:\"img\";s:27:\"showcasecarousel/slider.jpg\";s:7:\"preview\";s:62:\"http://revolution.themepunch.com/wordpress-cover-flow-gallery/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:129:\"<span class=\"ttm_content\">A fancy carousel that rotates, fades and scales slider items.</span>\r\n<span class=\"ttm_space\"></span>\r\n\";s:11:\"setup_notes\";s:284:\"<span class=\"ttm_content\">This is a \"Default\" content carousel. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:26;a:22:{s:2:\"id\";s:2:\"27\";s:5:\"title\";s:11:\"Sports Hero\";s:5:\"alias\";s:11:\"sports-hero\";s:3:\"zip\";s:14:\"sportshero.zip\";s:3:\"uid\";s:32:\"8de7a145f32a362d618d2595ffa2f724\";s:3:\"img\";s:21:\"sportshero/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/wordpress-image-hero/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"720\";s:11:\"description\";s:113:\"<span class=\"ttm_content\">An sports themed image hero block with buttons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:27;a:22:{s:2:\"id\";s:2:\"28\";s:5:\"title\";s:12:\"Twitter Feed\";s:5:\"alias\";s:12:\"twitter-feed\";s:3:\"zip\";s:16:\"twitter-feed.zip\";s:3:\"uid\";s:32:\"efbfc2af5da5258e7b7bed8598e483cc\";s:3:\"img\";s:23:\"twitter-feed/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-twitter-feed/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"640\";s:11:\"description\";s:173:\"<span class=\"ttm_content\"> This slider is automatically populated by a Twitter stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:414:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"Twitter Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:28;a:22:{s:2:\"id\";s:2:\"29\";s:5:\"title\";s:13:\"Vimeo Gallery\";s:5:\"alias\";s:13:\"vimeo-gallery\";s:3:\"zip\";s:17:\"vimeo-gallery.zip\";s:3:\"uid\";s:32:\"fa824ce1ff3942ec268fc9eda60df539\";s:3:\"img\";s:24:\"vimeo-gallery/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-vimeo-gallery/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"692\";s:11:\"description\";s:170:\"<span class=\"ttm_content\">This slider is automatically populated by a Vimeo stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:412:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"Vimeo Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:29;a:22:{s:2:\"id\";s:2:\"30\";s:5:\"title\";s:10:\"Vimeo Hero\";s:5:\"alias\";s:9:\"vimeohero\";s:3:\"zip\";s:13:\"vimeohero.zip\";s:3:\"uid\";s:32:\"c575575f96173d88589cddcb06120b77\";s:3:\"img\";s:20:\"vimeohero/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/wordpress-hero-vimeo/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:116:\"<span class=\"ttm_content\">A commonly used Vimeo video background hero block.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:464:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background video and texts.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:30;a:22:{s:2:\"id\";s:2:\"31\";s:5:\"title\";s:16:\"Web Product Dark\";s:5:\"alias\";s:16:\"web-product-dark\";s:3:\"zip\";s:20:\"web-product-dark.zip\";s:3:\"uid\";s:32:\"39b872cf0608e63c3a503e58374dc30a\";s:3:\"img\";s:27:\"web-product-dark/slider.jpg\";s:7:\"preview\";s:60:\"http://revolution.themepunch.com/wordpress-frontpage-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:31;a:22:{s:2:\"id\";s:2:\"32\";s:5:\"title\";s:21:\"Web Product Dark Hero\";s:5:\"alias\";s:21:\"web-product-dark-hero\";s:3:\"zip\";s:25:\"web-product-dark-hero.zip\";s:3:\"uid\";s:32:\"b6784e8925221f36677217979d26e6f0\";s:3:\"img\";s:32:\"web-product-dark-hero/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-header-image/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:162:\"<span class=\"ttm_content\">A modern hero block with three common devices. The screens of each device can be changed easily!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:32;a:22:{s:2:\"id\";s:2:\"33\";s:5:\"title\";s:22:\"Web Product Light Hero\";s:5:\"alias\";s:22:\"web-product-light-hero\";s:3:\"zip\";s:26:\"web-product-light-hero.zip\";s:3:\"uid\";s:32:\"428e65d6aaa6ef775429989d50516492\";s:3:\"img\";s:33:\"web-product-light-hero/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/hero-image-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:162:\"<span class=\"ttm_content\">A modern hero block with three common devices. The screens of each device can be changed easily!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:289:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:33;a:22:{s:2:\"id\";s:2:\"34\";s:5:\"title\";s:17:\"Web Product Light\";s:5:\"alias\";s:15:\"webproductlight\";s:3:\"zip\";s:19:\"webproductlight.zip\";s:3:\"uid\";s:32:\"fa23dab5bf1139c6393828647a9de4e0\";s:3:\"img\";s:26:\"webproductlight/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/wordpress-cover-page/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:34;a:22:{s:2:\"id\";s:2:\"35\";s:5:\"title\";s:15:\"Youtube Gallery\";s:5:\"alias\";s:15:\"youtube-gallery\";s:3:\"zip\";s:19:\"youtube-gallery.zip\";s:3:\"uid\";s:32:\"ee9e4928ac74f5f0c0b697ce708f5aa7\";s:3:\"img\";s:26:\"youtube-gallery/slider.jpg\";s:7:\"preview\";s:59:\"http://revolution.themepunch.com/wordpress-youtube-gallery/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:173:\"<span class=\"ttm_content\"> This slider is automatically populated by a YouTube stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:414:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"YouTube Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:35;a:23:{s:2:\"id\";s:2:\"36\";s:5:\"title\";s:12:\"Youtube Hero\";s:5:\"alias\";s:11:\"youtubehero\";s:3:\"zip\";s:15:\"youtubehero.zip\";s:3:\"uid\";s:32:\"e0b2c12a45841bdf21cb96305f2c85bf\";s:3:\"img\";s:22:\"youtubehero/slider.jpg\";s:7:\"preview\";s:58:\"http://revolution.themepunch.com/wordpress-youtube-header/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:104:\"<span class=\"ttm_content\">A YouTube video background hero block.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:633:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background video and texts.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\nLearn how to <a href=\"https://www.themepunch.com/faq/enable-sound-for-the-youtube-hero-template/\" target=\"_blank\">enable sound for the background video</a><br /><br />\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:36;a:22:{s:2:\"id\";s:2:\"37\";s:5:\"title\";s:13:\"Scroll Effect\";s:5:\"alias\";s:13:\"scroll-effect\";s:3:\"zip\";s:17:\"scroll-effect.zip\";s:3:\"uid\";s:32:\"417f59e9db87aa7e47c8509eb88d4af6\";s:3:\"img\";s:23:\"scrolleffect/slide1.jpg\";s:7:\"preview\";s:60:\"http://revolution.themepunch.com/big-bold-fullscreen-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:134:\"<span class=\"ttm_content\">A full-screen slider with a unique scroll effect and big, bold text.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:485:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>For further configuration options please view the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:37;a:22:{s:2:\"id\";s:2:\"38\";s:5:\"title\";s:12:\"Content Zoom\";s:5:\"alias\";s:12:\"content-zoom\";s:3:\"zip\";s:16:\"content-zoom.zip\";s:3:\"uid\";s:32:\"42ef8cdb70d42ec6ff6fa3b69a027b5f\";s:3:\"img\";s:22:\"contentzoom/slide1.jpg\";s:7:\"preview\";s:53:\"http://revolution.themepunch.com/content-zoom-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:243:\"<span class=\"ttm_content\">A very unique full-width slider that uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:371:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:38;a:22:{s:2:\"id\";s:2:\"39\";s:5:\"title\";s:13:\"Food Carousel\";s:5:\"alias\";s:13:\"food-carousel\";s:3:\"zip\";s:17:\"food-carousel.zip\";s:3:\"uid\";s:32:\"a7bf54527b6658a0a308c70c729779fe\";s:3:\"img\";s:29:\"foodcarousel/slider_cover.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/food-carousel-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:267:\"<span class=\"ttm_content\">A fancy carousel with detail content on each slide. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> are used to show and hide layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:371:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:39;a:22:{s:2:\"id\";s:2:\"40\";s:5:\"title\";s:14:\"Rotating Words\";s:5:\"alias\";s:14:\"rotating-words\";s:3:\"zip\";s:18:\"rotating-words.zip\";s:3:\"uid\";s:32:\"70190463d9376f278c8197b7b2ef6c1b\";s:3:\"img\";s:24:\"rotatingwords/slide1.jpg\";s:7:\"preview\";s:53:\"http://revolution.themepunch.com/rotating-words-hero/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:134:\"<span class=\"ttm_content\">A full-screen hero block with unique animated text and blur effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:495:\"<span class=\"ttm_content\">This is a \"Default\" hero slider. Edit the slide to change the background media and texts.<br/>For further configuration options please view the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:40;a:22:{s:2:\"id\";s:2:\"41\";s:5:\"title\";s:22:\"Travel Static Captions\";s:5:\"alias\";s:22:\"travel-static-captions\";s:3:\"zip\";s:26:\"travel-static-captions.zip\";s:3:\"uid\";s:32:\"bbe7d61c7c741ebc7aa1ce1082b0cb71\";s:3:\"img\";s:33:\"travel-static-captions/slide1.jpg\";s:7:\"preview\";s:50:\"http://revolution.themepunch.com/travel-slideshow/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:148:\"<span class=\"ttm_content\">A slideshow example with static captions layers above a rotating image background.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:41;a:22:{s:2:\"id\";s:2:\"42\";s:5:\"title\";s:7:\"Concept\";s:5:\"alias\";s:7:\"concept\";s:3:\"zip\";s:11:\"concept.zip\";s:3:\"uid\";s:32:\"47cb06083e87503762f6746725117a3c\";s:3:\"img\";s:18:\"concept/slide1.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/fullscreen-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">A full-screen slider that uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:371:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:42;a:22:{s:2:\"id\";s:2:\"43\";s:5:\"title\";s:15:\"True Fullscreen\";s:5:\"alias\";s:17:\"fullscreen-button\";s:3:\"zip\";s:21:\"fullscreen-button.zip\";s:3:\"uid\";s:32:\"618a43bdf89333b555531f6d6ecde359\";s:3:\"img\";s:28:\"fullscreen-button/slide1.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-sidebar-slideshow/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:246:\"<span class=\"ttm_content\">A slider with a full-screen button that uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:297:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change the background images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:43;a:22:{s:2:\"id\";s:2:\"44\";s:5:\"title\";s:16:\"Creative Freedom\";s:5:\"alias\";s:15:\"creativefreedom\";s:3:\"zip\";s:19:\"creativefreedom.zip\";s:3:\"uid\";s:32:\"8902bf6c93126c2c6323626b9e872621\";s:3:\"img\";s:26:\"creativefreedom/slide1.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-touch-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A full-screen slider with a unique vertical navigation and 3D-parallax effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:290:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images, videos and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:44;a:22:{s:2:\"id\";s:2:\"45\";s:5:\"title\";s:17:\"3D Parallax Scene\";s:5:\"alias\";s:13:\"parallaxscene\";s:3:\"zip\";s:17:\"parallaxscene.zip\";s:3:\"uid\";s:32:\"51566f1ce649708e97a0f5dfaf05ea19\";s:3:\"img\";s:24:\"parallaxscene/slide1.jpg\";s:7:\"preview\";s:55:\"http://revolution.themepunch.com/wordpress-3d-parallax/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"700\";s:11:\"description\";s:328:\"<span class=\"ttm_content\">A 3D-parallax hero scene with mouse-controlled effects. Smart image arrangement creates a convincing 3D effect. Tooltips are shown using <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a>.</span>\r\n</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:45;a:22:{s:2:\"id\";s:2:\"46\";s:5:\"title\";s:10:\"Wow Factor\";s:5:\"alias\";s:15:\"slidingoverlays\";s:3:\"zip\";s:19:\"slidingoverlays.zip\";s:3:\"uid\";s:32:\"18002d17e8bc7ca61b0951f5305a759e\";s:3:\"img\";s:26:\"slidingoverlays/slide1.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/responsive-wordpress-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:106:\"<span class=\"ttm_content\">A 3D-parallax effect full-screen slider.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:46;a:22:{s:2:\"id\";s:2:\"47\";s:5:\"title\";s:14:\"3D Web Product\";s:5:\"alias\";s:25:\"web-product-light-hero-3d\";s:3:\"zip\";s:29:\"web-product-light-hero-3d.zip\";s:3:\"uid\";s:32:\"efd345c5da805414093e46066cefd751\";s:3:\"img\";s:36:\"web-product-light-hero-3d/slide1.jpg\";s:7:\"preview\";s:52:\"http://revolution.themepunch.com/wordpress-3d-scene/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"668\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">A 3D-parallax hero scene slider with a convincing depth-effect and animated clouds.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:47;a:22:{s:2:\"id\";s:2:\"48\";s:5:\"title\";s:15:\"WooCommerce Big\";s:5:\"alias\";s:6:\"woobig\";s:3:\"zip\";s:10:\"woobig.zip\";s:3:\"uid\";s:32:\"bfb09a39656c7c80e86b468fc5b3403c\";s:3:\"img\";s:17:\"woobig/slide1.jpg\";s:7:\"preview\";s:52:\"http://revolution.themepunch.com/woocommerce-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:173:\"<span class=\"ttm_content\">This slider is automatically populated by WooCommerce posts. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"WooCommerce Slider\"</a>. Make sure to select the products you want to show in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";i:2;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:48;a:22:{s:2:\"id\";s:2:\"49\";s:5:\"title\";s:17:\"WooCommerce Small\";s:5:\"alias\";s:16:\"woocommercesmall\";s:3:\"zip\";s:20:\"woocommercesmall.zip\";s:3:\"uid\";s:32:\"b17c2adcc5c4c4b68a7ac6fee32fa030\";s:3:\"img\";s:27:\"woocommercesmall/slide1.jpg\";s:7:\"preview\";s:52:\"http://revolution.themepunch.com/woocommerce-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:3:\"400\";s:6:\"height\";s:3:\"266\";s:11:\"description\";s:174:\" <span class=\"ttm_content\">This slider is automatically populated by WooCommerce posts. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"WooCommerce Slider\"</a>. Make sure to select the products you want to show in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";i:2;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:49;a:22:{s:2:\"id\";s:2:\"50\";s:5:\"title\";s:17:\"Restaurant Header\";s:5:\"alias\";s:10:\"finedining\";s:3:\"zip\";s:14:\"finedining.zip\";s:3:\"uid\";s:32:\"03481a9e258501fbe3888b48830ea845\";s:3:\"img\";s:21:\"finedining/slide1.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/restaurant-hero-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:275:\"<span class=\"ttm_content\">A full-screen hero block slider that shows different background layers on button hover using <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a>.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:464:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:50;a:22:{s:2:\"id\";s:2:\"51\";s:5:\"title\";s:21:\"Agency Website Header\";s:5:\"alias\";s:12:\"agency-intro\";s:3:\"zip\";s:16:\"agency-intro.zip\";s:3:\"uid\";s:32:\"e9be2afdd55a0c8d0d8d0cc12ba4c82f\";s:3:\"img\";s:23:\"agency-intro/slide1.jpg\";s:7:\"preview\";s:60:\"http://revolution.themepunch.com/agency-website-hero-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:302:\" <span class=\"ttm_content\">A full-screen hero block slider with ken burns effect and video modal on button click. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> are used to achieve this effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:371:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:51;a:22:{s:2:\"id\";s:2:\"52\";s:5:\"title\";s:11:\"Team Slider\";s:5:\"alias\";s:7:\"ourteam\";s:3:\"zip\";s:11:\"ourteam.zip\";s:3:\"uid\";s:32:\"d8eb1fec07a79202d1118bb17f70c233\";s:3:\"img\";s:18:\"ourteam/slide1.jpg\";s:7:\"preview\";s:74:\"http://revolution.themepunch.com/thumbnail-hover-slider-revolution-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.4\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:303:\"<span class=\"ttm_content\">A team slider that changes slides and displays additional information on thumbnail hover. It uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to achieve this effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:657:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\nLearn how to <a href=\"https://www.themepunch.com/faq/modify-thumbnails-for-our-team-template/\" target=\"_blank\">modify the thumbnails</a><br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:52;a:22:{s:2:\"id\";s:2:\"53\";s:5:\"title\";s:13:\"Team Carousel\";s:5:\"alias\";s:17:\"our-team-carousel\";s:3:\"zip\";s:21:\"our-team-carousel.zip\";s:3:\"uid\";s:32:\"37656d5dcab1f265c025cb2a3d669809\";s:3:\"img\";s:26:\"ourteamcarousel/slide1.jpg\";s:7:\"preview\";s:83:\"http://revolution.themepunch.com/thumbnail-hover-carousel-slider-revolution-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.4\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:306:\" <span class=\"ttm_content\">A team carousel that changes slides and displays additional information on thumbnail hover. It uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to achieve this effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:659:\"<span class=\"ttm_content\">This is a \"Default\" content carousel. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\nLearn how to <a href=\"https://www.themepunch.com/faq/modify-thumbnails-for-our-team-template/\" target=\"_blank\">modify the thumbnails</a><br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:53;a:22:{s:2:\"id\";s:2:\"54\";s:5:\"title\";s:17:\"4K Youtube Slider\";s:5:\"alias\";s:13:\"betteryoutube\";s:3:\"zip\";s:17:\"betteryoutube.zip\";s:3:\"uid\";s:32:\"d7c5fef9f257037d7a148038aa2a1857\";s:3:\"img\";s:24:\"betteryoutube/slide1.jpg\";s:7:\"preview\";s:94:\"http://revolution.themepunch.com/fullscreen-4k-youtube-video-gallery-slider-revolution-plugin/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.1.4\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"675\";s:11:\"description\";s:293:\" <span class=\"ttm_content\">A full-screen youtube gallery with 4K videos as an example. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> are used to breathe life into navigation elements.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:535:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change videos and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:54;a:22:{s:2:\"id\";s:2:\"55\";s:5:\"title\";s:21:\"Agency Website Header\";s:5:\"alias\";s:19:\"agencywebsiteheader\";s:3:\"zip\";s:23:\"agencywebsiteheader.zip\";s:3:\"uid\";s:32:\"c11d272c87277a7a38d9e7fd13e27947\";s:3:\"img\";s:30:\"agencywebsiteheader/slide1.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/fullscreen-hero-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:245:\" <span class=\"ttm_content\">A very unique full-screen slider that uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:509:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:55;a:22:{s:2:\"id\";s:2:\"56\";s:5:\"title\";s:11:\"Coming Soon\";s:5:\"alias\";s:10:\"comingsoon\";s:3:\"zip\";s:14:\"comingsoon.zip\";s:3:\"uid\";s:32:\"0f89edf995512e6d6e864a2ee7221829\";s:3:\"img\";s:21:\"comingsoon/slide1.jpg\";s:7:\"preview\";s:79:\"http://revolution.themepunch.com/coming-soon-wordpress-under-construction-site/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:299:\"<span class=\"ttm_content\">A full-screen slider that can be used as a \"Coming Soon\" page. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> are used to achieve various interaction possibilities.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:638:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>For further configuration options please view the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the slider settings.<br/><br/></span>\r\nInstructions for <a href=\"https://www.themepunch.com/faq/change-date-for-coming-soon-template/\" target=\"_blank\">how to change the date.</a><br /><br />\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:56;a:22:{s:2:\"id\";s:2:\"57\";s:5:\"title\";s:20:\"Christmas Snow Scene\";s:5:\"alias\";s:9:\"snowscene\";s:3:\"zip\";s:13:\"snowscene.zip\";s:3:\"uid\";s:32:\"a747bf0837caff86c62419a746690209\";s:3:\"img\";s:20:\"snowscene/slide1.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/christmas-snow-scene/\";s:7:\"version\";s:5:\"1.0.5\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:141:\"<span class=\"ttm_content\">A slider with multiple christmas themed slides and a neat snow fall effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:485:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>For further configuration options please view the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:57;a:22:{s:2:\"id\";s:2:\"58\";s:5:\"title\";s:15:\"Rock Band Music\";s:5:\"alias\";s:8:\"rockband\";s:3:\"zip\";s:12:\"rockband.zip\";s:3:\"uid\";s:32:\"5f557a5fad2fd6ca982a6ae6e9619637\";s:3:\"img\";s:19:\"rockband/slide1.jpg\";s:7:\"preview\";s:80:\"http://revolution.themepunch.com/rock-band-music-theme-slider-revolution-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:140:\" <span class=\"ttm_content\">A rock band themed hero block slider with an embedded SoundCloud element.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:464:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background video and texts.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:58;a:22:{s:2:\"id\";s:2:\"59\";s:5:\"title\";s:18:\"Sleek Landing Page\";s:5:\"alias\";s:16:\"sleeklandingpage\";s:3:\"zip\";s:20:\"sleeklandingpage.zip\";s:3:\"uid\";s:32:\"07f7f2608936a8ae226213b7d99eee3f\";s:3:\"img\";s:27:\"sleeklandingpage/slide1.jpg\";s:7:\"preview\";s:70:\"http://revolution.themepunch.com/landing-page-free-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:191:\"<span class=\"ttm_content\">A full-screen slider that can be used as an App-Landing-Page. The object layers and custom animations create a unique effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-22 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:59;a:22:{s:2:\"id\";s:2:\"60\";s:5:\"title\";s:16:\"App Landing Page\";s:5:\"alias\";s:14:\"applandingpage\";s:3:\"zip\";s:18:\"applandingpage.zip\";s:3:\"uid\";s:32:\"38eb600893c1484ab8fd2a3dce3678d7\";s:3:\"img\";s:25:\"applandingpage/slide1.jpg\";s:7:\"preview\";s:64:\"http://revolution.themepunch.com/app-landing-page-free-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:263:\"<span class=\"ttm_content\">A full-screen hero block that can be used as an app landing page. The detail view is build using <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a>.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:371:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:60;a:22:{s:2:\"id\";s:2:\"61\";s:5:\"title\";s:10:\"Desk Scene\";s:5:\"alias\";s:9:\"deskscene\";s:3:\"zip\";s:13:\"deskscene.zip\";s:3:\"uid\";s:32:\"172a1a89a3e3b333cb4dbeb238f534c5\";s:3:\"img\";s:20:\"deskscene/slide1.jpg\";s:7:\"preview\";s:49:\"http://revolution.themepunch.com/hero-desk-scene/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:135:\"<span class=\"ttm_content\">A beautiful desk scene with a cool reveal effect when scrolling down.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:61;a:22:{s:2:\"id\";s:2:\"62\";s:5:\"title\";s:17:\"Clean News Slider\";s:5:\"alias\";s:15:\"cleannewsslider\";s:3:\"zip\";s:19:\"cleannewsslider.zip\";s:3:\"uid\";s:32:\"82c3f521fe31b80984be0f19e1a9899e\";s:3:\"img\";s:26:\"cleannewsslider/slide1.jpg\";s:7:\"preview\";s:55:\"http://revolution.themepunch.com/wordpress-news-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:132:\"<span class=\"ttm_content\">A slideshow example with clean content and thumbnail navigation.</span>\r\n<span class=\"ttm_space\"></span>\r\n\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:62;a:22:{s:2:\"id\";s:2:\"63\";s:5:\"title\";s:13:\"Image Gallery\";s:5:\"alias\";s:12:\"imagegallery\";s:3:\"zip\";s:16:\"imagegallery.zip\";s:3:\"uid\";s:32:\"cef1d75357df2cb53b990c74a214813e\";s:3:\"img\";s:23:\"imagegallery/slide1.jpg\";s:7:\"preview\";s:64:\"http://revolution.themepunch.com/wordpress-photo-gallery-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"667\";s:11:\"description\";s:239:\"<span class=\"ttm_content\">A photo gallery suitable to display your images using <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:63;a:22:{s:2:\"id\";s:2:\"64\";s:5:\"title\";s:19:\"Standard WP Gallery\";s:5:\"alias\";s:19:\"standard-wp-gallery\";s:3:\"zip\";s:23:\"standard-wp-gallery.zip\";s:3:\"uid\";s:32:\"632035b8a27652d8081dbdfa343dc93d\";s:3:\"img\";s:30:\"standard-wp-gallery/slide1.jpg\";s:7:\"preview\";s:64:\"http://revolution.themepunch.com/wordpress-photo-gallery-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"667\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A photo gallery that uses the \"Standard WP Gallery\" add-on to display images.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:407:\"<span class=\"ttm_content\">Please follow the setup guide on the \"Standard WP Gallery\" add-on page.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";}s:14:\"plugin_require\";s:166:\"[{\"path\":\"revslider-gallery-addon\\/revslider-gallery-addon.php\",\"name\":\"WP Gallery AddOn\",\"url\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-photo-gallery-plugin\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:64;a:22:{s:2:\"id\";s:2:\"65\";s:5:\"title\";s:21:\"Clean News Post Based\";s:5:\"alias\";s:21:\"clean-news-post-based\";s:3:\"zip\";s:25:\"clean-news-post-based.zip\";s:3:\"uid\";s:32:\"f4cf5bbe51afa5a361754bb081cbabf2\";s:3:\"img\";s:32:\"clean-news-post-based/slide1.jpg\";s:7:\"preview\";s:55:\"http://revolution.themepunch.com/wordpress-news-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:125:\"<span class=\"ttm_content\"> This slider is automatically populated by WordPress posts.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:423:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"Post-Based Slider\"</a>. Make sure to select the post type you want to display in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:65;a:22:{s:2:\"id\";s:2:\"66\";s:5:\"title\";s:22:\"Interactive Whiteboard\";s:5:\"alias\";s:21:\"interactivewhiteboard\";s:3:\"zip\";s:25:\"interactivewhiteboard.zip\";s:3:\"uid\";s:32:\"058b4af535d6c6c7bcec5225845e3eb4\";s:3:\"img\";s:32:\"interactivewhiteboard/slide1.jpg\";s:7:\"preview\";s:77:\"http://revolution.themepunch.com/interactive-whiteboard-animation-free-addon/\";s:7:\"version\";s:5:\"1.0.5\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:269:\"<span class=\"ttm_content\">This is the example slider from the Whiteboard add-on preview.<br/><a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used to achieve certain effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:541:\"<span class=\"ttm_content\">This slider template requires the <a href=\"https://www.themepunch.com/slider-revolution/whiteboard-addon/\" target=\"_blank\">Whiteboard add-on</a> to be installed. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:185:\"[{\"path\":\"revslider-whiteboard-addon\\/revslider-whiteboard-addon.php\",\"name\":\"Whiteboard AddOn\",\"url\":\"http:\\/\\/revolution.themepunch.com\\/interactive-whiteboard-animation-free-addon\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:66;a:22:{s:2:\"id\";s:2:\"68\";s:5:\"title\";s:17:\"Innovation Slider\";s:5:\"alias\";s:10:\"innovation\";s:3:\"zip\";s:14:\"innovation.zip\";s:3:\"uid\";s:32:\"d3440b69126d9c186fddc713b18b0002\";s:3:\"img\";s:21:\"innovation/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/best-wordpress-slider-plugin-2016/\";s:7:\"version\";s:5:\"1.0.5\";s:8:\"required\";s:7:\"5.2.3.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:258:\"<span class=\"ttm_content\">A full-screen slider with an elegant fade-out parallax effect. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:493:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images, videos and texts.<br/>For further configuration options please view the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-03-29 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:67;a:25:{s:2:\"id\";s:2:\"69\";s:5:\"title\";s:25:\"Dark Content Block - Menu\";s:5:\"alias\";s:24:\"dark-fullsite-block-menu\";s:3:\"zip\";s:34:\"packs/dark-fullsite-block-menu.zip\";s:3:\"uid\";s:32:\"bf4bd226719d3c3d3146592976e31ca1\";s:3:\"img\";s:35:\"dark-fullsite-block-menu/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:68;a:25:{s:2:\"id\";s:2:\"70\";s:5:\"title\";s:25:\"Dark Content Block - Hero\";s:5:\"alias\";s:21:\"dark-fullsite-block-1\";s:3:\"zip\";s:31:\"packs/dark-fullsite-block-1.zip\";s:3:\"uid\";s:32:\"d8859245fe600288ca932dc29aca751f\";s:3:\"img\";s:32:\"dark-fullsite-block-1/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:69;a:25:{s:2:\"id\";s:2:\"71\";s:5:\"title\";s:26:\"Dark Content Block - About\";s:5:\"alias\";s:27:\"dark-fullsite-block-2-about\";s:3:\"zip\";s:37:\"packs/dark-fullsite-block-2-about.zip\";s:3:\"uid\";s:32:\"298401901521a197a8294c1b4f73df3e\";s:3:\"img\";s:38:\"dark-fullsite-block-2-about/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:70;a:25:{s:2:\"id\";s:2:\"72\";s:5:\"title\";s:29:\"Dark Content Block - Services\";s:5:\"alias\";s:30:\"dark-fullsite-block-3-services\";s:3:\"zip\";s:40:\"packs/dark-fullsite-block-3-services.zip\";s:3:\"uid\";s:32:\"8da3ed605472ed6a26c745fb52f85f82\";s:3:\"img\";s:41:\"dark-fullsite-block-3-services/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:71;a:25:{s:2:\"id\";s:2:\"73\";s:5:\"title\";s:29:\"Dark Content Block - Products\";s:5:\"alias\";s:30:\"dark-fullsite-block-4-products\";s:3:\"zip\";s:40:\"packs/dark-fullsite-block-4-products.zip\";s:3:\"uid\";s:32:\"99e4f40399d20261a6131043d0e50b0c\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:422:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\r\n\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:72;a:25:{s:2:\"id\";s:2:\"74\";s:5:\"title\";s:33:\"Dark Content Block - Testimonials\";s:5:\"alias\";s:34:\"dark-fullsite-block-5-testimonials\";s:3:\"zip\";s:44:\"packs/dark-fullsite-block-5-testimonials.zip\";s:3:\"uid\";s:32:\"2f9121e0eedd51afe85e233d0743acab\";s:3:\"img\";s:45:\"dark-fullsite-block-5-testimonials/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:73;a:25:{s:2:\"id\";s:2:\"75\";s:5:\"title\";s:28:\"Dark Content Block - Callout\";s:5:\"alias\";s:29:\"dark-fullsite-block-6-callout\";s:3:\"zip\";s:39:\"packs/dark-fullsite-block-6-callout.zip\";s:3:\"uid\";s:32:\"55fbecb113ff21f050be7adc08637329\";s:3:\"img\";s:40:\"dark-fullsite-block-6-callout/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:74;a:25:{s:2:\"id\";s:2:\"76\";s:5:\"title\";s:27:\"Dark Content Block - Footer\";s:5:\"alias\";s:28:\"dark-fullsite-block-7-footer\";s:3:\"zip\";s:38:\"packs/dark-fullsite-block-7-footer.zip\";s:3:\"uid\";s:32:\"2ff517f5c7c54e3e0c2dd733cfd3400e\";s:3:\"img\";s:39:\"dark-fullsite-block-7-footer/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:75;a:25:{s:2:\"id\";s:2:\"77\";s:5:\"title\";s:26:\"Light Content Block - Menu\";s:5:\"alias\";s:19:\"fullsite-block-menu\";s:3:\"zip\";s:29:\"packs/fullsite-block-menu.zip\";s:3:\"uid\";s:32:\"8010971f34387d5f94a1f4e577ef382a\";s:3:\"img\";s:30:\"fullsite-block-menu/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:76;a:25:{s:2:\"id\";s:2:\"78\";s:5:\"title\";s:26:\"Light Content Block - Hero\";s:5:\"alias\";s:15:\"fullsite-block1\";s:3:\"zip\";s:25:\"packs/fullsite-block1.zip\";s:3:\"uid\";s:32:\"45bf7179843e01ce112e8ec754b0455c\";s:3:\"img\";s:26:\"fullsite-block1/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:77;a:25:{s:2:\"id\";s:2:\"79\";s:5:\"title\";s:27:\"Light Content Block - About\";s:5:\"alias\";s:22:\"fullsite-block-2-about\";s:3:\"zip\";s:32:\"packs/fullsite-block-2-about.zip\";s:3:\"uid\";s:32:\"8402b460638a746d36433cb161440b7d\";s:3:\"img\";s:33:\"fullsite-block-2-about/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:78;a:25:{s:2:\"id\";s:2:\"80\";s:5:\"title\";s:30:\"Light Content Block - Services\";s:5:\"alias\";s:25:\"fullsite-block-3-services\";s:3:\"zip\";s:35:\"packs/fullsite-block-3-services.zip\";s:3:\"uid\";s:32:\"7b8cea27f4d6ae17c5e1eae12457bd06\";s:3:\"img\";s:36:\"fullsite-block-3-services/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:79;a:25:{s:2:\"id\";s:2:\"81\";s:5:\"title\";s:30:\"Light Content Block - Products\";s:5:\"alias\";s:25:\"fullsite-block-4-products\";s:3:\"zip\";s:35:\"packs/fullsite-block-4-products.zip\";s:3:\"uid\";s:32:\"d148935362d7122636cda0635eae4be7\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:80;a:25:{s:2:\"id\";s:2:\"82\";s:5:\"title\";s:34:\"Light Content Block - Testimonials\";s:5:\"alias\";s:29:\"fullsite-block-5-testimonials\";s:3:\"zip\";s:39:\"packs/fullsite-block-5-testimonials.zip\";s:3:\"uid\";s:32:\"06255bfd421e40f71fa8197b839dbf03\";s:3:\"img\";s:40:\"fullsite-block-5-testimonials/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:81;a:25:{s:2:\"id\";s:2:\"83\";s:5:\"title\";s:29:\"Light Content Block - Callout\";s:5:\"alias\";s:24:\"fullsite-block-6-callout\";s:3:\"zip\";s:34:\"packs/fullsite-block-6-callout.zip\";s:3:\"uid\";s:32:\"8a88c3447676b613ec5db2fe5d63315c\";s:3:\"img\";s:35:\"fullsite-block-6-callout/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:82;a:25:{s:2:\"id\";s:2:\"84\";s:5:\"title\";s:28:\"Light Content Block - Footer\";s:5:\"alias\";s:23:\"fullsite-block-7-footer\";s:3:\"zip\";s:33:\"packs/fullsite-block-7-footer.zip\";s:3:\"uid\";s:32:\"34300b4407a2093eb2e1e08868fa8319\";s:3:\"img\";s:34:\"fullsite-block-7-footer/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:83;a:22:{s:2:\"id\";s:2:\"85\";s:5:\"title\";s:12:\"Tech Journal\";s:5:\"alias\";s:11:\"techjournal\";s:3:\"zip\";s:15:\"techjournal.zip\";s:3:\"uid\";s:32:\"7f92d70d1c108378f915b18c2ceb71d6\";s:3:\"img\";s:22:\"techjournal/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.1\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:130:\"<span class=\"ttm_content\">A full-width slider with navigation direction-based transitions.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:277:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:84;a:22:{s:2:\"id\";s:2:\"86\";s:5:\"title\";s:14:\"Car Dealership\";s:5:\"alias\";s:13:\"cardealership\";s:3:\"zip\";s:17:\"cardealership.zip\";s:3:\"uid\";s:32:\"bb010838855a8ae4d1dd68e139bf169e\";s:3:\"img\";s:24:\"cardealership/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/car-dealership-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"650\";s:11:\"description\";s:130:\"<span class=\"ttm_content\">A full-width slider with navigation direction-based transitions.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:277:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:85;a:22:{s:2:\"id\";s:2:\"87\";s:5:\"title\";s:22:\"FullScreen Menu Slider\";s:5:\"alias\";s:14:\"fullscreenmenu\";s:3:\"zip\";s:18:\"fullscreenmenu.zip\";s:3:\"uid\";s:32:\"6de81d74c4bf193e2e274d43038adc85\";s:3:\"img\";s:25:\"fullscreenmenu/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-fullscreen-menu/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:131:\"<span class=\"ttm_content\">A full-screen slider that contains a menu with slide blur effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:86;a:22:{s:2:\"id\";s:2:\"88\";s:5:\"title\";s:18:\"Creative Frontpage\";s:5:\"alias\";s:17:\"creativefrontpage\";s:3:\"zip\";s:21:\"creativefrontpage.zip\";s:3:\"uid\";s:32:\"0636cb368af3bcaa2f68eb0ebefe6439\";s:3:\"img\";s:28:\"creativefrontpage/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/best-wordpress-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:246:\"<span class=\"ttm_content\">A full-screen slider with hidden slides that are triggered via  <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a>.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:87;a:25:{s:2:\"id\";s:2:\"89\";s:5:\"title\";s:20:\"Website Builder Menu\";s:5:\"alias\";s:19:\"websitebuilder-menu\";s:3:\"zip\";s:29:\"packs/websitebuilder-menu.zip\";s:3:\"uid\";s:32:\"d9e6d9c961f123a3a4847b51fc3ba3a2\";s:3:\"img\";s:30:\"websitebuilder-menu/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:2:\"60\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:88;a:25:{s:2:\"id\";s:2:\"90\";s:5:\"title\";s:20:\"Website Builder Hero\";s:5:\"alias\";s:19:\"websitebuilder-hero\";s:3:\"zip\";s:29:\"packs/websitebuilder-hero.zip\";s:3:\"uid\";s:32:\"6cb2df9a41ad2e7865bb9bbea7e39cb5\";s:3:\"img\";s:30:\"websitebuilder-hero/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"700\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:89;a:25:{s:2:\"id\";s:2:\"91\";s:5:\"title\";s:23:\"Website Builder Clients\";s:5:\"alias\";s:22:\"websitebuilder-clients\";s:3:\"zip\";s:32:\"packs/websitebuilder-clients.zip\";s:3:\"uid\";s:32:\"050e59c43c9a693510d01f29532088cf\";s:3:\"img\";s:33:\"websitebuilder-clients/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"120\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:90;a:25:{s:2:\"id\";s:2:\"92\";s:5:\"title\";s:24:\"Website Builder Services\";s:5:\"alias\";s:23:\"websitebuilder-services\";s:3:\"zip\";s:33:\"packs/websitebuilder-services.zip\";s:3:\"uid\";s:32:\"48d56d67615efce619ae973ab4358c07\";s:3:\"img\";s:34:\"websitebuilder-services/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"558\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:91;a:25:{s:2:\"id\";s:2:\"93\";s:5:\"title\";s:24:\"Website Builder Discover\";s:5:\"alias\";s:23:\"websitebuilder-discover\";s:3:\"zip\";s:33:\"packs/websitebuilder-discover.zip\";s:3:\"uid\";s:32:\"425a08a7be338daea3df02a07ff5c316\";s:3:\"img\";s:34:\"websitebuilder-discover/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"955\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:92;a:25:{s:2:\"id\";s:2:\"94\";s:5:\"title\";s:22:\"Website Builder Slider\";s:5:\"alias\";s:21:\"websitebuilder-slider\";s:3:\"zip\";s:31:\"packs/websitebuilder-slider.zip\";s:3:\"uid\";s:32:\"9d670b7335016accb590dc8d52bfb6f0\";s:3:\"img\";s:32:\"websitebuilder-slider/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:93;a:25:{s:2:\"id\";s:2:\"95\";s:5:\"title\";s:28:\"Website Builder CallToAction\";s:5:\"alias\";s:27:\"websitebuilder-calltoaction\";s:3:\"zip\";s:37:\"packs/websitebuilder-calltoaction.zip\";s:3:\"uid\";s:32:\"45851baf9e61f55ed9f5fa9d0beff77e\";s:3:\"img\";s:38:\"websitebuilder-calltoaction/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"960\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:94;a:25:{s:2:\"id\";s:2:\"96\";s:5:\"title\";s:22:\"Website Builder Footer\";s:5:\"alias\";s:21:\"websitebuilder-footer\";s:3:\"zip\";s:31:\"packs/websitebuilder-footer.zip\";s:3:\"uid\";s:32:\"2732bbe66ef28219d6cc53ce8cc78863\";s:3:\"img\";s:32:\"websitebuilder-footer/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:95;a:22:{s:2:\"id\";s:2:\"97\";s:5:\"title\";s:21:\"Focus Parallax Effect\";s:5:\"alias\";s:13:\"focusparallax\";s:3:\"zip\";s:17:\"focusparallax.zip\";s:3:\"uid\";s:32:\"13bd15fb3ddf8b9841cb55b89389cc73\";s:3:\"img\";s:24:\"focusparallax/slide1.jpg\";s:7:\"preview\";s:68:\" https://revolution.themepunch.com/parallax-effect-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:256:\"<span class=\"ttm_content\">A full-screen slider with mouse controlled parallax effects. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:96;a:22:{s:2:\"id\";s:2:\"98\";s:5:\"title\";s:14:\"Duotone Slider\";s:5:\"alias\";s:7:\"duotone\";s:3:\"zip\";s:11:\"duotone.zip\";s:3:\"uid\";s:32:\"494862ceb6cb7c6658ad7cd36848cccd\";s:3:\"img\";s:18:\"duotone/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/wordpress-header-image-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.4\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:252:\"<span class=\"ttm_content\">A full-screen slider with unique parallax scroll effect. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:277:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:97;a:25:{s:2:\"id\";s:2:\"99\";s:5:\"title\";s:12:\"Minimal Menu\";s:5:\"alias\";s:6:\"r_menu\";s:3:\"zip\";s:16:\"packs/r_menu.zip\";s:3:\"uid\";s:32:\"30d6a6895db1a5f29b1679061551c9f0\";s:3:\"img\";s:17:\"r_menu/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"110\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:890:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:98;a:25:{s:2:\"id\";s:3:\"100\";s:5:\"title\";s:12:\"Minimal Hero\";s:5:\"alias\";s:5:\"rhero\";s:3:\"zip\";s:16:\"packs/r_hero.zip\";s:3:\"uid\";s:32:\"b8b46186956f6e66ad0c08e4532bbbde\";s:3:\"img\";s:17:\"r_hero/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"700\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:890:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:99;a:25:{s:2:\"id\";s:3:\"101\";s:5:\"title\";s:13:\"Minimal About\";s:5:\"alias\";s:7:\"r_about\";s:3:\"zip\";s:17:\"packs/r_about.zip\";s:3:\"uid\";s:32:\"343010c4b4c03f92888c3e9e95bc2bb1\";s:3:\"img\";s:18:\"r_about/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:890:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:100;a:25:{s:2:\"id\";s:3:\"102\";s:5:\"title\";s:16:\"Minimal Products\";s:5:\"alias\";s:10:\"r_products\";s:3:\"zip\";s:20:\"packs/r_products.zip\";s:3:\"uid\";s:32:\"dda93e85c6a4456d132040147f087f39\";s:3:\"img\";s:21:\"r_products/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1100\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:890:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:101;a:25:{s:2:\"id\";s:3:\"103\";s:5:\"title\";s:12:\"Minimal Info\";s:5:\"alias\";s:6:\"r_info\";s:3:\"zip\";s:16:\"packs/r_info.zip\";s:3:\"uid\";s:32:\"d6e368e8fd4862174af6c980389ae530\";s:3:\"img\";s:17:\"r_info/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:890:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:102;a:22:{s:2:\"id\";s:3:\"104\";s:5:\"title\";s:18:\"Inspiration Header\";s:5:\"alias\";s:17:\"inspirationheader\";s:3:\"zip\";s:21:\"inspirationheader.zip\";s:3:\"uid\";s:32:\"69f04b2be0b618fa7e184af83b86b7e7\";s:3:\"img\";s:28:\"inspirationheader/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/wordpress-theme-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:159:\"<span class=\"ttm_content\">This full-screen hero slider features sequentially animated texts and cool parallax elements.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:103;a:22:{s:2:\"id\";s:3:\"105\";s:5:\"title\";s:15:\"Magazine Slider\";s:5:\"alias\";s:13:\"magazineposts\";s:3:\"zip\";s:17:\"magazineposts.zip\";s:3:\"uid\";s:32:\"c562f3457e4edbd030959f7c5e6e0f7c\";s:3:\"img\";s:24:\"magazineposts/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-magazine-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1000\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">A full-width slider with a mouse-controlled 3D-Parallax effect. Enjoy! <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:277:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:104;a:22:{s:2:\"id\";s:3:\"106\";s:5:\"title\";s:11:\"News Header\";s:5:\"alias\";s:17:\"explorationheader\";s:3:\"zip\";s:21:\"explorationheader.zip\";s:3:\"uid\";s:32:\"8f20d5a868c90ded08b835fb9e8307d7\";s:3:\"img\";s:28:\"explorationheader/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/wordpress-news-header/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:288:\"<span class=\"ttm_content\">A full-screen slider that is a perfect fit for displaying news on your websites header! Check out <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> to add links to buttons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:277:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:105;a:25:{s:2:\"id\";s:3:\"107\";s:5:\"title\";s:23:\"Minimal Website Package\";s:5:\"alias\";s:23:\"minimal-website-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:23:\"minimal-website-package\";s:3:\"img\";s:31:\"packages/template_group_1_1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"110\";s:11:\"description\";s:181:\"<span class=\"ttm_content\">The Minimal Website Template is a one-pager website with a unique background color change effect on scrolling down.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:890:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:106;a:25:{s:2:\"id\";s:3:\"108\";s:5:\"title\";s:23:\"Website Builder Package\";s:5:\"alias\";s:22:\"websitebuilder-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:22:\"websitebuilder-package\";s:3:\"img\";s:29:\"packages/template_group_2.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:2:\"60\";s:11:\"description\";s:191:\"<span class=\"ttm_content\">The Website Builder Package is a clean, usable collection website modules that can be used all together or each on their own.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:107;a:25:{s:2:\"id\";s:3:\"109\";s:5:\"title\";s:26:\"Dark Content Block Package\";s:5:\"alias\";s:27:\"dark-fullsite-block-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:27:\"dark-fullsite-block-package\";s:3:\"img\";s:29:\"packages/template_group_4.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">This Minimal Website Template has some sleek parallax effects and on-demand loading modules.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:108;a:25:{s:2:\"id\";s:3:\"110\";s:5:\"title\";s:27:\"Light Content Block Package\";s:5:\"alias\";s:22:\"fullsite-block-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:22:\"fullsite-block-package\";s:3:\"img\";s:29:\"packages/template_group_3.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">This Minimal Website Template has some sleek parallax effects and on-demand loading modules.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:109;a:22:{s:2:\"id\";s:3:\"111\";s:5:\"title\";s:17:\"Typewriter Effect\";s:5:\"alias\";s:16:\"typewritereffect\";s:3:\"zip\";s:20:\"typewritereffect.zip\";s:3:\"uid\";s:32:\"d6f8bae06cc4a7b158d680c01e59ddc2\";s:3:\"img\";s:27:\"typewritereffect/slide1.jpg\";s:7:\"preview\";s:62:\"https://revolution.themepunch.com/wordpress-typewriter-effect/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:263:\"<span class=\"ttm_content\">This is the example slider from the Typewriter add-on preview.<br/><a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on buttons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:403:\"<span class=\"ttm_content\">This slider template requires the <a href=\"https://www.themepunch.com/slider-revolution/typewriter-addon/\" target=\"_blank\">Typewriter add-on</a> to be installed. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:173:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:110;a:22:{s:2:\"id\";s:3:\"112\";s:5:\"title\";s:17:\"Blend Mode Header\";s:5:\"alias\";s:15:\"blendmodeheader\";s:3:\"zip\";s:19:\"blendmodeheader.zip\";s:3:\"uid\";s:32:\"2e44e976596d757aab40ffa28086dcf9\";s:3:\"img\";s:26:\"blendmodeheader/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/blend-mode-hero-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1000\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">This full-screen hero header with HMTL5 background video, utilizes the new 5.3 blend mode effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:111;a:25:{s:2:\"id\";s:3:\"113\";s:5:\"title\";s:17:\"Themeplicity Menu\";s:5:\"alias\";s:17:\"themeplicity_menu\";s:3:\"zip\";s:27:\"packs/themeplicity_menu.zip\";s:3:\"uid\";s:32:\"7d5c1e75eaafa63683895a32a62f4ce0\";s:3:\"img\";s:28:\"themeplicity_menu/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:2:\"90\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:112;a:25:{s:2:\"id\";s:3:\"114\";s:5:\"title\";s:19:\"Themeplicity Header\";s:5:\"alias\";s:19:\"themeplicity_header\";s:3:\"zip\";s:29:\"packs/themeplicity_header.zip\";s:3:\"uid\";s:32:\"907091e4d58acc7d12f802de2f280b7d\";s:3:\"img\";s:30:\"themeplicity_header/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1000\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:113;a:25:{s:2:\"id\";s:3:\"115\";s:5:\"title\";s:18:\"Themeplicity Offer\";s:5:\"alias\";s:18:\"themeplicity_offer\";s:3:\"zip\";s:28:\"packs/themeplicity_offer.zip\";s:3:\"uid\";s:32:\"1bd8f9aa2f3e340449664c65ba17fb51\";s:3:\"img\";s:29:\"themeplicity_offer/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"330\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:114;a:25:{s:2:\"id\";s:3:\"116\";s:5:\"title\";s:23:\"Themeplicity What We Do\";s:5:\"alias\";s:21:\"themeplicity_whatwedo\";s:3:\"zip\";s:31:\"packs/themeplicity_whatwedo.zip\";s:3:\"uid\";s:32:\"aa800a44b5a3eab30414dde1f32bfed7\";s:3:\"img\";s:32:\"themeplicity_whatwedo/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"813\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:115;a:25:{s:2:\"id\";s:3:\"117\";s:5:\"title\";s:21:\"Themeplicity Projects\";s:5:\"alias\";s:21:\"themeplicity_projects\";s:3:\"zip\";s:31:\"packs/themeplicity_projects.zip\";s:3:\"uid\";s:32:\"5f61b3a13033ba6a51a18270163e0a50\";s:3:\"img\";s:32:\"themeplicity_projects/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"813\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:116;a:25:{s:2:\"id\";s:3:\"118\";s:5:\"title\";s:24:\"Themeplicity Whats Great\";s:5:\"alias\";s:23:\"themeplicity_whatsgreat\";s:3:\"zip\";s:33:\"packs/themeplicity_whatsgreat.zip\";s:3:\"uid\";s:32:\"ce9faf8c55ed2e33e091b23667e7173b\";s:3:\"img\";s:34:\"themeplicity_whatsgreat/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:117;a:25:{s:2:\"id\";s:3:\"119\";s:5:\"title\";s:19:\"Themeplicity Tables\";s:5:\"alias\";s:19:\"themeplicity_tables\";s:3:\"zip\";s:29:\"packs/themeplicity_tables.zip\";s:3:\"uid\";s:32:\"f28bb4cd20ec1f29a1de7da5ad09c293\";s:3:\"img\";s:30:\"themeplicity_tables/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1059\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:118;a:25:{s:2:\"id\";s:3:\"120\";s:5:\"title\";s:24:\"Themeplicity Contactform\";s:5:\"alias\";s:24:\"themeplicity_contactform\";s:3:\"zip\";s:34:\"packs/themeplicity_contactform.zip\";s:3:\"uid\";s:32:\"3e59da970f534490774fa8e053f5b5ed\";s:3:\"img\";s:35:\"themeplicity_contactform/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1067\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:119;a:25:{s:2:\"id\";s:3:\"121\";s:5:\"title\";s:19:\"Themeplicity Footer\";s:5:\"alias\";s:19:\"themeplicity_footer\";s:3:\"zip\";s:29:\"packs/themeplicity_footer.zip\";s:3:\"uid\";s:32:\"89eeb0b4b852c5f743e1bd76e3e8f2ef\";s:3:\"img\";s:30:\"themeplicity_footer/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"780\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:120;a:25:{s:2:\"id\";s:3:\"122\";s:5:\"title\";s:20:\"Themeplicity Package\";s:5:\"alias\";s:20:\"themeplicity-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:20:\"themeplicity-package\";s:3:\"img\";s:38:\"packages/templatepack_themeplicity.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Themeplicity Website Template uses the new groups & rows feature introduced in 5.3 to its full potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:121;a:25:{s:2:\"id\";s:3:\"123\";s:5:\"title\";s:19:\"Nice And Clean Menu\";s:5:\"alias\";s:17:\"NiceAndClean_Menu\";s:3:\"zip\";s:27:\"packs/NiceAndClean_Menu.zip\";s:3:\"uid\";s:32:\"3f8c01e26c7446428e045c4b1180776d\";s:3:\"img\";s:28:\"NiceAndClean_Menu/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:2:\"90\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:122;a:25:{s:2:\"id\";s:3:\"124\";s:5:\"title\";s:21:\"Nice And Clean Header\";s:5:\"alias\";s:19:\"NiceAndClean_Header\";s:3:\"zip\";s:29:\"packs/NiceAndClean_Header.zip\";s:3:\"uid\";s:32:\"76931033addb20a62557c2845a4d6a11\";s:3:\"img\";s:30:\"NiceAndClean_Header/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:123;a:25:{s:2:\"id\";s:3:\"125\";s:5:\"title\";s:23:\"Nice And Clean Services\";s:5:\"alias\";s:21:\"NiceAndClean_Services\";s:3:\"zip\";s:31:\"packs/NiceAndClean_Services.zip\";s:3:\"uid\";s:32:\"02f72ec606800c8215bcadea09624e87\";s:3:\"img\";s:32:\"NiceAndClean_Services/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"360\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:124;a:25:{s:2:\"id\";s:3:\"126\";s:5:\"title\";s:20:\"Nice And Clean About\";s:5:\"alias\";s:18:\"NiceAndClean_About\";s:3:\"zip\";s:28:\"packs/NiceAndClean_About.zip\";s:3:\"uid\";s:32:\"9510f6fdbb8e9473e8c22f692a6bc89f\";s:3:\"img\";s:29:\"NiceAndClean_About/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:125;a:25:{s:2:\"id\";s:3:\"127\";s:5:\"title\";s:20:\"Nice And Clean Video\";s:5:\"alias\";s:18:\"niceandclean_video\";s:3:\"zip\";s:28:\"packs/niceandclean_video.zip\";s:3:\"uid\";s:32:\"2bb9e1ad329435cc500542d0c7025e15\";s:3:\"img\";s:29:\"niceandclean_video/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:126;a:25:{s:2:\"id\";s:3:\"128\";s:5:\"title\";s:25:\"Nice And Clean Highlights\";s:5:\"alias\";s:23:\"niceandclean_highlights\";s:3:\"zip\";s:33:\"packs/niceandclean_highlights.zip\";s:3:\"uid\";s:32:\"ff396af163a79d2d5b35db17c1ea7aa6\";s:3:\"img\";s:34:\"niceandclean_highlights/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:127;a:25:{s:2:\"id\";s:3:\"129\";s:5:\"title\";s:23:\"Nice And Clean Projects\";s:5:\"alias\";s:21:\"NiceAndClean_Projects\";s:3:\"zip\";s:31:\"packs/NiceAndClean_Projects.zip\";s:3:\"uid\";s:32:\"1e6695959ef83f8975b52289c08a4d44\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:128;a:25:{s:2:\"id\";s:3:\"130\";s:5:\"title\";s:25:\"Nice And Clean TextBlocks\";s:5:\"alias\";s:23:\"niceandclean_textblocks\";s:3:\"zip\";s:33:\"packs/niceandclean_textblocks.zip\";s:3:\"uid\";s:32:\"1f33eb839c96ea3225faff1c8d382b05\";s:3:\"img\";s:34:\"niceandclean_textblocks/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:129;a:25:{s:2:\"id\";s:3:\"131\";s:5:\"title\";s:22:\"Nice And Clean CallOut\";s:5:\"alias\";s:20:\"niceandclean_callout\";s:3:\"zip\";s:30:\"packs/niceandclean_callout.zip\";s:3:\"uid\";s:32:\"54d4d9bcf79d357de0e614700e909863\";s:3:\"img\";s:31:\"niceandclean_callout/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:130;a:25:{s:2:\"id\";s:3:\"132\";s:5:\"title\";s:21:\"Nice And Clean Footer\";s:5:\"alias\";s:19:\"niceandclean_footer\";s:3:\"zip\";s:29:\"packs/niceandclean_footer.zip\";s:3:\"uid\";s:32:\"5492d7f72b3771a4e754f91bda063b15\";s:3:\"img\";s:30:\"niceandclean_footer/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"400\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:542:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">For using the social sharing buttons, please install the social sharing add-on.<br><br></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:131;a:22:{s:2:\"id\";s:3:\"134\";s:5:\"title\";s:15:\"80s Style Intro\";s:5:\"alias\";s:3:\"80s\";s:3:\"zip\";s:7:\"80s.zip\";s:3:\"uid\";s:32:\"98881ab51f71b2fbdb220752d321b15a\";s:3:\"img\";s:14:\"80s/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/80s-style-intro/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:139:\"<span class=\"ttm_content\">This intro hero block takes you back to the 80\'s with some funky effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:317:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and text.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:132;a:22:{s:2:\"id\";s:3:\"135\";s:5:\"title\";s:18:\"Blur Effect Slider\";s:5:\"alias\";s:10:\"blurslider\";s:3:\"zip\";s:14:\"blurslider.zip\";s:3:\"uid\";s:32:\"83bd6e1ccef83f03c944fa05b0a2d879\";s:3:\"img\";s:21:\"blurslider/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/blur-effect-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:147:\"<span class=\"ttm_content\">This slider makes use of the brand new blur effects available with version 5.3.1.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:315:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change the background images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:133;a:22:{s:2:\"id\";s:3:\"136\";s:5:\"title\";s:18:\"Coming Soon Add-On\";s:5:\"alias\";s:15:\"ComingSoonAddon\";s:3:\"zip\";s:19:\"ComingSoonAddon.zip\";s:3:\"uid\";s:32:\"51258492055b940099eb96ba52901fa9\";s:3:\"img\";s:26:\"ComingSoonAddon/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/coming-soon-add-on/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:133:\"<span class=\"ttm_content\">This slider template makes use of the brand new Coming Soon Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:197:\"[{\"path\":\"revslider-maintenance-addon\\/revslider-maintenance-addon.php\",\"name\":\"Coming Soon & Maintenance AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/add-coming-soon-maintenance\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:134;a:25:{s:2:\"id\";s:3:\"137\";s:5:\"title\";s:22:\"Nice And Clean Package\";s:5:\"alias\";s:22:\"nice-and-clean-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:22:\"nice-and-clean-package\";s:3:\"img\";s:38:\"packages/templatepack_niceandclean.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:242:\"<span class=\"ttm_content\">The Nice & Clean Website Template uses groups & rows for a fully responsive website experience. Elegant blur effects available since version 5.3.1 make this template stand out!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:135;a:22:{s:2:\"id\";s:3:\"138\";s:5:\"title\";s:18:\"Snow Effect Add-On\";s:5:\"alias\";s:9:\"snowaddon\";s:3:\"zip\";s:13:\"snowaddon.zip\";s:3:\"uid\";s:32:\"7408d8567b8af5716eaabd390422e51b\";s:3:\"img\";s:20:\"snowaddon/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/snow-effect-add-on/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:183:\"<span class=\"ttm_content\">Add a pleasant Snow Effect to your website with this slider template. Make sure to install the \"Holiday Snow\" Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:153:\"[{\"path\":\"revslider-snow-addon\\/revslider-snow-addon.php\",\"name\":\"Snow AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:136;a:22:{s:2:\"id\";s:3:\"139\";s:5:\"title\";s:19:\"Particle Effect One\";s:5:\"alias\";s:19:\"particle-effect-one\";s:3:\"zip\";s:23:\"particle-effect-one.zip\";s:3:\"uid\";s:32:\"a4611c906e35ca60f617da86217b5299\";s:3:\"img\";s:30:\"particle-effect-one/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/particle-effect-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A unique particle effect that can serve as a stunning intro for your website.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:442:\"<span class=\"ttm_content\">The blend mode effect is achieved through a layer image with CSS blend mode. If you want to customize this effect, select the \"BLEND MODE IMAGE\" layer and go to \"advanced style -> filters -> blend mode\".</span>\r\n<span class=\"ttm_space\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:137;a:22:{s:2:\"id\";s:3:\"140\";s:5:\"title\";s:19:\"Particle Effect Two\";s:5:\"alias\";s:19:\"particle-effect-two\";s:3:\"zip\";s:23:\"particle-effect-two.zip\";s:3:\"uid\";s:32:\"b8ecbf43374a69e4ab329ea834862ef8\";s:3:\"img\";s:30:\"particle-effect-two/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/particle-effect-intro/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A unique particle effect that can serve as a stunning intro for your website.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:138;a:22:{s:2:\"id\";s:3:\"141\";s:5:\"title\";s:21:\"Particle Effect Three\";s:5:\"alias\";s:21:\"particle-effect-three\";s:3:\"zip\";s:25:\"particle-effect-three.zip\";s:3:\"uid\";s:32:\"b33bc2c5655d8d51cd17c3740f72e748\";s:3:\"img\";s:32:\"particle-effect-three/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/particle-background-effect/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A unique particle effect that can serve as a stunning intro for your website.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:437:\"<span class=\"ttm_content\">The blend mode effect is achieved through a layer image with CSS blend mode. If you want to customize this effect, select the \"BLEND IMAGE\" layer and go to \"advanced style -> filters -> blend mode\".</span>\r\n<span class=\"ttm_space\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:139;a:22:{s:2:\"id\";s:3:\"142\";s:5:\"title\";s:16:\"Portfolio Viewer\";s:5:\"alias\";s:15:\"portfolioviewer\";s:3:\"zip\";s:19:\"portfolioviewer.zip\";s:3:\"uid\";s:32:\"9ac7230ff5b880fb6c8f28fbbc123b3b\";s:3:\"img\";s:26:\"portfolioviewer/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/wordpress-portfolio-plugin/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:207:\"<span class=\"ttm_content\">This slider template can be used to display your portfolio highlights in a stunning way, utilising out free particles add-on and blend modes.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:387:\"<span class=\"ttm_content\">The navigation for the slides is found in the <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">Static Layers</a>.</span><span class=\"ttm_space\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:140;a:22:{s:2:\"id\";s:3:\"143\";s:5:\"title\";s:12:\"App Showcase\";s:5:\"alias\";s:11:\"appshowcase\";s:3:\"zip\";s:15:\"appshowcase.zip\";s:3:\"uid\";s:32:\"082aef931b0369080bc30c3a2a0c331f\";s:3:\"img\";s:22:\"appshowcase/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/app-showcase-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:239:\"<span class=\"ttm_content\">This template shows off our new \"Polyfold Effects\" Add-On in form of an App product showcase module. Get started now and illustrate your Apps key features in a striking way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:179:\"[{\"path\":\"revslider-polyfold-addon\\/revslider-polyfold-addon.php\",\"name\":\"Polyfold Scroll Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:141;a:22:{s:2:\"id\";s:3:\"144\";s:5:\"title\";s:19:\"Gravity Design Hero\";s:5:\"alias\";s:13:\"gravitydesign\";s:3:\"zip\";s:17:\"gravitydesign.zip\";s:3:\"uid\";s:32:\"7bdbe73a6e5bf290cb4412708ac4134d\";s:3:\"img\";s:24:\"gravitydesign/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/best-wordpress-slider-plugin-2017/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:205:\"<span class=\"ttm_content\">This hero template shows a striking mouse-parallax scene and cool particle effects. Requires our \"Particle Effects\" Add-on to be installed.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:142;a:22:{s:2:\"id\";s:3:\"145\";s:5:\"title\";s:14:\"404 Error Page\";s:5:\"alias\";s:12:\"404errorpage\";s:3:\"zip\";s:16:\"404errorpage.zip\";s:3:\"uid\";s:32:\"2dc62d802b42b73088651cac17d0c486\";s:3:\"img\";s:23:\"404errorpage/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/404-error-page-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:227:\"<span class=\"ttm_content\">This template can be used as a custom error page on your website with our new 404 page Add-On. Of course you can also use this template as a regular hero header.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:179:\"{\"1\":{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}}\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:143;a:22:{s:2:\"id\";s:3:\"146\";s:5:\"title\";s:16:\"Carousel Gallery\";s:5:\"alias\";s:15:\"carouselgallery\";s:3:\"zip\";s:19:\"carouselgallery.zip\";s:3:\"uid\";s:32:\"041838fd32923c40e15c998f0ea19526\";s:3:\"img\";s:26:\"carouselgallery/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/wordpress-carousel-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:159:\"<span class=\"ttm_content\">This carousel gallery features a subtle parallax effect, html5 video and a fullscreen button.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:144;a:22:{s:2:\"id\";s:3:\"147\";s:5:\"title\";s:16:\"Filmstrip Effect\";s:5:\"alias\";s:9:\"filmstrip\";s:3:\"zip\";s:13:\"filmstrip.zip\";s:3:\"uid\";s:32:\"7bd142f272cc15d86998a79520e9e581\";s:3:\"img\";s:20:\"filmstrip/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/filmstrip-add-on-slider/ \";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">This template uses our Filmstrip Add-On to display a continuous scrolling set of images per slide.\r\n There is lots of customization options like animation speed and direction.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:180:\"[{\"path\":\"revslider-filmstrip-addon\\/revslider-filmstrip-addon.php\",\"name\":\"Background FilmStrip Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:145;a:22:{s:2:\"id\";s:3:\"148\";s:5:\"title\";s:11:\"Space Opera\";s:5:\"alias\";s:10:\"spaceopera\";s:3:\"zip\";s:14:\"spaceopera.zip\";s:3:\"uid\";s:32:\"a2c8bffcb138a86c0f373adebb6de046\";s:3:\"img\";s:21:\"spaceopera/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/space-opera-presentation/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:201:\"<span class=\"ttm_content\">The Space Opera template can be enjoyed as a slow paced, full-screen slider experience and is great to show your most prominent photos.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:146;a:22:{s:2:\"id\";s:3:\"149\";s:5:\"title\";s:13:\"Website Intro\";s:5:\"alias\";s:12:\"websiteintro\";s:3:\"zip\";s:16:\"websiteintro.zip\";s:3:\"uid\";s:32:\"348df76d999456aa19be58c9df56ae20\";s:3:\"img\";s:23:\"websiteintro/slide1.jpg\";s:7:\"preview\";s:65:\"https://revolution.themepunch.com/website-intro-wordpress-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:274:\"<span class=\"ttm_content\">Making use of our new Slicey Add-On, this slider show a really cool effect you just have to experience yourself! Just change the slides background images and the existing slices will automatically be applied.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:171:\"[{\"path\":\"revslider-slicey-addon\\/revslider-slicey-addon.php\",\"name\":\"Background Slicey Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:147;a:22:{s:2:\"id\";s:3:\"150\";s:5:\"title\";s:13:\"Mask Showcase\";s:5:\"alias\";s:12:\"maskshowcase\";s:3:\"zip\";s:16:\"maskshowcase.zip\";s:3:\"uid\";s:32:\"fc943c31e2da9c63b252aeabf554d128\";s:3:\"img\";s:23:\"maskshowcase/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/minimal-mask-showcase/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Mask Showcase template uses gradients and the amazing block layer animations. A minimal slider treat for any website!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:148;a:22:{s:2:\"id\";s:3:\"151\";s:5:\"title\";s:20:\"Parallax Zoom Slices\";s:5:\"alias\";s:18:\"parallaxzoomslices\";s:3:\"zip\";s:22:\"parallaxzoomslices.zip\";s:3:\"uid\";s:32:\"83537cae05709ddb9bcb7375470a5894\";s:3:\"img\";s:29:\"parallaxzoomslices/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/parallax-zoom-slices-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:249:\"<span class=\"ttm_content\">This template uses the Slicey Add-On to add a unique effect to slide background images. You can simple change the background images and the slice effect will automatically be applied.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:171:\"[{\"path\":\"revslider-slicey-addon\\/revslider-slicey-addon.php\",\"name\":\"Background Slicey Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:149;a:22:{s:2:\"id\";s:3:\"152\";s:5:\"title\";s:22:\"Double Exposure Effect\";s:5:\"alias\";s:20:\"doubleexposureeffect\";s:3:\"zip\";s:24:\"doubleexposureeffect.zip\";s:3:\"uid\";s:32:\"8d9229b5cbcf5bda5fbdc6a8e01a2b8c\";s:3:\"img\";s:31:\"doubleexposureeffect/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/wordpress-double-exposure-effect/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">Make any website special with the double exposure effect slider. Use as a header module or anywhere you want!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:150;a:22:{s:2:\"id\";s:3:\"153\";s:5:\"title\";s:24:\"Mountain Parallax Header\";s:5:\"alias\";s:22:\"mountainparallaxheader\";s:3:\"zip\";s:26:\"mountainparallaxheader.zip\";s:3:\"uid\";s:32:\"8dc64663f317a2abdf179bbe341d016e\";s:3:\"img\";s:33:\"mountainparallaxheader/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/mountain-wordpress-parallax-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:192:\"<span class=\"ttm_content\">This template is a cool intro for any page, featuring a striking parallax effect. Just change texts and links and you\'re done!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:151;a:25:{s:2:\"id\";s:3:\"154\";s:5:\"title\";s:26:\"GoodNews One-Pager Package\";s:5:\"alias\";s:26:\"goodnews-one-pager-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"goodnews-one-pager-package\";s:3:\"img\";s:44:\"packages/templatepack_goodnews_one_pager.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:4:{i:0;s:8:\"carousel\";i:1;s:6:\"slider\";i:2;s:4:\"hero\";i:3;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:152;a:25:{s:2:\"id\";s:3:\"155\";s:5:\"title\";s:13:\"GoodNews Menu\";s:5:\"alias\";s:12:\"goodnewsmenu\";s:3:\"zip\";s:22:\"packs/goodnewsmenu.zip\";s:3:\"uid\";s:32:\"4cbc82501ff340fcdc0acf7eb3ba2640\";s:3:\"img\";s:23:\"goodnewsmenu/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:153;a:25:{s:2:\"id\";s:3:\"156\";s:5:\"title\";s:15:\"GoodNews Header\";s:5:\"alias\";s:14:\"goodnewsheader\";s:3:\"zip\";s:24:\"packs/goodnewsheader.zip\";s:3:\"uid\";s:32:\"c6660b6bdbf596f38466f569596f5259\";s:3:\"img\";s:25:\"goodnewsheader/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:154;a:25:{s:2:\"id\";s:3:\"157\";s:5:\"title\";s:18:\"GoodNews Whats Hot\";s:5:\"alias\";s:16:\"goodnewswhatshot\";s:3:\"zip\";s:26:\"packs/goodnewswhatshot.zip\";s:3:\"uid\";s:32:\"cb841ce64a99a6644adab049cf5405cd\";s:3:\"img\";s:27:\"goodnewswhatshot/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:155;a:25:{s:2:\"id\";s:3:\"158\";s:5:\"title\";s:17:\"GoodNews Featured\";s:5:\"alias\";s:16:\"goodnewsfeatured\";s:3:\"zip\";s:26:\"packs/goodnewsfeatured.zip\";s:3:\"uid\";s:32:\"00bde4b09e3700da7183999eaf137ccc\";s:3:\"img\";s:27:\"goodnewsfeatured/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:156;a:25:{s:2:\"id\";s:3:\"159\";s:5:\"title\";s:18:\"GoodNews Spotlight\";s:5:\"alias\";s:17:\"goodnewsspotlight\";s:3:\"zip\";s:27:\"packs/goodnewsspotlight.zip\";s:3:\"uid\";s:32:\"138076241a828e1c5764379944755f2b\";s:3:\"img\";s:28:\"goodnewsspotlight/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.4\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:157;a:25:{s:2:\"id\";s:3:\"160\";s:5:\"title\";s:17:\"GoodNews Carousel\";s:5:\"alias\";s:16:\"goodnewscarousel\";s:3:\"zip\";s:26:\"packs/goodnewscarousel.zip\";s:3:\"uid\";s:32:\"d29d4460a6015e30d08d2714232d3768\";s:3:\"img\";s:27:\"goodnewscarousel/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:158;a:25:{s:2:\"id\";s:3:\"161\";s:5:\"title\";s:16:\"GoodNews Callout\";s:5:\"alias\";s:15:\"goodnewscallout\";s:3:\"zip\";s:25:\"packs/goodnewscallout.zip\";s:3:\"uid\";s:32:\"d9568b3193e96577fae630b3a6728785\";s:3:\"img\";s:26:\"goodnewscallout/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:159;a:25:{s:2:\"id\";s:3:\"162\";s:5:\"title\";s:15:\"GoodNews Footer\";s:5:\"alias\";s:14:\"goodnewsfooter\";s:3:\"zip\";s:24:\"packs/goodnewsfooter.zip\";s:3:\"uid\";s:32:\"34f43f891cb8d55375149dc4bbc38298\";s:3:\"img\";s:25:\"goodnewsfooter/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:160;a:25:{s:2:\"id\";s:3:\"163\";s:5:\"title\";s:29:\"GoodNews Content Page Package\";s:5:\"alias\";s:29:\"goodnews-content-page-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:29:\"goodnews-content-page-package\";s:3:\"img\";s:55:\"packages/templatepack_goodnews_content_page_package.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;}i:161;a:25:{s:2:\"id\";s:3:\"164\";s:5:\"title\";s:18:\"GoodNews Menu Back\";s:5:\"alias\";s:16:\"goodnewsmenuback\";s:3:\"zip\";s:26:\"packs/goodnewsmenuback.zip\";s:3:\"uid\";s:32:\"1340d1aeefba497a7d404d12a1fceed4\";s:3:\"img\";s:27:\"goodnewsmenuback/slide1.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;}i:162;a:25:{s:2:\"id\";s:3:\"165\";s:5:\"title\";s:20:\"GoodNews Blog Header\";s:5:\"alias\";s:18:\"goodnewsblogheader\";s:3:\"zip\";s:28:\"packs/goodnewsblogheader.zip\";s:3:\"uid\";s:32:\"abc4d7c1e48475c6def05f1f6d8bf564\";s:3:\"img\";s:29:\"goodnewsblogheader/slide1.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;}i:163;a:25:{s:2:\"id\";s:3:\"166\";s:5:\"title\";s:21:\"GoodNews Blog Content\";s:5:\"alias\";s:19:\"goodnewsblogcontent\";s:3:\"zip\";s:29:\"packs/goodnewsblogcontent.zip\";s:3:\"uid\";s:32:\"bbf34563da6db2779c29599b503b07e9\";s:3:\"img\";s:30:\"goodnewsblogcontent/slide1.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;}i:164;a:25:{s:2:\"id\";s:3:\"167\";s:5:\"title\";s:21:\"GoodNews Testimonials\";s:5:\"alias\";s:20:\"goodnewstestimonials\";s:3:\"zip\";s:30:\"packs/goodnewstestimonials.zip\";s:3:\"uid\";s:32:\"606b7336e86f69c567542d3f43712b56\";s:3:\"img\";s:31:\"goodnewstestimonials/slide1.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;}i:165;a:25:{s:2:\"id\";s:3:\"168\";s:5:\"title\";s:20:\"GoodNews Blog Footer\";s:5:\"alias\";s:18:\"goodnewsblogfooter\";s:3:\"zip\";s:28:\"packs/goodnewsblogfooter.zip\";s:3:\"uid\";s:32:\"1fb88aecfb116fde67ce8d52bd3b5f05\";s:3:\"img\";s:29:\"goodnewsblogfooter/slide1.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;}i:166;a:22:{s:2:\"id\";s:3:\"169\";s:5:\"title\";s:19:\"Before After Slider\";s:5:\"alias\";s:17:\"beforeafterslider\";s:3:\"zip\";s:21:\"beforeafterslider.zip\";s:3:\"uid\";s:32:\"6e615091a1fc3037c24b985ce5136fb2\";s:3:\"img\";s:28:\"beforeafterslider/slide1.jpg\";s:7:\"preview\";s:54:\"https://revolution.themepunch.com/before-after-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.3.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:201:\"<span class=\"ttm_content\">This is the example slider for our Before / After Add-On that allows you to create unique presentations with a comparing functionality.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:320:\"<span class=\"ttm_content\">How to install <a href=\"https://www.themepunch.com/slider-revolution/install-addons/\" target=\"_blank\">Add-Ons</a>.</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-beforeafter-addon\\/revslider-beforeafter-addon.php\",\"name\":\"Before After AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:167;a:22:{s:2:\"id\";s:3:\"170\";s:5:\"title\";s:16:\"Product Showcase\";s:5:\"alias\";s:15:\"productshowcase\";s:3:\"zip\";s:19:\"productshowcase.zip\";s:3:\"uid\";s:32:\"a43447670260aaa7e8ff66cedfddb57a\";s:3:\"img\";s:26:\"productshowcase/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/wordpress-product-showcase-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:165:\"<span class=\"ttm_content\">Looking to sell products effectively? Our product showcase slider is just what you are looking for!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:168;a:22:{s:2:\"id\";s:3:\"171\";s:5:\"title\";s:23:\"Overexposure Transition\";s:5:\"alias\";s:22:\"overexposuretransition\";s:3:\"zip\";s:26:\"overexposuretransition.zip\";s:3:\"uid\";s:32:\"13f16bbe6c6d646c7d0cb817a0d3d181\";s:3:\"img\";s:33:\"overexposuretransition/slide1.jpg\";s:7:\"preview\";s:65:\"https://revolution.themepunch.com/overexposure-transition-effect/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:155:\"<span class=\"ttm_content\">Subtle overexposure transitions and smooth color fade effects make this slider stand out.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:320:\"<span class=\"ttm_content\">How to install <a href=\"https://www.themepunch.com/slider-revolution/install-addons/\" target=\"_blank\">Add-Ons</a>.</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:169;a:22:{s:2:\"id\";s:3:\"172\";s:5:\"title\";s:15:\"Parallax Scroll\";s:5:\"alias\";s:14:\"parallaxscroll\";s:3:\"zip\";s:18:\"parallaxscroll.zip\";s:3:\"uid\";s:32:\"82546ee2f6af6c6682852f495109b3c3\";s:3:\"img\";s:25:\"parallaxscroll/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/parallax-scroll/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:148:\"<span class=\"ttm_content\">A strikingly colourful header for your website with super smooth parallax effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:170;a:25:{s:2:\"id\";s:3:\"173\";s:5:\"title\";s:24:\"TechCo One-Pager Package\";s:5:\"alias\";s:24:\"techco-one-pager-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:24:\"techco-one-pager-package\";s:3:\"img\";s:28:\"packages/techco_overview.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:171;a:25:{s:2:\"id\";s:3:\"174\";s:5:\"title\";s:11:\"TechCo Menu\";s:5:\"alias\";s:11:\"techco-menu\";s:3:\"zip\";s:21:\"packs/techco-menu.zip\";s:3:\"uid\";s:32:\"55e5efee828cdf1ff7e2d3b90a301ea9\";s:3:\"img\";s:22:\"techco-menu/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:172;a:25:{s:2:\"id\";s:3:\"175\";s:5:\"title\";s:13:\"TechCo Header\";s:5:\"alias\";s:13:\"techco-header\";s:3:\"zip\";s:23:\"packs/techco-header.zip\";s:3:\"uid\";s:32:\"fb574d1376de9b1e408c91f51e6497d7\";s:3:\"img\";s:24:\"techco-header/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:173;a:25:{s:2:\"id\";s:3:\"176\";s:5:\"title\";s:12:\"TechCo About\";s:5:\"alias\";s:12:\"techco-about\";s:3:\"zip\";s:22:\"packs/techco-about.zip\";s:3:\"uid\";s:32:\"ba216da8231e55118d87e37d2358812c\";s:3:\"img\";s:23:\"techco-about/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:174;a:25:{s:2:\"id\";s:3:\"177\";s:5:\"title\";s:15:\"TechCo Services\";s:5:\"alias\";s:15:\"techco-services\";s:3:\"zip\";s:25:\"packs/techco-services.zip\";s:3:\"uid\";s:32:\"ef4a8ddbb5e1136133f7bc1227248e22\";s:3:\"img\";s:26:\"techco-services/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:175;a:25:{s:2:\"id\";s:3:\"178\";s:5:\"title\";s:12:\"TechCo Video\";s:5:\"alias\";s:12:\"techco-video\";s:3:\"zip\";s:22:\"packs/techco-video.zip\";s:3:\"uid\";s:32:\"d7bb92281d05f39f9bc9eca71f90e402\";s:3:\"img\";s:23:\"techco-video/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:176;a:25:{s:2:\"id\";s:3:\"179\";s:5:\"title\";s:13:\"TechCo Prices\";s:5:\"alias\";s:13:\"techco-prices\";s:3:\"zip\";s:23:\"packs/techco-prices.zip\";s:3:\"uid\";s:32:\"6291f404efbea12bb181352aba71ef11\";s:3:\"img\";s:24:\"techco-prices/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:177;a:25:{s:2:\"id\";s:3:\"180\";s:5:\"title\";s:19:\"TechCo Testimonials\";s:5:\"alias\";s:19:\"techco-testimonials\";s:3:\"zip\";s:29:\"packs/techco-testimonials.zip\";s:3:\"uid\";s:32:\"3460bd51f6b80599266fecb7fbb918be\";s:3:\"img\";s:30:\"techco-testimonials/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:178;a:25:{s:2:\"id\";s:3:\"181\";s:5:\"title\";s:13:\"TechCo Footer\";s:5:\"alias\";s:13:\"techco-footer\";s:3:\"zip\";s:23:\"packs/techco-footer.zip\";s:3:\"uid\";s:32:\"640abcd549137520461a4a71ff758a3b\";s:3:\"img\";s:24:\"techco-footer/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:179;a:22:{s:2:\"id\";s:3:\"182\";s:5:\"title\";s:12:\"Live Weather\";s:5:\"alias\";s:7:\"weather\";s:3:\"zip\";s:11:\"weather.zip\";s:3:\"uid\";s:32:\"aab92e69374e4c7b8c6741fe02e574b9\";s:3:\"img\";s:18:\"weather/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/wordpress-live-weather-add-on/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:7:\"5.4.5.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:173:\"<span class=\"ttm_content\">Showcasing our weather add-on, this slider show a different cities temperatures and forecast on each slide.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-weather-addon\\/revslider-weather-addon.php\",\"name\":\"Live Weather Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:180;a:22:{s:2:\"id\";s:3:\"183\";s:5:\"title\";s:17:\"360 Panorama Tour\";s:5:\"alias\";s:11:\"360panorama\";s:3:\"zip\";s:15:\"360panorama.zip\";s:3:\"uid\";s:32:\"332720fdacdbb38f65e8327a2a96c52d\";s:3:\"img\";s:22:\"360panorama/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/360-degree-real-estate-virtual-tour/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.5.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:155:\"<span class=\"ttm_content\">An example template for our Panorama 360 tour add-on, created for the real estate market.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:165:\"[{\"path\":\"revslider-panorama-addon\\/revslider-panorama-addon.php\",\"name\":\"Panorama AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:181;a:22:{s:2:\"id\";s:3:\"184\";s:5:\"title\";s:14:\"Duotone Add-on\";s:5:\"alias\";s:14:\"duotone-add-on\";s:3:\"zip\";s:18:\"duotone-add-on.zip\";s:3:\"uid\";s:32:\"a428c6f363b3146e96d20a6f44958922\";s:3:\"img\";s:25:\"duotone-add-on/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/wordpress-duotone-effect-add-on/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:168:\"<span class=\"ttm_content\">This example template showcases 3 of the 30 Duotone filters available in our brand new Duotone Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:350:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-duotonefilters-addon\\/revslider-duotonefilters-addon.php\",\"name\":\"Duotone AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:182;a:22:{s:2:\"id\";s:3:\"185\";s:5:\"title\";s:13:\"Reveal Add-on\";s:5:\"alias\";s:13:\"reveal-add-on\";s:3:\"zip\";s:17:\"reveal-add-on.zip\";s:3:\"uid\";s:32:\"7fa7525d8ff7fa7365cb98a437e88e32\";s:3:\"img\";s:24:\"reveal-add-on/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/wordpress-content-reveal-effect/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:204:\"<span class=\"ttm_content\">An example template that uses our Reveal Add-On, which adds 14 new preloaders combined with reveal loading effects for any slider or hero.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:337:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:201;a:23:{s:2:\"id\";s:3:\"210\";s:5:\"title\";s:21:\"Cryptocurrency Prices\";s:5:\"alias\";s:12:\"cryptoslider\";s:3:\"zip\";s:16:\"cryptoslider.zip\";s:3:\"uid\";s:32:\"c4b02210387f11946223977e940d9e9e\";s:3:\"img\";s:23:\"cryptoslider/slide1.jpg\";s:7:\"preview\";s:95:\"https://revolution.themepunch.com/cryptocurrency-wordpress-price-api-bitcoin-ethereum-litecoin/\";s:7:\"version\";s:5:\"1.0.6\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:209:\"<span class=\"ttm_content\">This Template can show live, animated cryptocurrency prices. More than 1300 currencies are supported, getting prices via the cryptocompare API.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:410:\"<span class=\"ttm_content\">Please refer to the \"Custom JavaScript\" section of this sliders settings, for info on how to modify currencies. Provide a class to the row / column / group where the currency text elements are located in.</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:202;a:25:{s:2:\"id\";s:3:\"211\";s:5:\"title\";s:18:\"Immersion One Page\";s:5:\"alias\";s:26:\"immersion-one-page-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"immersion-one-page-package\";s:3:\"img\";s:31:\"packages/immersion_overview.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:7:\"website\";}s:14:\"plugin_require\";s:343:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"},{\"path\":\"revslider-slicey-addon\\/revslider-slicey-addon.php\",\"name\":\"Background Slicey Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:203;a:25:{s:2:\"id\";s:3:\"212\";s:5:\"title\";s:16:\"Immersion Header\";s:5:\"alias\";s:16:\"immersion_header\";s:3:\"zip\";s:26:\"packs/immersion_header.zip\";s:3:\"uid\";s:32:\"853da51256308b341ecd030bd4883229\";s:3:\"img\";s:27:\"immersion_header/slide1.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:173:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:204;a:25:{s:2:\"id\";s:3:\"213\";s:5:\"title\";s:19:\"Immersion Mountains\";s:5:\"alias\";s:19:\"immersion-mountains\";s:3:\"zip\";s:29:\"packs/immersion-mountains.zip\";s:3:\"uid\";s:32:\"817167eb3fe22b7e065ba210cbe6d53c\";s:3:\"img\";s:30:\"immersion-mountains/slide1.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:171:\"[{\"path\":\"revslider-slicey-addon\\/revslider-slicey-addon.php\",\"name\":\"Background Slicey Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:205;a:25:{s:2:\"id\";s:3:\"214\";s:5:\"title\";s:17:\"Immersion Product\";s:5:\"alias\";s:17:\"immersion-product\";s:3:\"zip\";s:27:\"packs/immersion-product.zip\";s:3:\"uid\";s:32:\"64134f263484d2bbcd7ef088ffbbfb4b\";s:3:\"img\";s:28:\"immersion-product/slide1.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:206;a:25:{s:2:\"id\";s:3:\"215\";s:5:\"title\";s:16:\"Immersion Design\";s:5:\"alias\";s:16:\"immersion-design\";s:3:\"zip\";s:26:\"packs/immersion-design.zip\";s:3:\"uid\";s:32:\"91e1d77c1a2826438763804f4d02bc26\";s:3:\"img\";s:27:\"immersion-design/slide1.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:207;a:25:{s:2:\"id\";s:3:\"216\";s:5:\"title\";s:22:\"Immersion Phototgraphy\";s:5:\"alias\";s:21:\"immersion-photography\";s:3:\"zip\";s:31:\"packs/immersion-photography.zip\";s:3:\"uid\";s:32:\"e3ddf0c577b09740f5cbf2e38ffd684d\";s:3:\"img\";s:32:\"immersion-photography/slide1.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:208;a:25:{s:2:\"id\";s:3:\"217\";s:5:\"title\";s:14:\"Immersion Grid\";s:5:\"alias\";s:14:\"immersion-grid\";s:3:\"zip\";s:24:\"packs/immersion-grid.zip\";s:3:\"uid\";s:32:\"b6903868189bb83b2c7a852fde3a7dc3\";s:3:\"img\";s:25:\"immersion-grid/slide1.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:209;a:22:{s:2:\"id\";s:3:\"218\";s:5:\"title\";s:18:\"Funky Intro Slider\";s:5:\"alias\";s:11:\"funkyslider\";s:3:\"zip\";s:15:\"funkyslider.zip\";s:3:\"uid\";s:32:\"2d4187e3fdad19b976be335253c8925d\";s:3:\"img\";s:22:\"funkyslider/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/funky-intro-slider-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">This funky intro slider fits just right if you need a striking introduction to your website! Sleek, beautiful and easily customizable!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:335:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"},{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:210;a:25:{s:2:\"id\";s:3:\"219\";s:5:\"title\";s:19:\"Clear View Magazine\";s:5:\"alias\";s:27:\"clear-view-magazine-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:27:\"clear-view-magazine-package\";s:3:\"img\";s:41:\"packages/clear_view_magazine_overview.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:211;a:25:{s:2:\"id\";s:3:\"220\";s:5:\"title\";s:15:\"Clear View Menu\";s:5:\"alias\";s:14:\"clearview_menu\";s:3:\"zip\";s:24:\"packs/clearview_menu.zip\";s:3:\"uid\";s:32:\"eaecee5fa5f3c3a7f4d2a96c4616a353\";s:3:\"img\";s:25:\"clearview_menu/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:212;a:25:{s:2:\"id\";s:3:\"221\";s:5:\"title\";s:17:\"Clear View Header\";s:5:\"alias\";s:16:\"clearview_header\";s:3:\"zip\";s:26:\"packs/clearview_header.zip\";s:3:\"uid\";s:32:\"25e3dd80ad130875d7438a07952cb0cd\";s:3:\"img\";s:27:\"clearview_header/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:213;a:25:{s:2:\"id\";s:3:\"222\";s:5:\"title\";s:18:\"Clear View Mission\";s:5:\"alias\";s:17:\"clearview_mission\";s:3:\"zip\";s:27:\"packs/clearview_mission.zip\";s:3:\"uid\";s:32:\"35b2092a49fd2beb549342e69097eb5b\";s:3:\"img\";s:28:\"clearview_mission/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:214;a:25:{s:2:\"id\";s:3:\"223\";s:5:\"title\";s:17:\"Clear View Slider\";s:5:\"alias\";s:17:\"clear-view-slider\";s:3:\"zip\";s:27:\"packs/clear-view-slider.zip\";s:3:\"uid\";s:32:\"d2e17edffce16ed78c54b0ef23fd7e05\";s:3:\"img\";s:28:\"clear-view-slider/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:215;a:25:{s:2:\"id\";s:3:\"224\";s:5:\"title\";s:15:\"Clear View News\";s:5:\"alias\";s:15:\"clear-view-news\";s:3:\"zip\";s:25:\"packs/clear-view-news.zip\";s:3:\"uid\";s:32:\"5698d3131ba141e9afcfd2906739dd00\";s:3:\"img\";s:26:\"clear-view-news/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:216;a:25:{s:2:\"id\";s:3:\"225\";s:5:\"title\";s:18:\"Clear View Clients\";s:5:\"alias\";s:18:\"clear-view-clients\";s:3:\"zip\";s:28:\"packs/clear-view-clients.zip\";s:3:\"uid\";s:32:\"b95616a94832e22bdfac5ce60232be1b\";s:3:\"img\";s:29:\"clear-view-clients/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:217;a:25:{s:2:\"id\";s:3:\"226\";s:5:\"title\";s:18:\"Clear View Contact\";s:5:\"alias\";s:18:\"clear-view-contact\";s:3:\"zip\";s:28:\"packs/clear-view-contact.zip\";s:3:\"uid\";s:32:\"0e0cc1d8f6f6500e5f8a2b091fa3b4cb\";s:3:\"img\";s:29:\"clear-view-contact/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:218;a:25:{s:2:\"id\";s:3:\"227\";s:5:\"title\";s:20:\"Clear View Post Page\";s:5:\"alias\";s:28:\"clear-view-post-page-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:28:\"clear-view-post-page-package\";s:3:\"img\";s:42:\"packages/clear_view_post_page_overview.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;}i:219;a:25:{s:2:\"id\";s:3:\"228\";s:5:\"title\";s:22:\"Clear View Single Menu\";s:5:\"alias\";s:22:\"clear-view-single-menu\";s:3:\"zip\";s:32:\"packs/clear-view-single-menu.zip\";s:3:\"uid\";s:32:\"1e80f81982f8a4ea763482d4fa99d321\";s:3:\"img\";s:33:\"clear-view-single-menu/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;}i:220;a:25:{s:2:\"id\";s:3:\"229\";s:5:\"title\";s:24:\"Clear View Single Header\";s:5:\"alias\";s:24:\"clear-view-single-header\";s:3:\"zip\";s:34:\"packs/clear-view-single-header.zip\";s:3:\"uid\";s:32:\"c8d717627be6cd5e70922ab609694dbf\";s:3:\"img\";s:35:\"clear-view-single-header/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;}i:221;a:25:{s:2:\"id\";s:3:\"230\";s:5:\"title\";s:23:\"Clear View Single Media\";s:5:\"alias\";s:23:\"clear-view-single-media\";s:3:\"zip\";s:33:\"packs/clear-view-single-media.zip\";s:3:\"uid\";s:32:\"c480368ded2a64f0cdd44f1674213814\";s:3:\"img\";s:34:\"clear-view-single-media/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;}i:222;a:25:{s:2:\"id\";s:3:\"231\";s:5:\"title\";s:22:\"Clear View Single More\";s:5:\"alias\";s:22:\"clear-view-single-more\";s:3:\"zip\";s:32:\"packs/clear-view-single-more.zip\";s:3:\"uid\";s:32:\"9c693190df26218366d1f77e10cf550a\";s:3:\"img\";s:33:\"clear-view-single-more/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;}i:223;a:25:{s:2:\"id\";s:3:\"232\";s:5:\"title\";s:25:\"Clear View Single Contact\";s:5:\"alias\";s:25:\"clear-view-single-contact\";s:3:\"zip\";s:35:\"packs/clear-view-single-contact.zip\";s:3:\"uid\";s:32:\"73c0a889f2b654a87b5aba1ff76fbc5c\";s:3:\"img\";s:36:\"clear-view-single-contact/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;}i:224;a:22:{s:2:\"id\";s:3:\"233\";s:5:\"title\";s:18:\"Clean Landing Page\";s:5:\"alias\";s:16:\"cleanlandingpage\";s:3:\"zip\";s:20:\"cleanlandingpage.zip\";s:3:\"uid\";s:32:\"727a3680d312f22c6a5998ebdb9afe52\";s:3:\"img\";s:27:\"cleanlandingpage/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/clean-landing-page-for-wordpress/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:203:\"<span class=\"ttm_content\">The Clean Landing Page is a fullscreen Intro Module that is a striking introduction to any minimal website, with no unnecessary elements.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:173:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:225;a:22:{s:2:\"id\";s:3:\"234\";s:5:\"title\";s:9:\"Clear Cut\";s:5:\"alias\";s:8:\"clearcut\";s:3:\"zip\";s:12:\"clearcut.zip\";s:3:\"uid\";s:32:\"07f43c00e9b4d3057a03cdb3385ad2b7\";s:3:\"img\";s:19:\"clearcut/slide1.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/clear-cut-portfolio-website-for-wordpress/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:240:\"<span class=\"ttm_content\">The Clear Cut Template is an All-In-One Portfolio Website solution that works best for smaller portfolios. Highlight your best work in a striking and mobile friendly fashion!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:226;a:25:{s:2:\"id\";s:3:\"235\";s:5:\"title\";s:22:\"Wonderstruck One-Pager\";s:5:\"alias\";s:30:\"wonderstruck-one-pager-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:30:\"wonderstruck-one-pager-package\";s:3:\"img\";s:44:\"packages/wonderstruck-one-pager-overview.jpg\";s:7:\"preview\";s:77:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:227;a:25:{s:2:\"id\";s:3:\"236\";s:5:\"title\";s:17:\"Wonderstruck Menu\";s:5:\"alias\";s:17:\"wonderstruck_menu\";s:3:\"zip\";s:27:\"packs/wonderstruck_menu.zip\";s:3:\"uid\";s:32:\"0a976e9aaae59c4f795b38f59f5a08d8\";s:3:\"img\";s:28:\"wonderstruck_menu/slide1.jpg\";s:7:\"preview\";s:77:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:228;a:25:{s:2:\"id\";s:3:\"237\";s:5:\"title\";s:19:\"Wonderstruck Header\";s:5:\"alias\";s:19:\"wonderstruck_header\";s:3:\"zip\";s:29:\"packs/wonderstruck_header.zip\";s:3:\"uid\";s:32:\"e1379f77a902960a0ce12d44d85a9e0a\";s:3:\"img\";s:30:\"wonderstruck_header/slide1.jpg\";s:7:\"preview\";s:77:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:229;a:25:{s:2:\"id\";s:3:\"238\";s:5:\"title\";s:18:\"Wonderstruck About\";s:5:\"alias\";s:18:\"wonderstruck_about\";s:3:\"zip\";s:28:\"packs/wonderstruck_about.zip\";s:3:\"uid\";s:32:\"d207fb140fd328acc3038300ea52082a\";s:3:\"img\";s:29:\"wonderstruck_about/slide1.jpg\";s:7:\"preview\";s:77:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:230;a:25:{s:2:\"id\";s:3:\"239\";s:5:\"title\";s:18:\"Wonderstruck Works\";s:5:\"alias\";s:18:\"wonderstruck-works\";s:3:\"zip\";s:28:\"packs/wonderstruck-works.zip\";s:3:\"uid\";s:32:\"4476935097e27d92454b0011b7700c1d\";s:3:\"img\";s:29:\"wonderstruck-works/slide1.jpg\";s:7:\"preview\";s:77:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:231;a:25:{s:2:\"id\";s:3:\"240\";s:5:\"title\";s:20:\"Wonderstruck Contact\";s:5:\"alias\";s:20:\"wonderstruck-contact\";s:3:\"zip\";s:30:\"packs/wonderstruck-contact.zip\";s:3:\"uid\";s:32:\"9e4911521f77bce2b8efa40f4c2adc22\";s:3:\"img\";s:31:\"wonderstruck-contact/slide1.jpg\";s:7:\"preview\";s:77:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:232;a:22:{s:2:\"id\";s:3:\"241\";s:5:\"title\";s:12:\"Bubble Morph\";s:5:\"alias\";s:11:\"bubblemorph\";s:3:\"zip\";s:15:\"bubblemorph.zip\";s:3:\"uid\";s:32:\"1102d6f5460ab82cb612cbe9f1d9514b\";s:3:\"img\";s:22:\"bubblemorph/slide1.jpg\";s:7:\"preview\";s:75:\"https://revolution.themepunch.com/bubble-morph-effect-add-on-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:188:\"<span class=\"ttm_content\">The Bubble Morph Add-On allows you to create interesting Lava-Lamp style effects on any of your Slider Revolution content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:233;a:22:{s:2:\"id\";s:3:\"242\";s:5:\"title\";s:16:\"Distortion AddOn\";s:5:\"alias\";s:15:\"distortionaddon\";s:3:\"zip\";s:19:\"distortionaddon.zip\";s:3:\"uid\";s:32:\"0ad46c9929bb2fa6316f1e6ced301aaf\";s:3:\"img\";s:26:\"distortionaddon/slide1.jpg\";s:7:\"preview\";s:73:\"https://revolution.themepunch.com/distortion-effect-add-on-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Distortion Add-On allows you to create interesting Distortion style effects on any of your Slider Revolution content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:182:\"[{\"path\":\"revslider-liquideffect-addon\\/revslider-liquideffect-addon.php\",\"name\":\"Distortion Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:234;a:22:{s:2:\"id\";s:3:\"243\";s:5:\"title\";s:10:\"Club Flyer\";s:5:\"alias\";s:9:\"clubflyer\";s:3:\"zip\";s:13:\"clubflyer.zip\";s:3:\"uid\";s:32:\"dab73b9904d0e643a35b0475980998bd\";s:3:\"img\";s:20:\"clubflyer/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/club-flyer-landing-page-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:227:\"<span class=\"ttm_content\">This Club Fyler Template for Slider Revolution uses the brand new Exploding Layers Add-On to create a captivating effect. Tap into unlimited creative potential. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:187:\"[{\"path\":\"revslider-explodinglayers-addon\\/revslider-explodinglayers-addon.php\",\"name\":\"Exploding Layers AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:235;a:24:{s:2:\"id\";s:3:\"244\";s:5:\"title\";s:16:\"Paintbrush AddOn\";s:5:\"alias\";s:15:\"paintbrushaddon\";s:3:\"zip\";s:19:\"paintbrushaddon.zip\";s:3:\"uid\";s:32:\"c85c48a6742b4bf72a2590cc1b50f6a0\";s:3:\"img\";s:26:\"paintbrushaddon/slide1.jpg\";s:7:\"preview\";s:73:\"https://revolution.themepunch.com/paintbrush-effect-add-on-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:239:\"<span class=\"ttm_content\">The Paintbrush Add-On for WordPress allows you to add cool mouse interaction effects to your Slider Revolution content. Examples: Blur Reveal, Color Reveal, Scratch Me Free.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:171:\"[{\"path\":\"revslider-paintbrush-addon\\/revslider-paintbrush-addon.php\",\"name\":\"Paintbrush AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;s:10:\"push_image\";b:1;}i:236;a:25:{s:2:\"id\";s:3:\"245\";s:5:\"title\";s:18:\"Parallax One-Pager\";s:5:\"alias\";s:26:\"parallax-one-pager-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"parallax-one-pager-package\";s:3:\"img\";s:39:\"packages/parallax-one-pager-package.jpg\";s:7:\"preview\";s:71:\"https://revolution.themepunch.com/parallax-one-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:230:\"<span class=\"ttm_content\">The Parallax One-Page WordPress Template is consisting of 3 hero blocks and contains a beautiful parallax mountain scene. An impactful opening to your web presence!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Parallax One-Pager\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"14\";s:9:\"installed\";b:0;}i:237;a:25:{s:2:\"id\";s:3:\"246\";s:5:\"title\";s:15:\"Parallax Header\";s:5:\"alias\";s:15:\"parallax_header\";s:3:\"zip\";s:25:\"packs/parallax_header.zip\";s:3:\"uid\";s:32:\"32bf4a0f5136853bd6bd366275a7a60b\";s:3:\"img\";s:26:\"parallax_header/slide1.jpg\";s:7:\"preview\";s:71:\"https://revolution.themepunch.com/parallax-one-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:230:\"<span class=\"ttm_content\">The Parallax One-Page WordPress Template is consisting of 3 hero blocks and contains a beautiful parallax mountain scene. An impactful opening to your web presence!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Parallax One-Pager\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"14\";s:9:\"installed\";b:0;}i:238;a:25:{s:2:\"id\";s:3:\"247\";s:5:\"title\";s:16:\"Parallax Content\";s:5:\"alias\";s:16:\"parallax_content\";s:3:\"zip\";s:26:\"packs/parallax_content.zip\";s:3:\"uid\";s:32:\"a25c5fb8f74757476ab4dc038e56f90d\";s:3:\"img\";s:27:\"parallax_content/slide1.jpg\";s:7:\"preview\";s:71:\"https://revolution.themepunch.com/parallax-one-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:230:\"<span class=\"ttm_content\">The Parallax One-Page WordPress Template is consisting of 3 hero blocks and contains a beautiful parallax mountain scene. An impactful opening to your web presence!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Parallax One-Pager\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"14\";s:9:\"installed\";b:0;}i:239;a:25:{s:2:\"id\";s:3:\"248\";s:5:\"title\";s:15:\"Parallax Footer\";s:5:\"alias\";s:15:\"parallax_footer\";s:3:\"zip\";s:25:\"packs/parallax_footer.zip\";s:3:\"uid\";s:32:\"665dff9ea6eaf162a2a1f160f51a9ddb\";s:3:\"img\";s:26:\"parallax_footer/slide1.jpg\";s:7:\"preview\";s:71:\"https://revolution.themepunch.com/parallax-one-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:230:\"<span class=\"ttm_content\">The Parallax One-Page WordPress Template is consisting of 3 hero blocks and contains a beautiful parallax mountain scene. An impactful opening to your web presence!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Parallax One-Pager\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"14\";s:9:\"installed\";b:0;}i:240;a:25:{s:2:\"id\";s:3:\"249\";s:5:\"title\";s:18:\"Le Chef Restaurant\";s:5:\"alias\";s:18:\"le-chef-restaurant\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"le-chef-restaurant-package\";s:3:\"img\";s:39:\"packages/le-chef-restaurant-package.jpg\";s:7:\"preview\";s:80:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:261:\"<span class=\"ttm_content\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:241;a:25:{s:2:\"id\";s:3:\"250\";s:5:\"title\";s:12:\"Le Chef Menu\";s:5:\"alias\";s:12:\"le-chef-menu\";s:3:\"zip\";s:22:\"packs/le-chef-menu.zip\";s:3:\"uid\";s:32:\"2f2a6a333431fefe4a7b3b6a982b2ff5\";s:3:\"img\";s:23:\"le-chef-menu/slide1.jpg\";s:7:\"preview\";s:80:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:261:\"<span class=\"ttm_content\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:242;a:25:{s:2:\"id\";s:3:\"251\";s:5:\"title\";s:14:\"Le Chef Header\";s:5:\"alias\";s:14:\"le-chef-header\";s:3:\"zip\";s:24:\"packs/le-chef-header.zip\";s:3:\"uid\";s:32:\"06450ca3be5a4a8959f3752ab974e574\";s:3:\"img\";s:25:\"le-chef-header/slide1.jpg\";s:7:\"preview\";s:80:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:261:\"<span class=\"ttm_content\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:243;a:25:{s:2:\"id\";s:3:\"252\";s:5:\"title\";s:18:\"Le Chef Philosophy\";s:5:\"alias\";s:18:\"le-chef-philosophy\";s:3:\"zip\";s:28:\"packs/le-chef-philosophy.zip\";s:3:\"uid\";s:32:\"a532fd029addeb18106e751409b8e20a\";s:3:\"img\";s:29:\"le-chef-philosophy/slide1.jpg\";s:7:\"preview\";s:80:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:261:\"<span class=\"ttm_content\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:244;a:25:{s:2:\"id\";s:3:\"253\";s:5:\"title\";s:12:\"Le Chef Food\";s:5:\"alias\";s:12:\"le-chef-food\";s:3:\"zip\";s:22:\"packs/le-chef-food.zip\";s:3:\"uid\";s:32:\"cd4b6a2cb5de2dd20a0e8ba0c35451df\";s:3:\"img\";s:23:\"le-chef-food/slide1.jpg\";s:7:\"preview\";s:80:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:261:\"<span class=\"ttm_content\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:245;a:25:{s:2:\"id\";s:3:\"254\";s:5:\"title\";s:16:\"Le Chef La Carte\";s:5:\"alias\";s:16:\"le-chef-la-carte\";s:3:\"zip\";s:26:\"packs/le-chef-la-carte.zip\";s:3:\"uid\";s:32:\"6f312749679c3ba52c41189a6b8bf729\";s:3:\"img\";s:27:\"le-chef-la-carte/slide1.jpg\";s:7:\"preview\";s:80:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:261:\"<span class=\"ttm_content\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:246;a:25:{s:2:\"id\";s:3:\"255\";s:5:\"title\";s:14:\"Le Chef Footer\";s:5:\"alias\";s:14:\"le-chef-footer\";s:3:\"zip\";s:24:\"packs/le-chef-footer.zip\";s:3:\"uid\";s:32:\"12fc241e8e5b9e5df9758c43448e2907\";s:3:\"img\";s:25:\"le-chef-footer/slide1.jpg\";s:7:\"preview\";s:80:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:261:\"<span class=\"ttm_content\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:247;a:22:{s:2:\"id\";s:3:\"256\";s:5:\"title\";s:20:\"News Magazine Slider\";s:5:\"alias\";s:20:\"news-magazine-slider\";s:3:\"zip\";s:24:\"news-magazine-slider.zip\";s:3:\"uid\";s:32:\"31f2c1506babb1fef459401f051d2d52\";s:3:\"img\";s:31:\"news-magazine-slider/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/news-magazine-slider-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:205:\"<span class=\"ttm_content\">The Magazine Slider offers various layouts that support static content images, HTML5 and Youtube video. Great for any blog or news website!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:248;a:22:{s:2:\"id\";s:3:\"257\";s:5:\"title\";s:18:\"Real Estate Slider\";s:5:\"alias\";s:18:\"real-estate-slider\";s:3:\"zip\";s:22:\"real-estate-slider.zip\";s:3:\"uid\";s:32:\"739ce6336e46815094387c9448e6c804\";s:3:\"img\";s:29:\"real-estate-slider/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/real-estate-slider-for-wordpress/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:204:\"<span class=\"ttm_content\">The Real Estate Slider allows to display real estate offers with a large ken burns background image and additional thumbnail hover images.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:249;a:22:{s:2:\"id\";s:3:\"258\";s:5:\"title\";s:14:\"Fashion Header\";s:5:\"alias\";s:14:\"fashion-header\";s:3:\"zip\";s:18:\"fashion-header.zip\";s:3:\"uid\";s:32:\"24ece4e7f4d31cd90377c62abbd9e25a\";s:3:\"img\";s:25:\"fashion-header/slide1.jpg\";s:7:\"preview\";s:75:\"https://revolution.themepunch.com/fashion-shop-header-slider-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:254:\"<span class=\"ttm_content\">The Fashion Shop Header ist the ideal Slider to display as an intro to your shop website or as a separator in between content. Our unique \"Bubble Morph\" effect makes this module stand out!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:250;a:22:{s:2:\"id\";s:3:\"259\";s:5:\"title\";s:14:\"Seasonal Offer\";s:5:\"alias\";s:13:\"seasonaloffer\";s:3:\"zip\";s:17:\"seasonaloffer.zip\";s:3:\"uid\";s:32:\"caf2f17f8fd64f2f89dcb3c8dd238457\";s:3:\"img\";s:24:\"seasonaloffer/slide1.jpg\";s:7:\"preview\";s:80:\"https://revolution.themepunch.com/seasonal-offer-christmas-header-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.8.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:204:\"<span class=\"ttm_content\">Use the Seasonal Offer Header to promote special offers in the holiday season, or just to add some snowy christmas spirit to your website!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:153:\"[{\"path\":\"revslider-snow-addon\\/revslider-snow-addon.php\",\"name\":\"Snow AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:251;a:25:{s:2:\"id\";s:3:\"260\";s:5:\"title\";s:11:\"Barber Shop\";s:5:\"alias\";s:11:\"barber-shop\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:19:\"barber-shop-package\";s:3:\"img\";s:32:\"packages/barber-shop-package.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;}i:252;a:25:{s:2:\"id\";s:3:\"261\";s:5:\"title\";s:18:\"Barber Shop Header\";s:5:\"alias\";s:18:\"barber-shop-header\";s:3:\"zip\";s:28:\"packs/barber-shop-header.zip\";s:3:\"uid\";s:32:\"71c995d36d39a0e8a04cffdf753f2ba2\";s:3:\"img\";s:29:\"barber-shop-header/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;}i:253;a:25:{s:2:\"id\";s:3:\"262\";s:5:\"title\";s:23:\"Barber Shop Mobile Menu\";s:5:\"alias\";s:23:\"barber-shop-mobile-menu\";s:3:\"zip\";s:33:\"packs/barber-shop-mobile-menu.zip\";s:3:\"uid\";s:32:\"762c6fb5c6306f37becb1e55773c2592\";s:3:\"img\";s:34:\"barber-shop-mobile-menu/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;}i:254;a:25:{s:2:\"id\";s:3:\"263\";s:5:\"title\";s:24:\"Barber Shop First Screen\";s:5:\"alias\";s:24:\"barber-shop-first-screen\";s:3:\"zip\";s:34:\"packs/barber-shop-first-screen.zip\";s:3:\"uid\";s:32:\"acf70bfd64cff2c3c2ea5585223575da\";s:3:\"img\";s:35:\"barber-shop-first-screen/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;}i:255;a:25:{s:2:\"id\";s:3:\"264\";s:5:\"title\";s:17:\"Barber Shop About\";s:5:\"alias\";s:17:\"barber-shop-about\";s:3:\"zip\";s:27:\"packs/barber-shop-about.zip\";s:3:\"uid\";s:32:\"bc8b63cfc7f8c34173b4fd5b082fc05a\";s:3:\"img\";s:28:\"barber-shop-about/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;}i:256;a:25:{s:2:\"id\";s:3:\"265\";s:5:\"title\";s:20:\"Barber Shop Services\";s:5:\"alias\";s:20:\"barber-shop-services\";s:3:\"zip\";s:30:\"packs/barber-shop-services.zip\";s:3:\"uid\";s:32:\"d65121d6f84fabd812a2b621b768e10e\";s:3:\"img\";s:31:\"barber-shop-services/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;}i:257;a:25:{s:2:\"id\";s:3:\"266\";s:5:\"title\";s:19:\"Barber Shop Barbers\";s:5:\"alias\";s:19:\"barber-shop-barbers\";s:3:\"zip\";s:29:\"packs/barber-shop-barbers.zip\";s:3:\"uid\";s:32:\"003e9fec9693072119c8f8d8b6690c4d\";s:3:\"img\";s:30:\"barber-shop-barbers/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;}i:258;a:25:{s:2:\"id\";s:3:\"267\";s:5:\"title\";s:20:\"Barber Shop Contacts\";s:5:\"alias\";s:20:\"barber-shop-contacts\";s:3:\"zip\";s:30:\"packs/barber-shop-contacts.zip\";s:3:\"uid\";s:32:\"cdcc08f5d6c90dbcfd0502bda2401643\";s:3:\"img\";s:31:\"barber-shop-contacts/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;}i:259;a:25:{s:2:\"id\";s:3:\"268\";s:5:\"title\";s:18:\"Barber Shop Footer\";s:5:\"alias\";s:18:\"barber-shop-footer\";s:3:\"zip\";s:28:\"packs/barber-shop-footer.zip\";s:3:\"uid\";s:32:\"26ca5ae0de7cdbb2ca19348b6e01eda0\";s:3:\"img\";s:29:\"barber-shop-footer/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;}i:260;a:22:{s:2:\"id\";s:3:\"269\";s:5:\"title\";s:12:\"Fitness Club\";s:5:\"alias\";s:21:\"fitness-club-template\";s:3:\"zip\";s:25:\"fitness-club-template.zip\";s:3:\"uid\";s:32:\"14ea10d68d6aad1df62b3becf71df754\";s:3:\"img\";s:32:\"fitness-club-template/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/fitness-club-header-for-wordpress/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:223:\"<span class=\"ttm_content\">The Fitness Club Header is the perfect introduction to your fitness themed website. Showcase your current offers or service portfolio with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:261;a:22:{s:2:\"id\";s:3:\"270\";s:5:\"title\";s:13:\"Soccer School\";s:5:\"alias\";s:13:\"soccer-school\";s:3:\"zip\";s:17:\"soccer-school.zip\";s:3:\"uid\";s:32:\"9906b48812aff67097f990eeee42dd41\";s:3:\"img\";s:24:\"soccer-school/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/soccer-club-slider-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:228:\"<span class=\"ttm_content\">The Soccer Club Header is the perfect introduction to your Soccer School themed website. Showcase your current offers or service portfolio with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:262;a:22:{s:2:\"id\";s:3:\"271\";s:5:\"title\";s:10:\"Music Band\";s:5:\"alias\";s:19:\"music-band-template\";s:3:\"zip\";s:23:\"music-band-template.zip\";s:3:\"uid\";s:32:\"91e79657bf1b1812f8114a00ab8e0eb4\";s:3:\"img\";s:30:\"music-band-template/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/music-band-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:7:\"5.4.8.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Music Band Header is the perfect introduction to your Music Band themed website. Showcase your current songs, albums and videos with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:263;a:22:{s:2:\"id\";s:3:\"272\";s:5:\"title\";s:15:\"Restaurant Menu\";s:5:\"alias\";s:15:\"restaurant-menu\";s:3:\"zip\";s:19:\"restaurant-menu.zip\";s:3:\"uid\";s:32:\"078809cffb21b6c4d3f5aaa2daeb193d\";s:3:\"img\";s:26:\"restaurant-menu/slide1.jpg\";s:7:\"preview\";s:71:\"https://revolution.themepunch.com/restaurant-menu-slider-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.8.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:208:\"<span class=\"ttm_content\">The Restaurant Menu Header is the perfect introduction to your Restaurant themed website. Showcase your current dishes with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:264;a:22:{s:2:\"id\";s:3:\"273\";s:5:\"title\";s:16:\"Cinematic Slider\";s:5:\"alias\";s:16:\"cinematic-slider\";s:3:\"zip\";s:20:\"cinematic-slider.zip\";s:3:\"uid\";s:32:\"c53e7dcbb6b656ae7b4c91d333589838\";s:3:\"img\";s:27:\"cinematic-slider/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/cinematic-slider-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:138:\"<span class=\"ttm_content\">Bold texts and a cinematic transition effect make this slider stand out!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:265;a:22:{s:2:\"id\";s:3:\"274\";s:5:\"title\";s:17:\"3D Parallax Cubes\";s:5:\"alias\";s:17:\"3d-parallax-cubes\";s:3:\"zip\";s:21:\"3d-parallax-cubes.zip\";s:3:\"uid\";s:32:\"c5b809a1829f8f809c9a768cd3d6b3cb\";s:3:\"img\";s:28:\"3d-parallax-cubes/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/3d-parallax-cubes-slider-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">This amazing 3D cubes parallax effect can be an eye-opening intro for your website!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:266;a:25:{s:2:\"id\";s:3:\"275\";s:5:\"title\";s:33:\"Medicare Medical Services Website\";s:5:\"alias\";s:33:\"medicare-medical-services-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:41:\"medicare-medical-services-website-package\";s:3:\"img\";s:29:\"packages/medicare_package.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:267;a:25:{s:2:\"id\";s:3:\"276\";s:5:\"title\";s:13:\"Medicare Menu\";s:5:\"alias\";s:13:\"medicare-menu\";s:3:\"zip\";s:23:\"packs/medicare-menu.zip\";s:3:\"uid\";s:32:\"0e4ca8fc281e20251b3fffa19d470fed\";s:3:\"img\";s:24:\"medicare-menu/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:268;a:25:{s:2:\"id\";s:3:\"277\";s:5:\"title\";s:15:\"Medicare Header\";s:5:\"alias\";s:15:\"medicare-header\";s:3:\"zip\";s:25:\"packs/medicare-header.zip\";s:3:\"uid\";s:32:\"03e8ade247d8c96f548bc0515f34043f\";s:3:\"img\";s:26:\"medicare-header/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:269;a:25:{s:2:\"id\";s:3:\"278\";s:5:\"title\";s:14:\"Medicare About\";s:5:\"alias\";s:14:\"medicare-about\";s:3:\"zip\";s:24:\"packs/medicare-about.zip\";s:3:\"uid\";s:32:\"a3ab9e89155ef2542820343f30b29f72\";s:3:\"img\";s:25:\"medicare-about/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:270;a:25:{s:2:\"id\";s:3:\"279\";s:5:\"title\";s:18:\"Medicare Highlight\";s:5:\"alias\";s:18:\"medicare-highlight\";s:3:\"zip\";s:28:\"packs/medicare-highlight.zip\";s:3:\"uid\";s:32:\"c3c8a74e5402489f1a85a0c83890ef1f\";s:3:\"img\";s:29:\"medicare-highlight/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:271;a:25:{s:2:\"id\";s:3:\"280\";s:5:\"title\";s:17:\"Medicare Services\";s:5:\"alias\";s:17:\"medicare-services\";s:3:\"zip\";s:27:\"packs/medicare-services.zip\";s:3:\"uid\";s:32:\"8869b0834d4649dcc3221bed65980806\";s:3:\"img\";s:28:\"medicare-services/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:272;a:25:{s:2:\"id\";s:3:\"281\";s:5:\"title\";s:16:\"Medicare Doctors\";s:5:\"alias\";s:16:\"medicare-doctors\";s:3:\"zip\";s:26:\"packs/medicare-doctors.zip\";s:3:\"uid\";s:32:\"2c9d57afd64244b5f7e30b0d87c842f9\";s:3:\"img\";s:27:\"medicare-doctors/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:273;a:25:{s:2:\"id\";s:3:\"282\";s:5:\"title\";s:17:\"Medicare Research\";s:5:\"alias\";s:17:\"medicare-research\";s:3:\"zip\";s:27:\"packs/medicare-research.zip\";s:3:\"uid\";s:32:\"31e84a91fc8b8d5296e715e539a076d0\";s:3:\"img\";s:28:\"medicare-research/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:274;a:25:{s:2:\"id\";s:3:\"283\";s:5:\"title\";s:19:\"Medicare Why Choose\";s:5:\"alias\";s:18:\"medicare-whychoose\";s:3:\"zip\";s:28:\"packs/medicare-whychoose.zip\";s:3:\"uid\";s:32:\"6dad61c672127de9e35884caa45d49a0\";s:3:\"img\";s:29:\"medicare-whychoose/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:275;a:25:{s:2:\"id\";s:3:\"284\";s:5:\"title\";s:16:\"Medicare Contact\";s:5:\"alias\";s:16:\"medicare-contact\";s:3:\"zip\";s:26:\"packs/medicare-contact.zip\";s:3:\"uid\";s:32:\"89bc35ad8beb62a149c42262ae49a270\";s:3:\"img\";s:27:\"medicare-contact/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:276;a:25:{s:2:\"id\";s:3:\"285\";s:5:\"title\";s:15:\"Medicare Footer\";s:5:\"alias\";s:15:\"medicare-footer\";s:3:\"zip\";s:25:\"packs/medicare-footer.zip\";s:3:\"uid\";s:32:\"ccf63e5233b3d63009e5ee90db51b37b\";s:3:\"img\";s:26:\"medicare-footer/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:2:\"10\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:277;a:25:{s:2:\"id\";s:3:\"286\";s:5:\"title\";s:20:\"Coffee Joint Website\";s:5:\"alias\";s:20:\"coffee-joint-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:28:\"coffee-joint-website-package\";s:3:\"img\";s:27:\"packages/coffee_package.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:278;a:25:{s:2:\"id\";s:3:\"287\";s:5:\"title\";s:11:\"Coffee Menu\";s:5:\"alias\";s:11:\"coffee-menu\";s:3:\"zip\";s:21:\"packs/coffee-menu.zip\";s:3:\"uid\";s:32:\"81195cad7be3f5180a267b34ce8cf966\";s:3:\"img\";s:22:\"coffee-menu/slide1.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:279;a:25:{s:2:\"id\";s:3:\"288\";s:5:\"title\";s:13:\"Coffee Header\";s:5:\"alias\";s:13:\"coffee-header\";s:3:\"zip\";s:23:\"packs/coffee-header.zip\";s:3:\"uid\";s:32:\"5eed8adb9d3ae12168ad4735ac63eb20\";s:3:\"img\";s:24:\"coffee-header/slide1.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:280;a:25:{s:2:\"id\";s:3:\"289\";s:5:\"title\";s:17:\"Coffee Philosophy\";s:5:\"alias\";s:17:\"coffee-philosophy\";s:3:\"zip\";s:27:\"packs/coffee-philosophy.zip\";s:3:\"uid\";s:32:\"76b5ccae3fa87fd0f991b87e7ae71c27\";s:3:\"img\";s:28:\"coffee-philosophy/slide1.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:281;a:25:{s:2:\"id\";s:3:\"290\";s:5:\"title\";s:12:\"Coffee Carte\";s:5:\"alias\";s:12:\"coffee-carte\";s:3:\"zip\";s:22:\"packs/coffee-carte.zip\";s:3:\"uid\";s:32:\"470214ddd2cec585629fb79a0fd908d6\";s:3:\"img\";s:23:\"coffee-carte/slide1.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:282;a:25:{s:2:\"id\";s:3:\"291\";s:5:\"title\";s:13:\"Coffee Teaser\";s:5:\"alias\";s:13:\"coffee-teaser\";s:3:\"zip\";s:23:\"packs/coffee-teaser.zip\";s:3:\"uid\";s:32:\"2ed868896c92a7bfb6431803c79e8486\";s:3:\"img\";s:24:\"coffee-teaser/slide1.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:283;a:25:{s:2:\"id\";s:3:\"292\";s:5:\"title\";s:14:\"Coffee Find Us\";s:5:\"alias\";s:13:\"coffee-findus\";s:3:\"zip\";s:23:\"packs/coffee-findus.zip\";s:3:\"uid\";s:32:\"96d3784473dfa64bce9e1e4101919927\";s:3:\"img\";s:24:\"coffee-findus/slide1.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:284;a:25:{s:2:\"id\";s:3:\"293\";s:5:\"title\";s:13:\"Coffee Footer\";s:5:\"alias\";s:13:\"coffee-footer\";s:3:\"zip\";s:23:\"packs/coffee-footer.zip\";s:3:\"uid\";s:32:\"6027c25e87a5fe7fd8727a51c0967915\";s:3:\"img\";s:24:\"coffee-footer/slide1.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:285;a:25:{s:2:\"id\";s:3:\"294\";s:5:\"title\";s:17:\"Minimal Portfolio\";s:5:\"alias\";s:25:\"minimal-portfolio-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:25:\"minimal-portfolio-package\";s:3:\"img\";s:38:\"packages/minimal_portfolio_package.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/minimal-portfolio-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">The Minimal Portfolio template is a slide based website with additional modal detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Minimal Portfolio\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"19\";s:9:\"installed\";b:0;}i:286;a:25:{s:2:\"id\";s:3:\"295\";s:5:\"title\";s:17:\"Minimal Portfolio\";s:5:\"alias\";s:17:\"minimal-portfolio\";s:3:\"zip\";s:27:\"packs/minimal-portfolio.zip\";s:3:\"uid\";s:32:\"183b97b301d5ff0b171c067a87c8a3f5\";s:3:\"img\";s:28:\"minimal-portfolio/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/minimal-portfolio-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">The Minimal Portfolio template is a slide based website with additional modal detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Minimal Portfolio\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"19\";s:9:\"installed\";b:0;}i:287;a:25:{s:2:\"id\";s:3:\"296\";s:5:\"title\";s:23:\"Minimal Portfolio Modal\";s:5:\"alias\";s:23:\"minimal-portfolio-modal\";s:3:\"zip\";s:33:\"packs/minimal-portfolio-modal.zip\";s:3:\"uid\";s:32:\"6874e6cec3663670f209a8d8a4f26b16\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/minimal-portfolio-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">The Minimal Portfolio template is a slide based website with additional modal detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Minimal Portfolio\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"19\";s:9:\"installed\";b:0;}i:288;a:25:{s:2:\"id\";s:3:\"297\";s:5:\"title\";s:23:\"Angled Business Website\";s:5:\"alias\";s:23:\"angled-business-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:31:\"angled-business-website-package\";s:3:\"img\";s:27:\"packages/angled_package.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/angled-business-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:289;a:25:{s:2:\"id\";s:3:\"298\";s:5:\"title\";s:11:\"Angled Menu\";s:5:\"alias\";s:11:\"angled-menu\";s:3:\"zip\";s:21:\"packs/angled-menu.zip\";s:3:\"uid\";s:32:\"2fe0c4682d1231ee3918be9e4fcb1837\";s:3:\"img\";s:22:\"angled-menu/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/angled-business-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:290;a:25:{s:2:\"id\";s:3:\"299\";s:5:\"title\";s:13:\"Angled Header\";s:5:\"alias\";s:13:\"angled-header\";s:3:\"zip\";s:23:\"packs/angled-header.zip\";s:3:\"uid\";s:32:\"09462601d4edca8dff899de6f666dc47\";s:3:\"img\";s:24:\"angled-header/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/angled-business-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:291;a:25:{s:2:\"id\";s:3:\"300\";s:5:\"title\";s:11:\"Angled News\";s:5:\"alias\";s:11:\"angled-news\";s:3:\"zip\";s:21:\"packs/angled-news.zip\";s:3:\"uid\";s:32:\"b315105763ed91214cb2f0ac12615729\";s:3:\"img\";s:22:\"angled-news/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/angled-business-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:292;a:25:{s:2:\"id\";s:3:\"301\";s:5:\"title\";s:15:\"Angled Services\";s:5:\"alias\";s:15:\"angled-services\";s:3:\"zip\";s:25:\"packs/angled-services.zip\";s:3:\"uid\";s:32:\"7605651c1487e1a6c32edc70017be8ad\";s:3:\"img\";s:26:\"angled-services/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/angled-business-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:293;a:25:{s:2:\"id\";s:3:\"302\";s:5:\"title\";s:14:\"Angled Success\";s:5:\"alias\";s:14:\"angled-success\";s:3:\"zip\";s:24:\"packs/angled-success.zip\";s:3:\"uid\";s:32:\"9e3fa974a42ecf80e1ec6ff991fca430\";s:3:\"img\";s:25:\"angled-success/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/angled-business-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:294;a:25:{s:2:\"id\";s:3:\"303\";s:5:\"title\";s:13:\"Angled Footer\";s:5:\"alias\";s:13:\"angled-footer\";s:3:\"zip\";s:23:\"packs/angled-footer.zip\";s:3:\"uid\";s:32:\"aed4eaa2f7883351ba9c9947feef153e\";s:3:\"img\";s:24:\"angled-footer/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/angled-business-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:295;a:25:{s:2:\"id\";s:3:\"304\";s:5:\"title\";s:20:\"Angled Content Modal\";s:5:\"alias\";s:20:\"angled-content-modal\";s:3:\"zip\";s:30:\"packs/angled-content-modal.zip\";s:3:\"uid\";s:32:\"4ddc74515fdf84f974217e4ed47a7c66\";s:3:\"img\";s:31:\"angled-content-modal/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/angled-business-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:296;a:22:{s:2:\"id\";s:3:\"312\";s:5:\"title\";s:24:\"Retouch Before and After\";s:5:\"alias\";s:7:\"Retouch\";s:3:\"zip\";s:11:\"Retouch.zip\";s:3:\"uid\";s:32:\"58894991f1abd8b448c8d353b1b5fe76\";s:3:\"img\";s:18:\"Retouch/slide1.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/retouch-before-after-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:155:\"<span class=\"ttm_content\">The Retouch Slider is the perfect way to compare your photos before and after retouching.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-beforeafter-addon\\/revslider-beforeafter-addon.php\",\"name\":\"Before After AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:297;a:22:{s:2:\"id\";s:3:\"313\";s:5:\"title\";s:11:\"Tech Slider\";s:5:\"alias\";s:11:\"tech-slider\";s:3:\"zip\";s:15:\"tech-slider.zip\";s:3:\"uid\";s:32:\"a98e2b264f00a1116d21808c6a543162\";s:3:\"img\";s:22:\"tech-slider/slide1.jpg\";s:7:\"preview\";s:63:\"http://revolution.themepunch.com/tech-showcase-slider-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:153:\"<span class=\"ttm_content\">This classic slider module with sleek device mockups features a smooth parallax effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:298;a:25:{s:2:\"id\";s:3:\"314\";s:5:\"title\";s:19:\"Peak Agency Website\";s:5:\"alias\";s:19:\"peak-agency-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:27:\"peak-agency-website-package\";s:3:\"img\";s:25:\"packages/peak_package.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/peak-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:129:\"<span class=\"ttm_content\">The Peak Agency Website template is a minimal, light one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Peak Agency\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"22\";s:9:\"installed\";b:0;}i:299;a:25:{s:2:\"id\";s:3:\"315\";s:5:\"title\";s:11:\"Peak Header\";s:5:\"alias\";s:11:\"peak-header\";s:3:\"zip\";s:21:\"packs/peak-header.zip\";s:3:\"uid\";s:32:\"b721bd612e9fbc5182418ad3fd7d0808\";s:3:\"img\";s:22:\"peak-header/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/peak-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:129:\"<span class=\"ttm_content\">The Peak Agency Website template is a minimal, light one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Peak Agency\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"22\";s:9:\"installed\";b:0;}i:300;a:25:{s:2:\"id\";s:3:\"316\";s:5:\"title\";s:10:\"Peak About\";s:5:\"alias\";s:10:\"peak-about\";s:3:\"zip\";s:20:\"packs/peak-about.zip\";s:3:\"uid\";s:32:\"7e68b1012fb03490d45c7f79e8cb1b19\";s:3:\"img\";s:21:\"peak-about/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/peak-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:129:\"<span class=\"ttm_content\">The Peak Agency Website template is a minimal, light one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Peak Agency\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"22\";s:9:\"installed\";b:0;}i:301;a:25:{s:2:\"id\";s:3:\"317\";s:5:\"title\";s:14:\"Peak Portfolio\";s:5:\"alias\";s:14:\"peak-portfolio\";s:3:\"zip\";s:24:\"packs/peak-portfolio.zip\";s:3:\"uid\";s:32:\"6198d1885ba9e95221c33e404f21bdbc\";s:3:\"img\";s:25:\"peak-portfolio/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/peak-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:129:\"<span class=\"ttm_content\">The Peak Agency Website template is a minimal, light one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Peak Agency\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"22\";s:9:\"installed\";b:0;}i:302;a:25:{s:2:\"id\";s:3:\"318\";s:5:\"title\";s:11:\"Peak Footer\";s:5:\"alias\";s:11:\"peak-footer\";s:3:\"zip\";s:21:\"packs/peak-footer.zip\";s:3:\"uid\";s:32:\"2dead6897ad3b3a709b380d81242f76b\";s:3:\"img\";s:22:\"peak-footer/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/peak-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:129:\"<span class=\"ttm_content\">The Peak Agency Website template is a minimal, light one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Peak Agency\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"22\";s:9:\"installed\";b:0;}i:303;a:25:{s:2:\"id\";s:3:\"319\";s:5:\"title\";s:24:\"Modern Portfolio Website\";s:5:\"alias\";s:24:\"modern-portfolio-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:32:\"modern-portfolio-website-package\";s:3:\"img\";s:30:\"packages/portfolio-package.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/modern-portfolio-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A modern portfolio template with fancy scroll animations and a colorful design.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"Modern Portfolio\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"23\";s:9:\"installed\";b:0;}i:304;a:25:{s:2:\"id\";s:3:\"320\";s:5:\"title\";s:17:\"Portfolio Welcome\";s:5:\"alias\";s:17:\"portfolio-welcome\";s:3:\"zip\";s:27:\"packs/portfolio-welcome.zip\";s:3:\"uid\";s:32:\"97336b8785e4a7b27facaf1547e0464d\";s:3:\"img\";s:28:\"portfolio-welcome/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/modern-portfolio-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A modern portfolio template with fancy scroll animations and a colorful design.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"Modern Portfolio\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"23\";s:9:\"installed\";b:0;}i:305;a:25:{s:2:\"id\";s:3:\"321\";s:5:\"title\";s:15:\"Portfolio About\";s:5:\"alias\";s:15:\"portfolio-about\";s:3:\"zip\";s:25:\"packs/portfolio-about.zip\";s:3:\"uid\";s:32:\"5d3a4724fd453de5313ceb6696c1db62\";s:3:\"img\";s:26:\"portfolio-about/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/modern-portfolio-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A modern portfolio template with fancy scroll animations and a colorful design.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"Modern Portfolio\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"23\";s:9:\"installed\";b:0;}i:306;a:25:{s:2:\"id\";s:3:\"322\";s:5:\"title\";s:21:\"Portfolio Works Title\";s:5:\"alias\";s:21:\"portfolio-works-title\";s:3:\"zip\";s:31:\"packs/portfolio-works-title.zip\";s:3:\"uid\";s:32:\"cbb5c6e875cc1f25b463fdf89cabef28\";s:3:\"img\";s:32:\"portfolio-works-title/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/modern-portfolio-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A modern portfolio template with fancy scroll animations and a colorful design.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"Modern Portfolio\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"23\";s:9:\"installed\";b:0;}i:307;a:25:{s:2:\"id\";s:3:\"323\";s:5:\"title\";s:23:\"Portfolio Works Content\";s:5:\"alias\";s:23:\"portfolio-works-content\";s:3:\"zip\";s:33:\"packs/portfolio-works-content.zip\";s:3:\"uid\";s:32:\"5c87311128c7794ffa6ee07ea0648082\";s:3:\"img\";s:34:\"portfolio-works-content/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/modern-portfolio-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A modern portfolio template with fancy scroll animations and a colorful design.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"Modern Portfolio\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"23\";s:9:\"installed\";b:0;}i:308;a:25:{s:2:\"id\";s:3:\"324\";s:5:\"title\";s:18:\"Portfolio Contacts\";s:5:\"alias\";s:18:\"portfolio-contacts\";s:3:\"zip\";s:28:\"packs/portfolio-contacts.zip\";s:3:\"uid\";s:32:\"bd81feffad83b69218f7e837478038e5\";s:3:\"img\";s:29:\"portfolio-contacts/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/modern-portfolio-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A modern portfolio template with fancy scroll animations and a colorful design.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"Modern Portfolio\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"23\";s:9:\"installed\";b:0;}i:309;a:25:{s:2:\"id\";s:3:\"325\";s:5:\"title\";s:18:\"App Studio Website\";s:5:\"alias\";s:18:\"app-studio-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"app-studio-website-package\";s:3:\"img\";s:31:\"packages/App_Studio_package.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/app-studio-website/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">A modern one-page presentation website to present your mobile app development team.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:10:\"App Studio\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"24\";s:9:\"installed\";b:0;}i:310;a:25:{s:2:\"id\";s:3:\"326\";s:5:\"title\";s:18:\"App Studio Welcome\";s:5:\"alias\";s:18:\"App-Studio-Welcome\";s:3:\"zip\";s:28:\"packs/App-Studio-Welcome.zip\";s:3:\"uid\";s:32:\"2ce0f3c54214b04e6c3a9becfd59730c\";s:3:\"img\";s:29:\"App-Studio-Welcome/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/app-studio-website/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">A modern one-page presentation website to present your mobile app development team.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:10:\"App Studio\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"24\";s:9:\"installed\";b:0;}i:311;a:25:{s:2:\"id\";s:3:\"327\";s:5:\"title\";s:19:\"App Studio Services\";s:5:\"alias\";s:19:\"App-Studio-Services\";s:3:\"zip\";s:29:\"packs/App-Studio-Services.zip\";s:3:\"uid\";s:32:\"5df7776271ec69d2f9edaa6b842715a9\";s:3:\"img\";s:30:\"App-Studio-Services/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/app-studio-website/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">A modern one-page presentation website to present your mobile app development team.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:10:\"App Studio\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"24\";s:9:\"installed\";b:0;}i:312;a:25:{s:2:\"id\";s:3:\"328\";s:5:\"title\";s:16:\"App Studio About\";s:5:\"alias\";s:16:\"App-Studio-About\";s:3:\"zip\";s:26:\"packs/App-Studio-About.zip\";s:3:\"uid\";s:32:\"af8b84dc116c629df7bd89fc69271a2e\";s:3:\"img\";s:27:\"App-Studio-About/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/app-studio-website/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">A modern one-page presentation website to present your mobile app development team.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:10:\"App Studio\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"24\";s:9:\"installed\";b:0;}i:313;a:25:{s:2:\"id\";s:3:\"329\";s:5:\"title\";s:19:\"App Studio Contacts\";s:5:\"alias\";s:19:\"App-Studio-Contacts\";s:3:\"zip\";s:29:\"packs/App-Studio-Contacts.zip\";s:3:\"uid\";s:32:\"afbbd2214c983d314f3215a00db9198d\";s:3:\"img\";s:30:\"App-Studio-Contacts/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/app-studio-website/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">A modern one-page presentation website to present your mobile app development team.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:10:\"App Studio\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"24\";s:9:\"installed\";b:0;}i:314;a:22:{s:2:\"id\";s:3:\"330\";s:5:\"title\";s:14:\"Cube Animation\";s:5:\"alias\";s:14:\"cube-animation\";s:3:\"zip\";s:18:\"cube-animation.zip\";s:3:\"uid\";s:32:\"c03dd3cfc60479dfc6d79ddb64fa0ec5\";s:3:\"img\";s:25:\"cube-animation/slide1.jpg\";s:7:\"preview\";s:65:\"https://revolution.themepunch.com/cube-animation-slider-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:155:\"<span class=\"ttm_content\">A modern slider with text elements, cube animations and a striking call to action button.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:315;a:25:{s:2:\"id\";s:3:\"331\";s:5:\"title\";s:13:\"Basic Website\";s:5:\"alias\";s:13:\"basic-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:21:\"basic-website-package\";s:3:\"img\";s:26:\"packages/basic_package.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;}i:316;a:25:{s:2:\"id\";s:3:\"332\";s:5:\"title\";s:10:\"Basic Menu\";s:5:\"alias\";s:10:\"basic-menu\";s:3:\"zip\";s:20:\"packs/basic-menu.zip\";s:3:\"uid\";s:32:\"39277f53b2cb5ac644a1649b47c37270\";s:3:\"img\";s:21:\"basic-menu/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;}i:317;a:25:{s:2:\"id\";s:3:\"333\";s:5:\"title\";s:12:\"Basic Header\";s:5:\"alias\";s:12:\"basic-header\";s:3:\"zip\";s:22:\"packs/basic-header.zip\";s:3:\"uid\";s:32:\"ad7a32dbccb0bdf9de64cf2adfa950a2\";s:3:\"img\";s:23:\"basic-header/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;}i:318;a:25:{s:2:\"id\";s:3:\"334\";s:5:\"title\";s:13:\"Basic Content\";s:5:\"alias\";s:13:\"basic-content\";s:3:\"zip\";s:23:\"packs/basic-content.zip\";s:3:\"uid\";s:32:\"0b12f3b183a3c8206e3a7b28d2d93108\";s:3:\"img\";s:24:\"basic-content/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;}i:319;a:25:{s:2:\"id\";s:3:\"335\";s:5:\"title\";s:14:\"Basic Carousel\";s:5:\"alias\";s:14:\"basic-carousel\";s:3:\"zip\";s:24:\"packs/basic-carousel.zip\";s:3:\"uid\";s:32:\"e4abb5c6d5cf914530575a982d3dfc14\";s:3:\"img\";s:25:\"basic-carousel/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;}i:320;a:25:{s:2:\"id\";s:3:\"336\";s:5:\"title\";s:13:\"Basic Callout\";s:5:\"alias\";s:13:\"basic-callout\";s:3:\"zip\";s:23:\"packs/basic-callout.zip\";s:3:\"uid\";s:32:\"2ccc208b9322f5435d0f4ff64c6d9dab\";s:3:\"img\";s:24:\"basic-callout/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;}i:321;a:25:{s:2:\"id\";s:3:\"337\";s:5:\"title\";s:10:\"Basic Grid\";s:5:\"alias\";s:10:\"basic-grid\";s:3:\"zip\";s:20:\"packs/basic-grid.zip\";s:3:\"uid\";s:32:\"3cb4b41d2992eba012921b8fb7c96daa\";s:3:\"img\";s:21:\"basic-grid/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;}i:322;a:25:{s:2:\"id\";s:3:\"338\";s:5:\"title\";s:17:\"Basic Video Block\";s:5:\"alias\";s:17:\"basic-video-block\";s:3:\"zip\";s:27:\"packs/basic-video-block.zip\";s:3:\"uid\";s:32:\"e7c1d42b21819741f3e72c1325dae5ed\";s:3:\"img\";s:28:\"basic-video-block/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;}i:323;a:25:{s:2:\"id\";s:3:\"339\";s:5:\"title\";s:12:\"Basic Footer\";s:5:\"alias\";s:12:\"basic-footer\";s:3:\"zip\";s:22:\"packs/basic-footer.zip\";s:3:\"uid\";s:32:\"ed8f6a554775ebace558af2f4f2dcbac\";s:3:\"img\";s:23:\"basic-footer/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;}i:324;a:25:{s:2:\"id\";s:3:\"340\";s:5:\"title\";s:14:\"Basic Lightbox\";s:5:\"alias\";s:14:\"basic-lightbox\";s:3:\"zip\";s:24:\"packs/basic-lightbox.zip\";s:3:\"uid\";s:32:\"e4b025b300b1a8f417d04eb80113fac2\";s:3:\"img\";s:25:\"basic-lightbox/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;}i:325;a:22:{s:2:\"id\";s:3:\"341\";s:5:\"title\";s:13:\"Nature Slider\";s:5:\"alias\";s:13:\"nature-slider\";s:3:\"zip\";s:17:\"nature-slider.zip\";s:3:\"uid\";s:32:\"eef1a4584ec1c3b8c26c305cca44e805\";s:3:\"img\";s:24:\"nature-slider/slide1.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/nature-explorer-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:151:\"<span class=\"ttm_content\">The Nature Explorer Slider Template uses the Distortion and Particle Effects Add-Ons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:356:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-liquideffect-addon\\/revslider-liquideffect-addon.php\",\"name\":\"Distortion Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:326;a:22:{s:2:\"id\";s:3:\"342\";s:5:\"title\";s:11:\"Art Gallery\";s:5:\"alias\";s:11:\"art-gallery\";s:3:\"zip\";s:15:\"art-gallery.zip\";s:3:\"uid\";s:32:\"b8c5095ae3407337e6e5b2a8515e7d6e\";s:3:\"img\";s:22:\"art-gallery/slide1.jpg\";s:7:\"preview\";s:62:\"https://revolution.themepunch.com/art-gallery-slider-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:6:\"6.2.22\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A modern slider with large, geometric elements and interesting mask animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:327;a:25:{s:2:\"id\";s:3:\"343\";s:5:\"title\";s:20:\"Construction Company\";s:5:\"alias\";s:28:\"construction-company-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:36:\"construction-company-website-package\";s:3:\"img\";s:33:\"packages/construction_package.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/construction-company-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:244:\"<span class=\"ttm_content\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Construction Company\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"26\";s:9:\"installed\";b:0;}i:328;a:25:{s:2:\"id\";s:3:\"344\";s:5:\"title\";s:19:\"Construction Header\";s:5:\"alias\";s:19:\"Construction-Header\";s:3:\"zip\";s:29:\"packs/Construction-Header.zip\";s:3:\"uid\";s:32:\"5c77de774b8f5487c1276c4a7b3dc80c\";s:3:\"img\";s:30:\"Construction-Header/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/construction-company-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:244:\"<span class=\"ttm_content\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Construction Company\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"26\";s:9:\"installed\";b:0;}i:329;a:25:{s:2:\"id\";s:3:\"345\";s:5:\"title\";s:17:\"Construction Home\";s:5:\"alias\";s:17:\"Construction-Home\";s:3:\"zip\";s:27:\"packs/Construction-Home.zip\";s:3:\"uid\";s:32:\"fcb277f0c07dad270d2a7cef4431bef8\";s:3:\"img\";s:28:\"Construction-Home/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/construction-company-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:244:\"<span class=\"ttm_content\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Construction Company\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"26\";s:9:\"installed\";b:0;}i:330;a:25:{s:2:\"id\";s:3:\"346\";s:5:\"title\";s:21:\"Construction Projects\";s:5:\"alias\";s:21:\"Construction-Projects\";s:3:\"zip\";s:31:\"packs/Construction-Projects.zip\";s:3:\"uid\";s:32:\"0c847173c3739f79778dc2c0fc9704e4\";s:3:\"img\";s:32:\"Construction-Projects/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/construction-company-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:244:\"<span class=\"ttm_content\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Construction Company\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"26\";s:9:\"installed\";b:0;}i:331;a:25:{s:2:\"id\";s:3:\"347\";s:5:\"title\";s:20:\"Construction History\";s:5:\"alias\";s:20:\"Construction-History\";s:3:\"zip\";s:30:\"packs/Construction-History.zip\";s:3:\"uid\";s:32:\"758da120c4b6c5606692faf0aa43aac6\";s:3:\"img\";s:31:\"Construction-History/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/construction-company-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:244:\"<span class=\"ttm_content\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Construction Company\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"26\";s:9:\"installed\";b:0;}i:332;a:25:{s:2:\"id\";s:3:\"348\";s:5:\"title\";s:21:\"Construction Services\";s:5:\"alias\";s:21:\"Construction-Services\";s:3:\"zip\";s:31:\"packs/Construction-Services.zip\";s:3:\"uid\";s:32:\"5ad5b841c1d89e97ddbf972c8b11abd4\";s:3:\"img\";s:32:\"Construction-Services/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/construction-company-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:244:\"<span class=\"ttm_content\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Construction Company\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"26\";s:9:\"installed\";b:0;}i:333;a:25:{s:2:\"id\";s:3:\"349\";s:5:\"title\";s:21:\"Construction Contacts\";s:5:\"alias\";s:21:\"Construction-Contacts\";s:3:\"zip\";s:31:\"packs/Construction-Contacts.zip\";s:3:\"uid\";s:32:\"b8c3c34046bb91ebb243e4da64745d37\";s:3:\"img\";s:32:\"Construction-Contacts/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/construction-company-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:244:\"<span class=\"ttm_content\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Construction Company\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"26\";s:9:\"installed\";b:0;}i:334;a:22:{s:2:\"id\";s:3:\"350\";s:5:\"title\";s:22:\"Classic Cars Evolution\";s:5:\"alias\";s:22:\"Classic-Cars-Evolution\";s:3:\"zip\";s:26:\"Classic-Cars-Evolution.zip\";s:3:\"uid\";s:32:\"7061757f128fd624b0227715dab73b74\";s:3:\"img\";s:33:\"Classic-Cars-Evolution/slide1.jpg\";s:7:\"preview\";s:65:\"https://revolution.themepunch.com/classic-cars-before-after-hero/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:156:\"<span class=\"ttm_content\">The Classic Cars Evolution Slider is a great example of our popular before & after Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-beforeafter-addon\\/revslider-beforeafter-addon.php\",\"name\":\"Before After AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:335;a:22:{s:2:\"id\";s:3:\"351\";s:5:\"title\";s:21:\"404 Error Space Theme\";s:5:\"alias\";s:21:\"404-Error-Space-Theme\";s:3:\"zip\";s:25:\"404-Error-Space-Theme.zip\";s:3:\"uid\";s:32:\"6412adc7ec025826328e40e552a14e1e\";s:3:\"img\";s:32:\"404-Error-Space-Theme/slide1.jpg\";s:7:\"preview\";s:49:\"https://revolution.themepunch.com/404-error-page/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">The Classic Cars Evolution Slider is the perfect way to make your error page more beautiful.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:336;a:25:{s:2:\"id\";s:3:\"352\";s:5:\"title\";s:12:\"Landing Page\";s:5:\"alias\";s:20:\"landing-page-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:28:\"landing-page-website-package\";s:3:\"img\";s:23:\"packages/lp_package.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:337;a:25:{s:2:\"id\";s:3:\"353\";s:5:\"title\";s:17:\"Landing Page Hero\";s:5:\"alias\";s:17:\"landing-page-hero\";s:3:\"zip\";s:27:\"packs/landing-page-hero.zip\";s:3:\"uid\";s:32:\"d328635caa20da7ee8a3ab687f8656ff\";s:3:\"img\";s:28:\"landing-page-hero/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:338;a:25:{s:2:\"id\";s:3:\"354\";s:5:\"title\";s:21:\"Landing Page Features\";s:5:\"alias\";s:21:\"landing-page-features\";s:3:\"zip\";s:31:\"packs/landing-page-features.zip\";s:3:\"uid\";s:32:\"6552bc72abace10918a64866d9bb79c1\";s:3:\"img\";s:32:\"landing-page-features/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:339;a:25:{s:2:\"id\";s:3:\"355\";s:5:\"title\";s:20:\"Landing Page Callout\";s:5:\"alias\";s:20:\"landing-page-callout\";s:3:\"zip\";s:30:\"packs/landing-page-callout.zip\";s:3:\"uid\";s:32:\"c5b101ea5471e7409ae7effa8d45fbcf\";s:3:\"img\";s:31:\"landing-page-callout/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:340;a:25:{s:2:\"id\";s:3:\"356\";s:5:\"title\";s:20:\"Landing Page Content\";s:5:\"alias\";s:20:\"landing-page-content\";s:3:\"zip\";s:30:\"packs/landing-page-content.zip\";s:3:\"uid\";s:32:\"34da8057a6bb3677c9adf9f18ffc6cf0\";s:3:\"img\";s:31:\"landing-page-content/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:341;a:25:{s:2:\"id\";s:3:\"357\";s:5:\"title\";s:25:\"Landing Page Testimonials\";s:5:\"alias\";s:25:\"landing-page-testimonials\";s:3:\"zip\";s:35:\"packs/landing-page-testimonials.zip\";s:3:\"uid\";s:32:\"a83606e311cd5115422d86f04890cbf1\";s:3:\"img\";s:36:\"landing-page-testimonials/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:342;a:25:{s:2:\"id\";s:3:\"358\";s:5:\"title\";s:27:\"Landing Page Call to Action\";s:5:\"alias\";s:27:\"landing-page-call-to-action\";s:3:\"zip\";s:37:\"packs/landing-page-call-to-action.zip\";s:3:\"uid\";s:32:\"adfb456b27fa7eb6b1415d8f80836f05\";s:3:\"img\";s:38:\"landing-page-call-to-action/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:343;a:25:{s:2:\"id\";s:3:\"359\";s:5:\"title\";s:17:\"Landing Page Help\";s:5:\"alias\";s:17:\"landing-page-help\";s:3:\"zip\";s:27:\"packs/landing-page-help.zip\";s:3:\"uid\";s:32:\"ca502431f9b7f6249d99b02464de2dd7\";s:3:\"img\";s:28:\"landing-page-help/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:344;a:25:{s:2:\"id\";s:3:\"360\";s:5:\"title\";s:19:\"Landing Page Footer\";s:5:\"alias\";s:19:\"landing-page-footer\";s:3:\"zip\";s:29:\"packs/landing-page-footer.zip\";s:3:\"uid\";s:32:\"2a6afc371dbd60cb117f8a0f5d09eac9\";s:3:\"img\";s:30:\"landing-page-footer/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:345;a:25:{s:2:\"id\";s:3:\"361\";s:5:\"title\";s:24:\"Landing Page Price Modal\";s:5:\"alias\";s:24:\"landing-page-price-modal\";s:3:\"zip\";s:34:\"packs/landing-page-price-modal.zip\";s:3:\"uid\";s:32:\"a6c5c0430b46dd4e6e68416964a8c54d\";s:3:\"img\";s:35:\"landing-page-price-modal/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:346;a:25:{s:2:\"id\";s:3:\"371\";s:5:\"title\";s:17:\"Corporate Website\";s:5:\"alias\";s:17:\"corporate-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:25:\"corporate-website-package\";s:3:\"img\";s:30:\"packages/corporate-website.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:173:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:347;a:25:{s:2:\"id\";s:3:\"372\";s:5:\"title\";s:16:\"Corporate Header\";s:5:\"alias\";s:16:\"Corporate-Header\";s:3:\"zip\";s:26:\"packs/Corporate-Header.zip\";s:3:\"uid\";s:32:\"04f868e3812a1681f00ab89580e5d1f8\";s:3:\"img\";s:27:\"Corporate-Header/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:348;a:25:{s:2:\"id\";s:3:\"373\";s:5:\"title\";s:24:\"Corporate Welcome Screen\";s:5:\"alias\";s:24:\"Corporate-Welcome-Screen\";s:3:\"zip\";s:34:\"packs/Corporate-Welcome-Screen.zip\";s:3:\"uid\";s:32:\"052afe98ef819f7ace041dbbdb749639\";s:3:\"img\";s:35:\"Corporate-Welcome-Screen/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:173:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:349;a:25:{s:2:\"id\";s:3:\"374\";s:5:\"title\";s:15:\"Corporate About\";s:5:\"alias\";s:15:\"Corporate-About\";s:3:\"zip\";s:25:\"packs/Corporate-About.zip\";s:3:\"uid\";s:32:\"7bf5f8f6d4cc3016cea86289cb46e5b6\";s:3:\"img\";s:26:\"Corporate-About/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:350;a:25:{s:2:\"id\";s:3:\"375\";s:5:\"title\";s:19:\"Corporate Portfolio\";s:5:\"alias\";s:19:\"Corporate-Portfolio\";s:3:\"zip\";s:29:\"packs/Corporate-Portfolio.zip\";s:3:\"uid\";s:32:\"612c2bd784fea81392dda1644a3c3cf3\";s:3:\"img\";s:30:\"Corporate-Portfolio/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:351;a:25:{s:2:\"id\";s:3:\"376\";s:5:\"title\";s:15:\"Corporate Chart\";s:5:\"alias\";s:15:\"Corporate-Chart\";s:3:\"zip\";s:25:\"packs/Corporate-Chart.zip\";s:3:\"uid\";s:32:\"4d27d9b3b2cfcce750e526aafb322a9f\";s:3:\"img\";s:26:\"Corporate-Chart/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:352;a:25:{s:2:\"id\";s:3:\"377\";s:5:\"title\";s:14:\"Corporate News\";s:5:\"alias\";s:14:\"Corporate-News\";s:3:\"zip\";s:24:\"packs/Corporate-News.zip\";s:3:\"uid\";s:32:\"bb65ed57a0d4db795d8b738f0a92f2d7\";s:3:\"img\";s:25:\"Corporate-News/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:353;a:25:{s:2:\"id\";s:3:\"378\";s:5:\"title\";s:16:\"Corporate Hiring\";s:5:\"alias\";s:16:\"Corporate-Hiring\";s:3:\"zip\";s:26:\"packs/Corporate-Hiring.zip\";s:3:\"uid\";s:32:\"136cf1a91604e819089eb3573a6e100a\";s:3:\"img\";s:27:\"Corporate-Hiring/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:354;a:25:{s:2:\"id\";s:3:\"379\";s:5:\"title\";s:22:\"Corporate Testimonials\";s:5:\"alias\";s:22:\"Corporate-Testimonials\";s:3:\"zip\";s:32:\"packs/Corporate-Testimonials.zip\";s:3:\"uid\";s:32:\"b17aec0afdc31e37359cfa406164463c\";s:3:\"img\";s:33:\"Corporate-Testimonials/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:355;a:25:{s:2:\"id\";s:3:\"380\";s:5:\"title\";s:15:\"Corporate Store\";s:5:\"alias\";s:15:\"Corporate-Store\";s:3:\"zip\";s:25:\"packs/Corporate-Store.zip\";s:3:\"uid\";s:32:\"6240b14620ddc634736716e0cdfdeb31\";s:3:\"img\";s:26:\"Corporate-Store/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:356;a:25:{s:2:\"id\";s:3:\"381\";s:5:\"title\";s:17:\"Corporate Support\";s:5:\"alias\";s:17:\"Corporate-Support\";s:3:\"zip\";s:27:\"packs/Corporate-Support.zip\";s:3:\"uid\";s:32:\"9424292a78076ce68c2faf587b26cdad\";s:3:\"img\";s:28:\"Corporate-Support/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"10\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:357;a:25:{s:2:\"id\";s:3:\"382\";s:5:\"title\";s:14:\"Corporate Team\";s:5:\"alias\";s:14:\"Corporate-Team\";s:3:\"zip\";s:24:\"packs/Corporate-Team.zip\";s:3:\"uid\";s:32:\"4fafe469b5a0a2545625c3f6d7ff3b9e\";s:3:\"img\";s:25:\"Corporate-Team/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"11\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:358;a:25:{s:2:\"id\";s:3:\"383\";s:5:\"title\";s:33:\"Corporate Selected Projects Title\";s:5:\"alias\";s:33:\"Corporate-Selected-Projects-Title\";s:3:\"zip\";s:43:\"packs/Corporate-Selected-Projects-Title.zip\";s:3:\"uid\";s:32:\"0ed3c41f51e6bf404c2fe179fa8d8ceb\";s:3:\"img\";s:44:\"Corporate-Selected-Projects-Title/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"12\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:359;a:25:{s:2:\"id\";s:3:\"384\";s:5:\"title\";s:27:\"Corporate Selected Projects\";s:5:\"alias\";s:27:\"Corporate-Selected-Projects\";s:3:\"zip\";s:37:\"packs/Corporate-Selected-Projects.zip\";s:3:\"uid\";s:32:\"1096c78d5f007f3900228a4092515e2e\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"13\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:360;a:25:{s:2:\"id\";s:3:\"385\";s:5:\"title\";s:17:\"Corporate Clients\";s:5:\"alias\";s:17:\"Corporate-Clients\";s:3:\"zip\";s:27:\"packs/Corporate-Clients.zip\";s:3:\"uid\";s:32:\"60fe3a311195bf4dba3e50bd1ab98574\";s:3:\"img\";s:28:\"Corporate-Clients/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"14\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:361;a:25:{s:2:\"id\";s:3:\"386\";s:5:\"title\";s:20:\"Corporate Text Block\";s:5:\"alias\";s:20:\"Corporate-Text-Block\";s:3:\"zip\";s:30:\"packs/Corporate-Text-Block.zip\";s:3:\"uid\";s:32:\"93b68bb23d65fd1028b6b5f6d19b85b5\";s:3:\"img\";s:31:\"Corporate-Text-Block/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"15\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:362;a:25:{s:2:\"id\";s:3:\"387\";s:5:\"title\";s:20:\"Corporate Mobile App\";s:5:\"alias\";s:20:\"Corporate-Mobile-App\";s:3:\"zip\";s:30:\"packs/Corporate-Mobile-App.zip\";s:3:\"uid\";s:32:\"e592369d233bea673403daa15c6e498a\";s:3:\"img\";s:31:\"Corporate-Mobile-App/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"16\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:363;a:25:{s:2:\"id\";s:3:\"388\";s:5:\"title\";s:18:\"Corporate Contacts\";s:5:\"alias\";s:18:\"Corporate-Contacts\";s:3:\"zip\";s:28:\"packs/Corporate-Contacts.zip\";s:3:\"uid\";s:32:\"91ae9488b54b7020f8ae9dfbfd6c563a\";s:3:\"img\";s:29:\"Corporate-Contacts/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"17\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:364;a:25:{s:2:\"id\";s:3:\"389\";s:5:\"title\";s:16:\"Corporate Footer\";s:5:\"alias\";s:16:\"Corporate-Footer\";s:3:\"zip\";s:26:\"packs/Corporate-Footer.zip\";s:3:\"uid\";s:32:\"a01df90af203f06194c1a18745d79861\";s:3:\"img\";s:27:\"Corporate-Footer/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"18\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:365;a:25:{s:2:\"id\";s:3:\"390\";s:5:\"title\";s:23:\"Corporate Scroll To Top\";s:5:\"alias\";s:23:\"Corporate-Scroll-To-Top\";s:3:\"zip\";s:33:\"packs/Corporate-Scroll-To-Top.zip\";s:3:\"uid\";s:32:\"2d68f6e4590a9a445e6eb055dfee88ba\";s:3:\"img\";s:34:\"Corporate-Scroll-To-Top/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"19\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:366;a:25:{s:2:\"id\";s:3:\"402\";s:5:\"title\";s:23:\"Brutal Website Template\";s:5:\"alias\";s:23:\"brutal-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:31:\"brutal-website-template-package\";s:3:\"img\";s:36:\"packages/brutal-website-template.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/brutal-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;}i:367;a:25:{s:2:\"id\";s:3:\"403\";s:5:\"title\";s:11:\"Brutal Menu\";s:5:\"alias\";s:11:\"brutal-menu\";s:3:\"zip\";s:21:\"packs/brutal-menu.zip\";s:3:\"uid\";s:32:\"04b21c7aee2479793336e964230d6e3f\";s:3:\"img\";s:22:\"brutal-menu/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/brutal-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;}i:368;a:25:{s:2:\"id\";s:3:\"404\";s:5:\"title\";s:11:\"Brutal Hero\";s:5:\"alias\";s:11:\"brutal-hero\";s:3:\"zip\";s:21:\"packs/brutal-hero.zip\";s:3:\"uid\";s:32:\"a342ad01054b97bac7980fdf9e275b34\";s:3:\"img\";s:22:\"brutal-hero/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/brutal-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;}i:369;a:25:{s:2:\"id\";s:3:\"405\";s:5:\"title\";s:12:\"Brutal About\";s:5:\"alias\";s:12:\"brutal-about\";s:3:\"zip\";s:22:\"packs/brutal-about.zip\";s:3:\"uid\";s:32:\"a3e1cd2e36c9a783c1932fdafe2e4434\";s:3:\"img\";s:23:\"brutal-about/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/brutal-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;}i:370;a:25:{s:2:\"id\";s:3:\"406\";s:5:\"title\";s:16:\"Brutal Highlight\";s:5:\"alias\";s:16:\"brutal-highlight\";s:3:\"zip\";s:26:\"packs/brutal-highlight.zip\";s:3:\"uid\";s:32:\"b7f8522dcb4636467633bd3b14f4e3e9\";s:3:\"img\";s:27:\"brutal-highlight/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/brutal-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;}i:371;a:25:{s:2:\"id\";s:3:\"407\";s:5:\"title\";s:15:\"Brutal Projects\";s:5:\"alias\";s:15:\"brutal-projects\";s:3:\"zip\";s:25:\"packs/brutal-projects.zip\";s:3:\"uid\";s:32:\"1a462e91373042193ca5d623dd8e8a47\";s:3:\"img\";s:26:\"brutal-projects/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/brutal-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;}i:372;a:25:{s:2:\"id\";s:3:\"408\";s:5:\"title\";s:15:\"Brutal Services\";s:5:\"alias\";s:15:\"brutal-services\";s:3:\"zip\";s:25:\"packs/brutal-services.zip\";s:3:\"uid\";s:32:\"cbeeb1e7a5c2842b155fe13acb7c165d\";s:3:\"img\";s:26:\"brutal-services/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/brutal-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;}i:373;a:25:{s:2:\"id\";s:3:\"409\";s:5:\"title\";s:14:\"Brutal Callout\";s:5:\"alias\";s:14:\"brutal-callout\";s:3:\"zip\";s:24:\"packs/brutal-callout.zip\";s:3:\"uid\";s:32:\"31b6dafdb2dfb548152653e60df5a3bc\";s:3:\"img\";s:25:\"brutal-callout/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/brutal-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;}i:374;a:25:{s:2:\"id\";s:3:\"410\";s:5:\"title\";s:13:\"Brutal Footer\";s:5:\"alias\";s:13:\"brutal-footer\";s:3:\"zip\";s:23:\"packs/brutal-footer.zip\";s:3:\"uid\";s:32:\"07559f0c574e3dd95b2d40d72cbb01bc\";s:3:\"img\";s:24:\"brutal-footer/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/brutal-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;}i:375;a:25:{s:2:\"id\";s:3:\"411\";s:5:\"title\";s:23:\"Church Website Template\";s:5:\"alias\";s:23:\"church-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:31:\"church-website-template-package\";s:3:\"img\";s:36:\"packages/church-website-template.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:376;a:25:{s:2:\"id\";s:3:\"412\";s:5:\"title\";s:13:\"Church Header\";s:5:\"alias\";s:13:\"Church-Header\";s:3:\"zip\";s:23:\"packs/Church-Header.zip\";s:3:\"uid\";s:32:\"c14289117e1e2b9ee716fb99146b2e03\";s:3:\"img\";s:24:\"Church-Header/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:377;a:25:{s:2:\"id\";s:3:\"413\";s:5:\"title\";s:22:\"Church Upcoming Events\";s:5:\"alias\";s:22:\"Church-Upcoming-Events\";s:3:\"zip\";s:32:\"packs/Church-Upcoming-Events.zip\";s:3:\"uid\";s:32:\"056a26efddae92973fee4ee5cfa75f10\";s:3:\"img\";s:33:\"Church-Upcoming-Events/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:378;a:25:{s:2:\"id\";s:3:\"414\";s:5:\"title\";s:12:\"Church About\";s:5:\"alias\";s:12:\"Church-About\";s:3:\"zip\";s:22:\"packs/Church-About.zip\";s:3:\"uid\";s:32:\"8ef133f3f669f06380334a83e27eedbb\";s:3:\"img\";s:23:\"Church-About/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:379;a:25:{s:2:\"id\";s:3:\"415\";s:5:\"title\";s:14:\"Church Pastors\";s:5:\"alias\";s:14:\"Church-Pastors\";s:3:\"zip\";s:24:\"packs/Church-Pastors.zip\";s:3:\"uid\";s:32:\"715edc0833a753b72350b8c974f86f94\";s:3:\"img\";s:25:\"Church-Pastors/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:380;a:25:{s:2:\"id\";s:3:\"416\";s:5:\"title\";s:20:\"Church Photo Gallery\";s:5:\"alias\";s:20:\"Church-Photo-Gallery\";s:3:\"zip\";s:30:\"packs/Church-Photo-Gallery.zip\";s:3:\"uid\";s:32:\"d94808a97149cd5d3b3354a28409ffd7\";s:3:\"img\";s:31:\"Church-Photo-Gallery/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:381;a:25:{s:2:\"id\";s:3:\"417\";s:5:\"title\";s:16:\"Church Community\";s:5:\"alias\";s:16:\"Church-Community\";s:3:\"zip\";s:26:\"packs/Church-Community.zip\";s:3:\"uid\";s:32:\"2244e6a6d7a691653eae2d70765130a7\";s:3:\"img\";s:27:\"Church-Community/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:382;a:25:{s:2:\"id\";s:3:\"418\";s:5:\"title\";s:13:\"Church Sermon\";s:5:\"alias\";s:13:\"Church-Sermon\";s:3:\"zip\";s:23:\"packs/Church-Sermon.zip\";s:3:\"uid\";s:32:\"8fedf983bd55fff0f7a16d9f0a7e5408\";s:3:\"img\";s:24:\"Church-Sermon/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:383;a:25:{s:2:\"id\";s:3:\"419\";s:5:\"title\";s:15:\"Church Contacts\";s:5:\"alias\";s:15:\"Church-Contacts\";s:3:\"zip\";s:25:\"packs/Church-Contacts.zip\";s:3:\"uid\";s:32:\"0b1a6968e75868548fd98e435625c090\";s:3:\"img\";s:26:\"Church-Contacts/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:384;a:25:{s:2:\"id\";s:3:\"420\";s:5:\"title\";s:13:\"Church Footer\";s:5:\"alias\";s:13:\"Church-Footer\";s:3:\"zip\";s:23:\"packs/Church-Footer.zip\";s:3:\"uid\";s:32:\"29756685d3dc49e42edada43e6393b7b\";s:3:\"img\";s:24:\"Church-Footer/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:385;a:25:{s:2:\"id\";s:3:\"421\";s:5:\"title\";s:29:\"Church Light Website Template\";s:5:\"alias\";s:29:\"church-light-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:37:\"church-light-website-template-package\";s:3:\"img\";s:42:\"packages/church-light-website-template.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:386;a:25:{s:2:\"id\";s:3:\"422\";s:5:\"title\";s:19:\"Church Light Header\";s:5:\"alias\";s:19:\"Church-Light-Header\";s:3:\"zip\";s:29:\"packs/Church-Light-Header.zip\";s:3:\"uid\";s:32:\"81c00f4b52cf55214de919e3f13121fc\";s:3:\"img\";s:30:\"Church-Light-Header/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:387;a:25:{s:2:\"id\";s:3:\"423\";s:5:\"title\";s:28:\"Church Light Upcoming Events\";s:5:\"alias\";s:28:\"Church-Light-Upcoming-Events\";s:3:\"zip\";s:38:\"packs/Church-Light-Upcoming-Events.zip\";s:3:\"uid\";s:32:\"963a49f4be0557ac5f3ee61d256f5bda\";s:3:\"img\";s:39:\"Church-Light-Upcoming-Events/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:388;a:25:{s:2:\"id\";s:3:\"424\";s:5:\"title\";s:18:\"Church Light About\";s:5:\"alias\";s:18:\"Church-Light-About\";s:3:\"zip\";s:28:\"packs/Church-Light-About.zip\";s:3:\"uid\";s:32:\"d46c8e8e6f80e6bfedb54f1cdc49e7e6\";s:3:\"img\";s:29:\"Church-Light-About/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:389;a:25:{s:2:\"id\";s:3:\"425\";s:5:\"title\";s:20:\"Church Light Pastors\";s:5:\"alias\";s:20:\"Church-Light-Pastors\";s:3:\"zip\";s:30:\"packs/Church-Light-Pastors.zip\";s:3:\"uid\";s:32:\"7cc3dec61556e2291d6f38c1ea5e983f\";s:3:\"img\";s:31:\"Church-Light-Pastors/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:390;a:25:{s:2:\"id\";s:3:\"426\";s:5:\"title\";s:26:\"Church Light Photo Gallery\";s:5:\"alias\";s:26:\"Church-Light-Photo-Gallery\";s:3:\"zip\";s:36:\"packs/Church-Light-Photo-Gallery.zip\";s:3:\"uid\";s:32:\"9e13100179b9b700b005693eeca57902\";s:3:\"img\";s:37:\"Church-Light-Photo-Gallery/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:391;a:25:{s:2:\"id\";s:3:\"427\";s:5:\"title\";s:22:\"Church Light Community\";s:5:\"alias\";s:22:\"Church-Light-Community\";s:3:\"zip\";s:32:\"packs/Church-Light-Community.zip\";s:3:\"uid\";s:32:\"14fcc0d43d899fd96116bdbc57c7c5ea\";s:3:\"img\";s:33:\"Church-Light-Community/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:392;a:25:{s:2:\"id\";s:3:\"428\";s:5:\"title\";s:19:\"Church Light Sermon\";s:5:\"alias\";s:19:\"Church-Light-Sermon\";s:3:\"zip\";s:29:\"packs/Church-Light-Sermon.zip\";s:3:\"uid\";s:32:\"fc30be7e703bc7b235665c36baa80e4e\";s:3:\"img\";s:30:\"Church-Light-Sermon/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:393;a:25:{s:2:\"id\";s:3:\"429\";s:5:\"title\";s:21:\"Church Light Contacts\";s:5:\"alias\";s:21:\"Church-Light-Contacts\";s:3:\"zip\";s:31:\"packs/Church-Light-Contacts.zip\";s:3:\"uid\";s:32:\"ed83d8fa63ecb59cf42656068ecf8d25\";s:3:\"img\";s:32:\"Church-Light-Contacts/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:394;a:25:{s:2:\"id\";s:3:\"430\";s:5:\"title\";s:19:\"Church Light Footer\";s:5:\"alias\";s:19:\"Church-Light-Footer\";s:3:\"zip\";s:29:\"packs/Church-Light-Footer.zip\";s:3:\"uid\";s:32:\"a168772865fd5dcf6229c9c6a49dff73\";s:3:\"img\";s:30:\"Church-Light-Footer/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:395;a:25:{s:2:\"id\";s:3:\"431\";s:5:\"title\";s:25:\"Rockable Website Template\";s:5:\"alias\";s:25:\"rockable-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:33:\"rockable-website-template-package\";s:3:\"img\";s:38:\"packages/rockable-website-template.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:396;a:25:{s:2:\"id\";s:3:\"432\";s:5:\"title\";s:13:\"Rockable Menu\";s:5:\"alias\";s:13:\"rockable-menu\";s:3:\"zip\";s:23:\"packs/rockable-menu.zip\";s:3:\"uid\";s:32:\"92d18f7ff38f22ff411a4ef4d9f54934\";s:3:\"img\";s:24:\"rockable-menu/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:397;a:25:{s:2:\"id\";s:3:\"433\";s:5:\"title\";s:13:\"Rockable Hero\";s:5:\"alias\";s:13:\"rockable-hero\";s:3:\"zip\";s:23:\"packs/rockable-hero.zip\";s:3:\"uid\";s:32:\"ba16b28d6bde95910cbce572bb251208\";s:3:\"img\";s:24:\"rockable-hero/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:398;a:25:{s:2:\"id\";s:3:\"434\";s:5:\"title\";s:15:\"Rockable Lineup\";s:5:\"alias\";s:15:\"rockable-lineup\";s:3:\"zip\";s:25:\"packs/rockable-lineup.zip\";s:3:\"uid\";s:32:\"6631980112805533a0d328c37e56adbd\";s:3:\"img\";s:26:\"rockable-lineup/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:399;a:25:{s:2:\"id\";s:3:\"435\";s:5:\"title\";s:17:\"Rockable Lineup 2\";s:5:\"alias\";s:17:\"rockable-lineup-2\";s:3:\"zip\";s:27:\"packs/rockable-lineup-2.zip\";s:3:\"uid\";s:32:\"98bc41d982dc478edabff4aa99461dbc\";s:3:\"img\";s:28:\"rockable-lineup-2/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:400;a:25:{s:2:\"id\";s:3:\"436\";s:5:\"title\";s:22:\"Rockable Gallery Title\";s:5:\"alias\";s:22:\"rockable-gallery-title\";s:3:\"zip\";s:32:\"packs/rockable-gallery-title.zip\";s:3:\"uid\";s:32:\"da43a76f5bc77aa6efe158b00ab7cf0d\";s:3:\"img\";s:33:\"rockable-gallery-title/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:401;a:25:{s:2:\"id\";s:3:\"437\";s:5:\"title\";s:16:\"Rockable Gallery\";s:5:\"alias\";s:16:\"rockable-gallery\";s:3:\"zip\";s:26:\"packs/rockable-gallery.zip\";s:3:\"uid\";s:32:\"c12a144d6860bcf24e91d5b980ac22f1\";s:3:\"img\";s:27:\"rockable-gallery/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:402;a:25:{s:2:\"id\";s:3:\"438\";s:5:\"title\";s:17:\"Rockable Sponsors\";s:5:\"alias\";s:17:\"rockable-sponsors\";s:3:\"zip\";s:27:\"packs/rockable-sponsors.zip\";s:3:\"uid\";s:32:\"1e40d4a810c23f8d5fe5cd5ca31ee20d\";s:3:\"img\";s:28:\"rockable-sponsors/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:403;a:25:{s:2:\"id\";s:3:\"439\";s:5:\"title\";s:15:\"Rockable Footer\";s:5:\"alias\";s:15:\"rockable-footer\";s:3:\"zip\";s:25:\"packs/rockable-footer.zip\";s:3:\"uid\";s:32:\"a4a9952d5e56fc14366155e8ebfa432a\";s:3:\"img\";s:26:\"rockable-footer/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:404;a:25:{s:2:\"id\";s:3:\"440\";s:5:\"title\";s:21:\"Rockable Detail Modal\";s:5:\"alias\";s:21:\"rockable-detail-modal\";s:3:\"zip\";s:31:\"packs/rockable-detail-modal.zip\";s:3:\"uid\";s:32:\"b51d918203ff7975a144a9f1be09f31b\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:405;a:25:{s:2:\"id\";s:3:\"441\";s:5:\"title\";s:23:\"Rockable Detail Modal 2\";s:5:\"alias\";s:23:\"rockable-detail-modal-2\";s:3:\"zip\";s:33:\"packs/rockable-detail-modal-2.zip\";s:3:\"uid\";s:32:\"dcf51ebb3d4a1dec94748a1e016c5ef7\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:2:\"10\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:406;a:22:{s:2:\"id\";s:3:\"442\";s:5:\"title\";s:27:\"Real Estate Showcase Slider\";s:5:\"alias\";s:27:\"real-estate-showcase-slider\";s:3:\"zip\";s:31:\"Real-Estate-Showcase-Slider.zip\";s:3:\"uid\";s:32:\"486b2bbe296722e70421731e3c05711b\";s:3:\"img\";s:38:\"Real-Estate-Showcase-Slider/slide1.jpg\";s:7:\"preview\";s:62:\"https://revolution.themepunch.com/real-estate-showcase-slider/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:152:\"<span class=\"ttm_content\">An elegant showcase for your real estate & realtor website. Flexible and customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:407;a:22:{s:2:\"id\";s:3:\"443\";s:5:\"title\";s:16:\"Isometric Slider\";s:5:\"alias\";s:16:\"isometric-slider\";s:3:\"zip\";s:20:\"isometric-slider.zip\";s:3:\"uid\";s:32:\"fb06051fcf6649a44f2292044e414a36\";s:3:\"img\";s:27:\"isometric-slider/slide1.jpg\";s:7:\"preview\";s:51:\"https://revolution.themepunch.com/isometric-slider/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:154:\"<span class=\"ttm_content\">A colorful, isometric slider template with fully customizable colors and screen content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:408;a:25:{s:2:\"id\";s:3:\"444\";s:5:\"title\";s:26:\"Woo Commerce Slider Static\";s:5:\"alias\";s:26:\"woo-commerce-slider-static\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"woo-commerce-slider-static\";s:3:\"img\";s:39:\"packages/woo-commerce-slider-static.jpg\";s:7:\"preview\";s:54:\"https://revolution.themepunch.com/woo-commerce-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:178:\"<span class=\"ttm_content\">A uniquely animated Woo Commerce Slider template - this is the static version that doesn\'t use Woo Commerce data</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:7:\"website\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Woo Commerce Slider Static\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"35\";s:9:\"installed\";b:0;}i:409;a:25:{s:2:\"id\";s:3:\"445\";s:5:\"title\";s:17:\"E-Commerce Slider\";s:5:\"alias\";s:17:\"E-Commerce-Slider\";s:3:\"zip\";s:27:\"packs/E-Commerce-Slider.zip\";s:3:\"uid\";s:32:\"1533cfd83c2ae122f23074e1ed77f256\";s:3:\"img\";s:28:\"E-Commerce-Slider/slide1.jpg\";s:7:\"preview\";s:54:\"https://revolution.themepunch.com/woo-commerce-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:178:\"<span class=\"ttm_content\">A uniquely animated Woo Commerce Slider template - this is the static version that doesn\'t use Woo Commerce data</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:4:\"hero\";i:1;s:7:\"website\";i:2;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Woo Commerce Slider Static\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"35\";s:9:\"installed\";b:0;}i:410;a:25:{s:2:\"id\";s:3:\"446\";s:5:\"title\";s:23:\"E-Commerce Slider Modal\";s:5:\"alias\";s:23:\"E-Commerce-Slider-Modal\";s:3:\"zip\";s:33:\"packs/E-Commerce-Slider-Modal.zip\";s:3:\"uid\";s:32:\"825e05c3967515b92a75da017c68a863\";s:3:\"img\";s:34:\"E-Commerce-Slider-Modal/slide1.jpg\";s:7:\"preview\";s:54:\"https://revolution.themepunch.com/woo-commerce-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:178:\"<span class=\"ttm_content\">A uniquely animated Woo Commerce Slider template - this is the static version that doesn\'t use Woo Commerce data</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:4:\"hero\";i:1;s:7:\"website\";i:2;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Woo Commerce Slider Static\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"35\";s:9:\"installed\";b:0;}i:411;a:22:{s:2:\"id\";s:3:\"447\";s:5:\"title\";s:27:\"Woo Commerce Slider Dynamic\";s:5:\"alias\";s:27:\"Woo-Commerce-Slider-Dynamic\";s:3:\"zip\";s:31:\"Woo-Commerce-Slider-Dynamic.zip\";s:3:\"uid\";s:32:\"b8e2c64f3739e552c563c48c59f20fe7\";s:3:\"img\";s:38:\"Woo-Commerce-Slider-Dynamic/slide1.jpg\";s:7:\"preview\";s:54:\"https://revolution.themepunch.com/woo-commerce-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">A uniquely animated Woo Commerce Slider template - this is the dynamic version that uses Woo Commerce data</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:412;a:25:{s:2:\"id\";s:3:\"448\";s:5:\"title\";s:31:\"Blooming Event Florist Template\";s:5:\"alias\";s:31:\"blooming-event-florist-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:39:\"blooming-event-florist-template-package\";s:3:\"img\";s:52:\"packages/blooming-event-florist-template-package.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:413;a:25:{s:2:\"id\";s:3:\"449\";s:5:\"title\";s:15:\"Blooming Header\";s:5:\"alias\";s:15:\"blooming-header\";s:3:\"zip\";s:25:\"packs/blooming-header.zip\";s:3:\"uid\";s:32:\"aa2ee34fd8ed018945ba64e6913810e4\";s:3:\"img\";s:26:\"blooming-header/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:414;a:25:{s:2:\"id\";s:3:\"450\";s:5:\"title\";s:14:\"Blooming About\";s:5:\"alias\";s:14:\"blooming-about\";s:3:\"zip\";s:24:\"packs/blooming-about.zip\";s:3:\"uid\";s:32:\"dd7095e46fab2eb475d00480fd17a6ec\";s:3:\"img\";s:25:\"blooming-about/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:415;a:25:{s:2:\"id\";s:3:\"451\";s:5:\"title\";s:18:\"Blooming Portfolio\";s:5:\"alias\";s:18:\"blooming-portfolio\";s:3:\"zip\";s:28:\"packs/blooming-portfolio.zip\";s:3:\"uid\";s:32:\"c72ddcbb07b62982b8c21328a6383e22\";s:3:\"img\";s:29:\"blooming-portfolio/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:416;a:25:{s:2:\"id\";s:3:\"452\";s:5:\"title\";s:22:\"Blooming Wedding Title\";s:5:\"alias\";s:22:\"blooming-wedding-title\";s:3:\"zip\";s:32:\"packs/blooming-wedding-title.zip\";s:3:\"uid\";s:32:\"4fcfb0b99289c12d014c67306bb7687b\";s:3:\"img\";s:33:\"blooming-wedding-title/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:417;a:25:{s:2:\"id\";s:3:\"453\";s:5:\"title\";s:25:\"Blooming Wedding Carousel\";s:5:\"alias\";s:25:\"blooming-wedding-carousel\";s:3:\"zip\";s:35:\"packs/blooming-wedding-carousel.zip\";s:3:\"uid\";s:32:\"1d1bb979dbfca8ba9d43da1c0f665339\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:418;a:25:{s:2:\"id\";s:3:\"454\";s:5:\"title\";s:21:\"Blooming Wedding Text\";s:5:\"alias\";s:21:\"blooming-wedding-text\";s:3:\"zip\";s:31:\"packs/blooming-wedding-text.zip\";s:3:\"uid\";s:32:\"326f2793294a739dd3aac3cc45332df8\";s:3:\"img\";s:32:\"blooming-wedding-text/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:419;a:25:{s:2:\"id\";s:3:\"455\";s:5:\"title\";s:22:\"Blooming Parties Title\";s:5:\"alias\";s:22:\"blooming-parties-title\";s:3:\"zip\";s:32:\"packs/blooming-parties-title.zip\";s:3:\"uid\";s:32:\"b47aae1b368d3c3d9017f260e6c6a547\";s:3:\"img\";s:33:\"blooming-parties-title/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:420;a:25:{s:2:\"id\";s:3:\"456\";s:5:\"title\";s:25:\"Blooming Parties Carousel\";s:5:\"alias\";s:25:\"blooming-parties-carousel\";s:3:\"zip\";s:35:\"packs/blooming-parties-carousel.zip\";s:3:\"uid\";s:32:\"9f90a9da7b017aeee7f3b608cda066e6\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:421;a:25:{s:2:\"id\";s:3:\"457\";s:5:\"title\";s:21:\"Blooming Parties Text\";s:5:\"alias\";s:21:\"blooming-parties-text\";s:3:\"zip\";s:31:\"packs/blooming-parties-text.zip\";s:3:\"uid\";s:32:\"66a47346cc639b8b9b9b5dfa1521b6ef\";s:3:\"img\";s:32:\"blooming-parties-text/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:422;a:25:{s:2:\"id\";s:3:\"458\";s:5:\"title\";s:22:\"Blooming Funeral Title\";s:5:\"alias\";s:22:\"blooming-funeral-title\";s:3:\"zip\";s:32:\"packs/blooming-funeral-title.zip\";s:3:\"uid\";s:32:\"e9e77134472c33c56be442073f29d1fd\";s:3:\"img\";s:33:\"blooming-funeral-title/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:2:\"10\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:423;a:25:{s:2:\"id\";s:3:\"459\";s:5:\"title\";s:23:\"Blooming Funeral Slider\";s:5:\"alias\";s:23:\"blooming-funeral-slider\";s:3:\"zip\";s:33:\"packs/blooming-funeral-slider.zip\";s:3:\"uid\";s:32:\"d15090841c25c7c8f0e1b0987c0c0887\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:2:\"11\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:424;a:25:{s:2:\"id\";s:3:\"460\";s:5:\"title\";s:21:\"Blooming Funeral Text\";s:5:\"alias\";s:21:\"blooming-funeral-text\";s:3:\"zip\";s:31:\"packs/blooming-funeral-text.zip\";s:3:\"uid\";s:32:\"d7c80e246f31e3d2f4e5dc1656f133cc\";s:3:\"img\";s:32:\"blooming-funeral-text/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:2:\"12\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:425;a:25:{s:2:\"id\";s:3:\"461\";s:5:\"title\";s:16:\"Blooming Contact\";s:5:\"alias\";s:16:\"blooming-contact\";s:3:\"zip\";s:26:\"packs/blooming-contact.zip\";s:3:\"uid\";s:32:\"54280182bca86443e2648b3146f41e47\";s:3:\"img\";s:27:\"blooming-contact/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:2:\"13\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:426;a:22:{s:2:\"id\";s:3:\"462\";s:5:\"title\";s:13:\"Particle Hero\";s:5:\"alias\";s:13:\"particle-hero\";s:3:\"zip\";s:17:\"particle-hero.zip\";s:3:\"uid\";s:32:\"3f422f4807bf9ef4cb15dade515dad00\";s:3:\"img\";s:24:\"particle-hero/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/wordpress-hero-image-header/#slide6\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:120:\"<span class=\"ttm_content\">A Hero header module using the Particle Effect Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:427;a:22:{s:2:\"id\";s:3:\"463\";s:5:\"title\";s:17:\"Bubble Morph Hero\";s:5:\"alias\";s:17:\"bubble-morph-hero\";s:3:\"zip\";s:21:\"bubble-morph-hero.zip\";s:3:\"uid\";s:32:\"b47e6bcc1ae80393ff3f7388ed3b9f8f\";s:3:\"img\";s:28:\"bubble-morph-hero/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/wordpress-hero-image-header/#slide5\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:117:\"<span class=\"ttm_content\">A Hero header module using the Bubble Morph Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:428;a:22:{s:2:\"id\";s:3:\"464\";s:5:\"title\";s:13:\"Parallax Hero\";s:5:\"alias\";s:13:\"parallax-hero\";s:3:\"zip\";s:17:\"parallax-hero.zip\";s:3:\"uid\";s:32:\"290e86534326ee118e96ae7ce0538fa2\";s:3:\"img\";s:24:\"parallax-hero/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/wordpress-hero-image-header/#slide4\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:117:\"<span class=\"ttm_content\">A parallax hero module with mouse move interaction.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:429;a:22:{s:2:\"id\";s:3:\"465\";s:5:\"title\";s:10:\"Video Hero\";s:5:\"alias\";s:10:\"video-hero\";s:3:\"zip\";s:14:\"video-hero.zip\";s:3:\"uid\";s:32:\"f9e280015d3408bb0482e13fe753da8f\";s:3:\"img\";s:21:\"video-hero/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/wordpress-hero-image-header/#slide3\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:111:\"<span class=\"ttm_content\">A simple Hero header module with HTML5 video.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:430;a:22:{s:2:\"id\";s:3:\"466\";s:5:\"title\";s:14:\"Ken Burns Hero\";s:5:\"alias\";s:14:\"ken-burns-hero\";s:3:\"zip\";s:18:\"ken-burns-hero.zip\";s:3:\"uid\";s:32:\"d5f89e5f5b3991b995e2bfeb50cfe9f8\";s:3:\"img\";s:25:\"ken-burns-hero/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/wordpress-hero-image-header/#slide2\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:142:\"<span class=\"ttm_content\">A simple image background hero header module with a subtle Ken Burns effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:431;a:22:{s:2:\"id\";s:3:\"467\";s:5:\"title\";s:21:\"Basic Hero Collection\";s:5:\"alias\";s:21:\"basic-hero-collection\";s:3:\"zip\";s:25:\"basic-hero-collection.zip\";s:3:\"uid\";s:32:\"ff625c65e8aab4689fa56d5652279d51\";s:3:\"img\";s:32:\"basic-hero-collection/slide1.jpg\";s:7:\"preview\";s:62:\"https://revolution.themepunch.com/wordpress-hero-image-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:153:\"<span class=\"ttm_content\">A collection of WordPress Hero Headers with image, video, particles, parallax and more!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:348:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:432;a:22:{s:2:\"id\";s:3:\"468\";s:5:\"title\";s:19:\"Launching Very Soon\";s:5:\"alias\";s:19:\"launching-very-soon\";s:3:\"zip\";s:23:\"launching-very-soon.zip\";s:3:\"uid\";s:32:\"2da45cf2d9bec07e7183b3f7777986b9\";s:3:\"img\";s:30:\"launching-very-soon/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/launching-soon-countdown/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:166:\"<span class=\"ttm_content\">Rocket BOOST! A beautifully animated launching soon countdown module using our \"Coming Soon\" Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:197:\"[{\"path\":\"revslider-maintenance-addon\\/revslider-maintenance-addon.php\",\"name\":\"Coming Soon & Maintenance AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/add-coming-soon-maintenance\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:433;a:22:{s:2:\"id\";s:3:\"469\";s:5:\"title\";s:18:\"Under Construction\";s:5:\"alias\";s:18:\"Under-Construction\";s:3:\"zip\";s:22:\"Under-Construction.zip\";s:3:\"uid\";s:32:\"4b12f9a82a5b48d45a707df93406eb5b\";s:3:\"img\";s:29:\"Under-Construction/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/under-construction/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You will love this animated under construction landing page using our \"Coming Soon\" Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:197:\"[{\"path\":\"revslider-maintenance-addon\\/revslider-maintenance-addon.php\",\"name\":\"Coming Soon & Maintenance AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/add-coming-soon-maintenance\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:434;a:22:{s:2:\"id\";s:3:\"470\";s:5:\"title\";s:15:\"Particle Effect\";s:5:\"alias\";s:15:\"Particle-Effect\";s:3:\"zip\";s:19:\"Particle-Effect.zip\";s:3:\"uid\";s:32:\"66cf4e514e83a6984903694fd587edb6\";s:3:\"img\";s:26:\"Particle-Effect/slide1.jpg\";s:7:\"preview\";s:54:\"https://revolution.themepunch.com/snow-particle-scene/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:140:\"<span class=\"ttm_content\">Get into a winter mood with our Snow Particle Scene for Slider Revolution!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:435;a:22:{s:2:\"id\";s:3:\"471\";s:5:\"title\";s:17:\"Particle Effect 2\";s:5:\"alias\";s:17:\"Particle-Effect-2\";s:3:\"zip\";s:21:\"Particle-Effect-2.zip\";s:3:\"uid\";s:32:\"303337c29a97a816ccecca7e5f0b5e20\";s:3:\"img\";s:28:\"Particle-Effect-2/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/cyber-particle-effect/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:147:\"<span class=\"ttm_content\">Amaze your website visitors with the cyber particle effect for Slider Revolution!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:436;a:25:{s:2:\"id\";s:3:\"472\";s:5:\"title\";s:22:\"Stark Website Template\";s:5:\"alias\";s:22:\"stark-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:30:\"stark-website-template-package\";s:3:\"img\";s:43:\"packages/stark-website-template-package.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:437;a:25:{s:2:\"id\";s:3:\"473\";s:5:\"title\";s:10:\"Stark Menu\";s:5:\"alias\";s:10:\"stark-menu\";s:3:\"zip\";s:20:\"packs/stark-menu.zip\";s:3:\"uid\";s:32:\"bb31150df180e784d76a1f5ea306bf05\";s:3:\"img\";s:21:\"stark-menu/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:87:\"offset=\"t:0px,0px,0px,0px;b:0px,0px,0px,0px;l:140px,70px,0px,0px;r:140px,70px,0px,0px;\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:438;a:25:{s:2:\"id\";s:3:\"474\";s:5:\"title\";s:12:\"Stark Header\";s:5:\"alias\";s:12:\"stark-header\";s:3:\"zip\";s:22:\"packs/stark-header.zip\";s:3:\"uid\";s:32:\"62bfca01bf6e33cfad81d8df06498299\";s:3:\"img\";s:23:\"stark-header/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:93:\"offset=\"t:40px,30px,20px,10px;b:0px,0px,0px,0px;l:40px,30px,20px,10px;r:40px,30px,20px,10px;\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:439;a:25:{s:2:\"id\";s:3:\"475\";s:5:\"title\";s:13:\"Stark Content\";s:5:\"alias\";s:13:\"stark-content\";s:3:\"zip\";s:23:\"packs/stark-content.zip\";s:3:\"uid\";s:32:\"4577ca760133eb5d894c46f212f6eefb\";s:3:\"img\";s:24:\"stark-content/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:6:\"6.2.22\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:110:\"offset=\"t:-50px,-30px,-30px,-20px;b:0px,0px,0px,0px;l:140px,70px,50px,30px;r:140px,70px,50px,30px;\" zindex=\"6\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:440;a:25:{s:2:\"id\";s:3:\"476\";s:5:\"title\";s:14:\"Stark Carousel\";s:5:\"alias\";s:14:\"stark-carousel\";s:3:\"zip\";s:24:\"packs/stark-carousel.zip\";s:3:\"uid\";s:32:\"de63336d333eeff10eccfd5d9741e6c9\";s:3:\"img\";s:25:\"stark-carousel/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:108:\"offset=\"t:-50px,-30px,-30px,-20px;b:0px,0px,0px,0px;l:40px,30px,20px,10px;r:40px,30px,20px,10px;\" zindex=\"1\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:441;a:25:{s:2:\"id\";s:3:\"477\";s:5:\"title\";s:15:\"Stark Portfolio\";s:5:\"alias\";s:15:\"stark-portfolio\";s:3:\"zip\";s:25:\"packs/stark-portfolio.zip\";s:3:\"uid\";s:32:\"99fcf3df65f8471fe30bec1bf0c2350d\";s:3:\"img\";s:26:\"stark-portfolio/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:6:\"6.2.22\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:110:\"offset=\"t:-50px,-30px,-30px,-20px;b:0px,0px,0px,0px;l:140px,70px,50px,30px;r:140px,70px,50px,30px;\" zindex=\"5\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:442;a:25:{s:2:\"id\";s:3:\"478\";s:5:\"title\";s:22:\"Stark Portfolio Detail\";s:5:\"alias\";s:22:\"stark-portfolio-detail\";s:3:\"zip\";s:32:\"packs/stark-portfolio-detail.zip\";s:3:\"uid\";s:32:\"7484fc54f81daec07c93e992216310ce\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:443;a:25:{s:2:\"id\";s:3:\"479\";s:5:\"title\";s:13:\"Stark Contact\";s:5:\"alias\";s:13:\"stark-contact\";s:3:\"zip\";s:23:\"packs/stark-contact.zip\";s:3:\"uid\";s:32:\"8d704226b7093123a9d9faf424da6c35\";s:3:\"img\";s:24:\"stark-contact/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:108:\"offset=\"t:-50px,-30px,-30px,-20px;b:0px,0px,0px,0px;l:40px,30px,20px,10px;r:40px,30px,20px,10px;\" zindex=\"2\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:444;a:25:{s:2:\"id\";s:3:\"480\";s:5:\"title\";s:12:\"Stark Footer\";s:5:\"alias\";s:12:\"stark-footer\";s:3:\"zip\";s:22:\"packs/stark-footer.zip\";s:3:\"uid\";s:32:\"e7132dc158e7dcdb4ef5b3a1aa00208a\";s:3:\"img\";s:23:\"stark-footer/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:6:\"6.2.22\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:114:\"offset=\"t:-50px,-30px,-30px,-20px;b:40px,30px,20px,20px;l:140px,70px,50px,30px;r:140px,70px,50px,30px;\" zindex=\"3\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:445;a:25:{s:2:\"id\";s:3:\"481\";s:5:\"title\";s:16:\"Stark Newsletter\";s:5:\"alias\";s:16:\"stark-newsletter\";s:3:\"zip\";s:26:\"packs/stark-newsletter.zip\";s:3:\"uid\";s:32:\"bb76ddd68dbe6bda5ece7e4227a51413\";s:3:\"img\";s:27:\"stark-newsletter/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:33:\"usage=\"modal\" modal=\"s:#contact;\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:446;a:22:{s:2:\"id\";s:3:\"482\";s:5:\"title\";s:15:\"Big Summer Sale\";s:5:\"alias\";s:15:\"big-summer-sale\";s:3:\"zip\";s:19:\"big-summer-sale.zip\";s:3:\"uid\";s:32:\"a6779fa7109763209d234f9cf2e766c6\";s:3:\"img\";s:26:\"big-summer-sale/slide1.jpg\";s:7:\"preview\";s:62:\"https://revolution.themepunch.com/big-summer-sale-shop-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:153:\"<span class=\"ttm_content\">The Big Summer Sale Shop Slider is a beautiful eye catcher for your e-commerce website!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:447;a:22:{s:2:\"id\";s:3:\"483\";s:5:\"title\";s:18:\"Traveller Carousel\";s:5:\"alias\";s:18:\"traveller-carousel\";s:3:\"zip\";s:22:\"traveller-carousel.zip\";s:3:\"uid\";s:32:\"185344ed6236bea2906a79035d1d5702\";s:3:\"img\";s:29:\"traveller-carousel/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/travel-blog-carousel/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:137:\"<span class=\"ttm_content\">A travel blog carousel with interesting parallax and ken burns effects!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:263:\"<span class=\"ttm_content\">Note that the content visible on all slides can be edited on the \"global layers\" slide.<br/>Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:448;a:22:{s:2:\"id\";s:3:\"484\";s:5:\"title\";s:16:\"Project Carousel\";s:5:\"alias\";s:16:\"project-carousel\";s:3:\"zip\";s:20:\"project-carousel.zip\";s:3:\"uid\";s:32:\"49c85ad406da943bdd25f08fd6496748\";s:3:\"img\";s:27:\"project-carousel/slide1.jpg\";s:7:\"preview\";s:51:\"https://revolution.themepunch.com/project-carousel/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:137:\"<span class=\"ttm_content\">A project carousel with images and texts that can be customized easily!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:449;a:22:{s:2:\"id\";s:3:\"485\";s:5:\"title\";s:13:\"News Carousel\";s:5:\"alias\";s:13:\"news-carousel\";s:3:\"zip\";s:17:\"news-carousel.zip\";s:3:\"uid\";s:32:\"76f5b939150092a30038f161084140ae\";s:3:\"img\";s:24:\"news-carousel/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/news-carousel/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:134:\"<span class=\"ttm_content\">A news carousel with images and texts that can be customized easily!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:450;a:25:{s:2:\"id\";s:3:\"486\";s:5:\"title\";s:29:\"Story Blocks Website Template\";s:5:\"alias\";s:29:\"story-blocks-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:37:\"story-blocks-website-template-package\";s:3:\"img\";s:50:\"packages/story-blocks-website-template-package.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;}i:451;a:25:{s:2:\"id\";s:3:\"487\";s:5:\"title\";s:10:\"Story Menu\";s:5:\"alias\";s:10:\"story-menu\";s:3:\"zip\";s:20:\"packs/story-menu.zip\";s:3:\"uid\";s:32:\"1f2f7cd91480f15cff8e7100f788c650\";s:3:\"img\";s:21:\"story-menu/slide1.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;}i:452;a:25:{s:2:\"id\";s:3:\"488\";s:5:\"title\";s:12:\"Story Header\";s:5:\"alias\";s:12:\"story-header\";s:3:\"zip\";s:22:\"packs/story-header.zip\";s:3:\"uid\";s:32:\"e1a5ad5018a24ccdc71c2863edfe775e\";s:3:\"img\";s:23:\"story-header/slide1.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;}i:453;a:25:{s:2:\"id\";s:3:\"489\";s:5:\"title\";s:13:\"Story Block 1\";s:5:\"alias\";s:13:\"story-block-1\";s:3:\"zip\";s:23:\"packs/story-block-1.zip\";s:3:\"uid\";s:32:\"2a9fee97dcf477e36d048af8a902f47a\";s:3:\"img\";s:24:\"story-block-1/slide1.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;}i:454;a:25:{s:2:\"id\";s:3:\"490\";s:5:\"title\";s:15:\"Story Content 1\";s:5:\"alias\";s:15:\"story-content-1\";s:3:\"zip\";s:25:\"packs/story-content-1.zip\";s:3:\"uid\";s:32:\"6773614bbce543b83a0d2b2ad8facc96\";s:3:\"img\";s:26:\"story-content-1/slide1.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;}i:455;a:25:{s:2:\"id\";s:3:\"491\";s:5:\"title\";s:13:\"Story Block 2\";s:5:\"alias\";s:13:\"story-block-2\";s:3:\"zip\";s:23:\"packs/story-block-2.zip\";s:3:\"uid\";s:32:\"2e708e3cebab57ca20b228ffba426ce7\";s:3:\"img\";s:24:\"story-block-2/slide1.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;}i:456;a:25:{s:2:\"id\";s:3:\"492\";s:5:\"title\";s:13:\"Story Block 3\";s:5:\"alias\";s:13:\"story-block-3\";s:3:\"zip\";s:23:\"packs/story-block-3.zip\";s:3:\"uid\";s:32:\"7156cf069f65644faf90122dab451231\";s:3:\"img\";s:24:\"story-block-3/slide1.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;}i:457;a:25:{s:2:\"id\";s:3:\"493\";s:5:\"title\";s:15:\"Story Content 2\";s:5:\"alias\";s:15:\"story-content-2\";s:3:\"zip\";s:25:\"packs/story-content-2.zip\";s:3:\"uid\";s:32:\"1223cd77d1f36d69e69ce50223e16ea7\";s:3:\"img\";s:26:\"story-content-2/slide1.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;}i:458;a:25:{s:2:\"id\";s:3:\"494\";s:5:\"title\";s:13:\"Story Block 4\";s:5:\"alias\";s:13:\"story-block-4\";s:3:\"zip\";s:23:\"packs/story-block-4.zip\";s:3:\"uid\";s:32:\"85ac48e8e8231d2c38206cba4e7ebb68\";s:3:\"img\";s:24:\"story-block-4/slide1.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;}i:459;a:25:{s:2:\"id\";s:3:\"495\";s:5:\"title\";s:15:\"Story Content 3\";s:5:\"alias\";s:15:\"story-content-3\";s:3:\"zip\";s:25:\"packs/story-content-3.zip\";s:3:\"uid\";s:32:\"82cac52f3ba79c0559fe0ad0cdf9d3b2\";s:3:\"img\";s:26:\"story-content-3/slide1.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;}i:460;a:22:{s:2:\"id\";s:3:\"496\";s:5:\"title\";s:21:\"Animated Mini Website\";s:5:\"alias\";s:12:\"mini-website\";s:3:\"zip\";s:16:\"mini-website.zip\";s:3:\"uid\";s:32:\"cc6c0a3b0f933a88c43e2be0fa397c1c\";s:3:\"img\";s:23:\"mini-website/slide1.jpg\";s:7:\"preview\";s:56:\"https://www.sliderrevolution.com/templates/mini-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:209:\"<span class=\"ttm_content\">The animated mini website template has a modern, vibrant design and can be customized easily! Get the #1 WordPress Builder with 200+ templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:461;a:22:{s:2:\"id\";s:3:\"497\";s:5:\"title\";s:18:\"Food Delivery Hero\";s:5:\"alias\";s:13:\"food-delivery\";s:3:\"zip\";s:17:\"food-delivery.zip\";s:3:\"uid\";s:32:\"992e9b22ff43227a655eea341835d04c\";s:3:\"img\";s:24:\"food-delivery/slide1.jpg\";s:7:\"preview\";s:62:\"https://www.sliderrevolution.com/templates/food-delivery-hero/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:207:\"<span class=\"ttm_content\">Yummy! This hero template convinces with a changing color background, a particle effect, vibrant illustrations and smooth mouse over effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:342:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:462;a:22:{s:2:\"id\";s:3:\"498\";s:5:\"title\";s:25:\"Slider With Illustrations\";s:5:\"alias\";s:25:\"slider-with-illustrations\";s:3:\"zip\";s:29:\"slider-with-illustrations.zip\";s:3:\"uid\";s:32:\"ebc24280b669f26734c7fdd8b5683e9f\";s:3:\"img\";s:36:\"slider-with-illustrations/slide1.jpg\";s:7:\"preview\";s:69:\"https://www.sliderrevolution.com/templates/slider-with-illustrations/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">A basic slider template with easy to customize content, colorful illustrations and pleasant parallax effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:463;a:25:{s:2:\"id\";s:3:\"499\";s:5:\"title\";s:31:\"Zen Technology Website Template\";s:5:\"alias\";s:31:\"zen-technology-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:39:\"zen-technology-website-template-package\";s:3:\"img\";s:52:\"packages/zen-technology-website-template-package.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:464;a:26:{s:2:\"id\";s:3:\"500\";s:5:\"title\";s:8:\"Zen Menu\";s:5:\"alias\";s:8:\"zen-menu\";s:3:\"zip\";s:18:\"packs/zen-menu.zip\";s:3:\"uid\";s:32:\"3b53d755058b75fa6172510dcca2f2bb\";s:3:\"img\";s:19:\"zen-menu/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:465;a:25:{s:2:\"id\";s:3:\"501\";s:5:\"title\";s:10:\"Zen Header\";s:5:\"alias\";s:10:\"zen-header\";s:3:\"zip\";s:20:\"packs/zen-header.zip\";s:3:\"uid\";s:32:\"13d3cdde05308616fda7e2920a29e006\";s:3:\"img\";s:21:\"zen-header/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:466;a:25:{s:2:\"id\";s:3:\"502\";s:5:\"title\";s:9:\"Zen About\";s:5:\"alias\";s:9:\"zen-about\";s:3:\"zip\";s:19:\"packs/zen-about.zip\";s:3:\"uid\";s:32:\"d50d4f9b43e025fa99503b9a4eec6551\";s:3:\"img\";s:20:\"zen-about/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:467;a:25:{s:2:\"id\";s:3:\"503\";s:5:\"title\";s:12:\"Zen Features\";s:5:\"alias\";s:12:\"zen-features\";s:3:\"zip\";s:22:\"packs/zen-features.zip\";s:3:\"uid\";s:32:\"f4f7f500fae57b1b55adace13f030778\";s:3:\"img\";s:23:\"zen-features/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:468;a:25:{s:2:\"id\";s:3:\"504\";s:5:\"title\";s:9:\"Zen Video\";s:5:\"alias\";s:9:\"zen-video\";s:3:\"zip\";s:19:\"packs/zen-video.zip\";s:3:\"uid\";s:32:\"fa83df1b45b795174770b1b0155e89f3\";s:3:\"img\";s:20:\"zen-video/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:469;a:25:{s:2:\"id\";s:3:\"505\";s:5:\"title\";s:11:\"Zen Pricing\";s:5:\"alias\";s:11:\"zen-pricing\";s:3:\"zip\";s:21:\"packs/zen-pricing.zip\";s:3:\"uid\";s:32:\"921f8e5c156d9027f6ae8f1c5e426251\";s:3:\"img\";s:22:\"zen-pricing/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:470;a:25:{s:2:\"id\";s:3:\"506\";s:5:\"title\";s:22:\"Zen Testimonials Title\";s:5:\"alias\";s:22:\"zen-testimonials-title\";s:3:\"zip\";s:32:\"packs/zen-testimonials-title.zip\";s:3:\"uid\";s:32:\"d9aeeb596c0455ddd564a60a2d449b17\";s:3:\"img\";s:33:\"zen-testimonials-title/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:471;a:25:{s:2:\"id\";s:3:\"507\";s:5:\"title\";s:16:\"Zen Testimonials\";s:5:\"alias\";s:16:\"zen-testimonials\";s:3:\"zip\";s:26:\"packs/zen-testimonials.zip\";s:3:\"uid\";s:32:\"5a0e0141599c63828e4b99e3bc863366\";s:3:\"img\";s:27:\"zen-testimonials/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:472;a:25:{s:2:\"id\";s:3:\"508\";s:5:\"title\";s:10:\"Zen Footer\";s:5:\"alias\";s:10:\"zen-footer\";s:3:\"zip\";s:20:\"packs/zen-footer.zip\";s:3:\"uid\";s:32:\"47fb8604e2aafa8cfc97f5af75fda911\";s:3:\"img\";s:21:\"zen-footer/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:473;a:22:{s:2:\"id\";s:3:\"509\";s:5:\"title\";s:24:\"Paintbrush Effect Add-on\";s:5:\"alias\";s:17:\"Paintbrush-Effect\";s:3:\"zip\";s:21:\"Paintbrush-Effect.zip\";s:3:\"uid\";s:32:\"b934d1376df026f0ff45447de17b5ee9\";s:3:\"img\";s:28:\"Paintbrush-Effect/slide1.jpg\";s:7:\"preview\";s:72:\"https://www.sliderrevolution.com/templates/paintbrush-effect-collection/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:179:\"<span class=\"ttm_content\">The Paintbrush Effect Add-on is the perfect way to add some interactivity to your website with Slider Revolution.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:338:\"[{\"path\":\"revslider-paintbrush-addon\\/revslider-paintbrush-addon.php\",\"name\":\"Paintbrush AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:474;a:25:{s:2:\"id\";s:3:\"510\";s:5:\"title\";s:29:\"Photographer Website Template\";s:5:\"alias\";s:29:\"photographer-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:37:\"photographer-website-template-package\";s:3:\"img\";s:50:\"packages/photographer-website-template-package.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/photographer-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:222:\"<span class=\"ttm_content\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Photographer Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"40\";s:9:\"installed\";b:0;}i:475;a:25:{s:2:\"id\";s:3:\"511\";s:5:\"title\";s:19:\"Photographer Header\";s:5:\"alias\";s:19:\"Photographer-Header\";s:3:\"zip\";s:29:\"packs/Photographer-Header.zip\";s:3:\"uid\";s:32:\"22de8b3b1eeca5d0d1087791a28cc641\";s:3:\"img\";s:30:\"Photographer-Header/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/photographer-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:222:\"<span class=\"ttm_content\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Photographer Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"40\";s:9:\"installed\";b:0;}i:476;a:25:{s:2:\"id\";s:3:\"512\";s:5:\"title\";s:27:\"Photographer Welcome Screen\";s:5:\"alias\";s:27:\"Photographer-Welcome-Screen\";s:3:\"zip\";s:37:\"packs/Photographer-Welcome-Screen.zip\";s:3:\"uid\";s:32:\"8de63df079ad8b7c0aa7bf164bd5fd8f\";s:3:\"img\";s:38:\"Photographer-Welcome-Screen/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/photographer-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:222:\"<span class=\"ttm_content\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Photographer Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"40\";s:9:\"installed\";b:0;}i:477;a:25:{s:2:\"id\";s:3:\"513\";s:5:\"title\";s:21:\"Photographer Showcase\";s:5:\"alias\";s:21:\"Photographer-Showcase\";s:3:\"zip\";s:31:\"packs/Photographer-Showcase.zip\";s:3:\"uid\";s:32:\"8b2c7a1541465f77e829a9ac58926359\";s:3:\"img\";s:32:\"Photographer-Showcase/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/photographer-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:222:\"<span class=\"ttm_content\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Photographer Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"40\";s:9:\"installed\";b:0;}i:478;a:25:{s:2:\"id\";s:3:\"514\";s:5:\"title\";s:22:\"Photographer Portfolio\";s:5:\"alias\";s:22:\"Photographer-Portfolio\";s:3:\"zip\";s:32:\"packs/Photographer-Portfolio.zip\";s:3:\"uid\";s:32:\"ba5cc502a9505725ef169eaf4852d10f\";s:3:\"img\";s:33:\"Photographer-Portfolio/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/photographer-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:222:\"<span class=\"ttm_content\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Photographer Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"40\";s:9:\"installed\";b:0;}i:479;a:25:{s:2:\"id\";s:3:\"515\";s:5:\"title\";s:21:\"Photographer Contacts\";s:5:\"alias\";s:21:\"Photographer-Contacts\";s:3:\"zip\";s:31:\"packs/Photographer-Contacts.zip\";s:3:\"uid\";s:32:\"6ac142733cd260b5d5d3cdce30885074\";s:3:\"img\";s:32:\"Photographer-Contacts/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/photographer-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:222:\"<span class=\"ttm_content\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Photographer Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"40\";s:9:\"installed\";b:0;}i:480;a:25:{s:2:\"id\";s:3:\"516\";s:5:\"title\";s:19:\"Photographer Footer\";s:5:\"alias\";s:19:\"Photographer-Footer\";s:3:\"zip\";s:29:\"packs/Photographer-Footer.zip\";s:3:\"uid\";s:32:\"5fae568a988d072fb14b66cc2732ea46\";s:3:\"img\";s:30:\"Photographer-Footer/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/photographer-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:222:\"<span class=\"ttm_content\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Photographer Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"40\";s:9:\"installed\";b:0;}i:481;a:25:{s:2:\"id\";s:3:\"517\";s:5:\"title\";s:18:\"Photographer Modal\";s:5:\"alias\";s:18:\"Photographer-Modal\";s:3:\"zip\";s:28:\"packs/Photographer-Modal.zip\";s:3:\"uid\";s:32:\"e6b47a765ad19bce4726540ff7211c07\";s:3:\"img\";s:29:\"Photographer-Modal/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/photographer-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:222:\"<span class=\"ttm_content\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Photographer Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"40\";s:9:\"installed\";b:0;}i:482;a:22:{s:2:\"id\";s:3:\"518\";s:5:\"title\";s:25:\"Black Friday Scroll Video\";s:5:\"alias\";s:25:\"black-friday-scroll-video\";s:3:\"zip\";s:29:\"black-friday-scroll-video.zip\";s:3:\"uid\";s:32:\"a6a4ab2e2f703aaee0a1e6121881bdd8\";s:3:\"img\";s:36:\"black-friday-scroll-video/slide1.jpg\";s:7:\"preview\";s:69:\"https://www.sliderrevolution.com/templates/black-friday-video-scroll/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:169:\"<span class=\"ttm_content\">Blackfriday offers are coming towards you from the depths of space, with this scroll-based hero module.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:370:\"[{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-scrollvideo-addon\\/revslider-scrollvideo-addon.php\",\"name\":\"Slider Revolution Scroll Video Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:483;a:25:{s:2:\"id\";s:3:\"519\";s:5:\"title\";s:26:\"Charity Non-Profit-Website\";s:5:\"alias\";s:26:\"charity-non-profit-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"charity-non-profit-website\";s:3:\"img\";s:47:\"packages/charity-non-profit-website-package.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:177:\"[{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:484;a:25:{s:2:\"id\";s:3:\"520\";s:5:\"title\";s:12:\"Charity Menu\";s:5:\"alias\";s:12:\"charity-menu\";s:3:\"zip\";s:22:\"packs/charity-menu.zip\";s:3:\"uid\";s:32:\"77794a39041c7f128de3b5ad9b8e7d0d\";s:3:\"img\";s:23:\"charity-menu/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:485;a:25:{s:2:\"id\";s:3:\"521\";s:5:\"title\";s:14:\"Charity Header\";s:5:\"alias\";s:14:\"charity-header\";s:3:\"zip\";s:24:\"packs/charity-header.zip\";s:3:\"uid\";s:32:\"36096787d4ed62942cbd48f6a57e9d4f\";s:3:\"img\";s:25:\"charity-header/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:486;a:25:{s:2:\"id\";s:3:\"522\";s:5:\"title\";s:15:\"Charity Mission\";s:5:\"alias\";s:15:\"charity-mission\";s:3:\"zip\";s:25:\"packs/charity-mission.zip\";s:3:\"uid\";s:32:\"8c5cd67e3eb51c0ca3e571408ac8e97b\";s:3:\"img\";s:26:\"charity-mission/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:177:\"[{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:487;a:25:{s:2:\"id\";s:3:\"523\";s:5:\"title\";s:13:\"Charity Funds\";s:5:\"alias\";s:13:\"charity-funds\";s:3:\"zip\";s:23:\"packs/charity-funds.zip\";s:3:\"uid\";s:32:\"10da554c7529ef91965e1618a04b410b\";s:3:\"img\";s:24:\"charity-funds/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:177:\"[{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:488;a:25:{s:2:\"id\";s:3:\"524\";s:5:\"title\";s:15:\"Charity Success\";s:5:\"alias\";s:15:\"charity-success\";s:3:\"zip\";s:25:\"packs/charity-success.zip\";s:3:\"uid\";s:32:\"0c35448c1905272606e87447886a348e\";s:3:\"img\";s:26:\"charity-success/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:177:\"[{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:489;a:25:{s:2:\"id\";s:3:\"525\";s:5:\"title\";s:15:\"Charity Stories\";s:5:\"alias\";s:15:\"charity-stories\";s:3:\"zip\";s:25:\"packs/charity-stories.zip\";s:3:\"uid\";s:32:\"f277f145d9f9c3f0033bb8ceffeb4c9f\";s:3:\"img\";s:26:\"charity-stories/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:490;a:25:{s:2:\"id\";s:3:\"526\";s:5:\"title\";s:16:\"Charity Worldmap\";s:5:\"alias\";s:16:\"charity-worldmap\";s:3:\"zip\";s:26:\"packs/charity-worldmap.zip\";s:3:\"uid\";s:32:\"9e00cbac269b92cb24fd3230297f4685\";s:3:\"img\";s:27:\"charity-worldmap/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:491;a:25:{s:2:\"id\";s:3:\"527\";s:5:\"title\";s:19:\"Charity Large Image\";s:5:\"alias\";s:19:\"charity-large-image\";s:3:\"zip\";s:29:\"packs/charity-large-image.zip\";s:3:\"uid\";s:32:\"fa927036c2b14622832106fa987bc8e7\";s:3:\"img\";s:30:\"charity-large-image/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:492;a:25:{s:2:\"id\";s:3:\"528\";s:5:\"title\";s:16:\"Charity Sponsors\";s:5:\"alias\";s:16:\"charity-sponsors\";s:3:\"zip\";s:26:\"packs/charity-sponsors.zip\";s:3:\"uid\";s:32:\"efd087bc3fa3915139af9e93d47ee295\";s:3:\"img\";s:27:\"charity-sponsors/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:493;a:25:{s:2:\"id\";s:3:\"529\";s:5:\"title\";s:12:\"Charity Help\";s:5:\"alias\";s:12:\"charity-help\";s:3:\"zip\";s:22:\"packs/charity-help.zip\";s:3:\"uid\";s:32:\"4f3571c0b27f061648c9ff95b1a3f718\";s:3:\"img\";s:23:\"charity-help/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:2:\"10\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:494;a:25:{s:2:\"id\";s:3:\"530\";s:5:\"title\";s:14:\"Charity Footer\";s:5:\"alias\";s:14:\"charity-footer\";s:3:\"zip\";s:24:\"packs/charity-footer.zip\";s:3:\"uid\";s:32:\"9340fa48c56635a8a781cc37c4bf538c\";s:3:\"img\";s:25:\"charity-footer/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:2:\"11\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:495;a:22:{s:2:\"id\";s:3:\"531\";s:5:\"title\";s:21:\"Cinematic Hero Titles\";s:5:\"alias\";s:21:\"cinematic-hero-titles\";s:3:\"zip\";s:25:\"cinematic-hero-titles.zip\";s:3:\"uid\";s:32:\"51a59c54bb97c274092d22dbf4f6085e\";s:3:\"img\";s:32:\"cinematic-hero-titles/slide1.jpg\";s:7:\"preview\";s:65:\"https://www.sliderrevolution.com/templates/cinematic-hero-titles/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:199:\"<span class=\"ttm_content\">The \"Cinematic Hero Titles\" template is a collection of fullscreen hero blocks that use a cinematic, animated letter-spacing effect..</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:177:\"[{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:496;a:22:{s:2:\"id\";s:3:\"532\";s:5:\"title\";s:23:\"Design DNA Scroll Video\";s:5:\"alias\";s:23:\"design-dna-scroll-video\";s:3:\"zip\";s:27:\"design-dna-scroll-video.zip\";s:3:\"uid\";s:32:\"39180fc9f7a07e50832fc1a68fb4eba2\";s:3:\"img\";s:34:\"design-dna-scroll-video/slide1.jpg\";s:7:\"preview\";s:67:\"https://www.sliderrevolution.com/templates/design-dna-scroll-video/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The \"Design DNA Scroll Video\" template isÂ a striking, fullscreen hero module that is using our new Scroll Video addon.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:544:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-scrollvideo-addon\\/revslider-scrollvideo-addon.php\",\"name\":\"Slider Revolution Scroll Video Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:497;a:22:{s:2:\"id\";s:3:\"533\";s:5:\"title\";s:27:\"Food Delivery Lottie Scroll\";s:5:\"alias\";s:27:\"food-delivery-lottie-scroll\";s:3:\"zip\";s:31:\"food-delivery-lottie-scroll.zip\";s:3:\"uid\";s:32:\"5dfbfac45c5df7702238ba1b43afe8f6\";s:3:\"img\";s:38:\"food-delivery-lottie-scroll/slide1.jpg\";s:7:\"preview\";s:71:\"https://www.sliderrevolution.com/templates/food-delivery-lottie-scroll/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The \"Design DNA Scroll Video\" template isÂ a striking, fullscreen hero module that is using our new Scroll Video addon.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:177:\"[{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:498;a:25:{s:2:\"id\";s:3:\"534\";s:5:\"title\";s:29:\"Food Recipe Carousel Template\";s:5:\"alias\";s:29:\"food-recipe-carousel-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:29:\"food-recipe-carousel-template\";s:3:\"img\";s:50:\"packages/food-recipe-carousel-template-package.jpg\";s:7:\"preview\";s:64:\"https://www.sliderrevolution.com/templates/food-recipe-carousel/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Showcase your cooking recipes with the easy to use \"Food Recipe Carousel\" template. Clicking the titles opens up a detail view!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Food Recipe Carousel Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"42\";s:9:\"installed\";b:0;}i:499;a:25:{s:2:\"id\";s:3:\"535\";s:5:\"title\";s:20:\"Food Recipe Carousel\";s:5:\"alias\";s:20:\"food-recipe-carousel\";s:3:\"zip\";s:30:\"packs/food-recipe-carousel.zip\";s:3:\"uid\";s:32:\"6ba9695ba1a22a6e99f96431d8fb01e8\";s:3:\"img\";s:31:\"food-recipe-carousel/slide1.jpg\";s:7:\"preview\";s:64:\"https://www.sliderrevolution.com/templates/food-recipe-carousel/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Food Recipe Carousel Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"42\";s:9:\"installed\";b:0;}i:500;a:25:{s:2:\"id\";s:3:\"536\";s:5:\"title\";s:17:\"Food Recipe Modal\";s:5:\"alias\";s:17:\"food-recipe-modal\";s:3:\"zip\";s:27:\"packs/food-recipe-modal.zip\";s:3:\"uid\";s:32:\"1c5b2e959cd973efc5c1887a3a4279f3\";s:3:\"img\";s:28:\"food-recipe-modal/slide1.jpg\";s:7:\"preview\";s:64:\"https://www.sliderrevolution.com/templates/food-recipe-carousel/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Food Recipe Carousel Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"42\";s:9:\"installed\";b:0;}i:501;a:25:{s:2:\"id\";s:3:\"537\";s:5:\"title\";s:27:\"Corporate Carousel Template\";s:5:\"alias\";s:27:\"corporate-carousel-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:27:\"corporate-carousel-template\";s:3:\"img\";s:38:\"packages/corporate_carousel_bundle.jpg\";s:7:\"preview\";s:75:\"https://www.sliderrevolution.com/templates/corporate-carousel-with-lightbox\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Corporate Carousel is a basic, easy to use carousel with tab navigation. The lightbox modal can show any additonal content, independant of the carousel.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 15:14:10\";s:7:\"package\";s:27:\"Corporate Carousel Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"43\";s:9:\"installed\";b:0;}i:502;a:25:{s:2:\"id\";s:3:\"538\";s:5:\"title\";s:18:\"Corporate Carousel\";s:5:\"alias\";s:18:\"corporate-carousel\";s:3:\"zip\";s:28:\"packs/corporate-carousel.zip\";s:3:\"uid\";s:32:\"30dea0e333913cb5ebbf8dded8c3a839\";s:3:\"img\";s:29:\"corporate-carousel/slide1.jpg\";s:7:\"preview\";s:34:\"https://revolution.themepunch.com/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Corporate Carousel is a basic, easy to use carousel with tab navigation. The lightbox modal can show any additonal content, independant of the carousel.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 15:26:51\";s:7:\"package\";s:27:\"Corporate Carousel Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"43\";s:9:\"installed\";b:0;}i:503;a:25:{s:2:\"id\";s:3:\"539\";s:5:\"title\";s:18:\"Corporate Lightbox\";s:5:\"alias\";s:18:\"corporate-lightbox\";s:3:\"zip\";s:28:\"packs/corporate-lightbox.zip\";s:3:\"uid\";s:32:\"832c277bfc5a288c0dffd784e4041265\";s:3:\"img\";s:29:\"corporate-lightbox/slide1.jpg\";s:7:\"preview\";s:34:\"https://revolution.themepunch.com/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Corporate Carousel is a basic, easy to use carousel with tab navigation. The lightbox modal can show any additonal content, independant of the carousel.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 15:34:36\";s:7:\"package\";s:27:\"Corporate Carousel Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"43\";s:9:\"installed\";b:0;}i:504;a:25:{s:2:\"id\";s:3:\"540\";s:5:\"title\";s:23:\"Cyber Carousel Template\";s:5:\"alias\";s:23:\"cyber-carousel-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:23:\"cyber-carousel-template\";s:3:\"img\";s:33:\"packages/cybercarousel_bundle.jpg\";s:7:\"preview\";s:71:\"https://www.sliderrevolution.com/templates/cyber-carousel-with-lightbox\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:218:\"<span class=\"ttm_content\">This fullscreen carousel has easy to edit content and vertical navigation tabs. The highlight color can be changed with one click upon opening the editor.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 15:40:25\";s:7:\"package\";s:23:\"Cyber Carousel Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"44\";s:9:\"installed\";b:0;}i:505;a:25:{s:2:\"id\";s:3:\"541\";s:5:\"title\";s:14:\"Cyber Carousel\";s:5:\"alias\";s:14:\"cyber-carousel\";s:3:\"zip\";s:24:\"packs/cyber-carousel.zip\";s:3:\"uid\";s:32:\"b5ef41c7f498bd1dccf8224bfbade718\";s:3:\"img\";s:25:\"cyber-carousel/slide1.jpg\";s:7:\"preview\";s:71:\"https://www.sliderrevolution.com/templates/cyber-carousel-with-lightbox\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:218:\"<span class=\"ttm_content\">This fullscreen carousel has easy to edit content and vertical navigation tabs. The highlight color can be changed with one click upon opening the editor.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 15:42:44\";s:7:\"package\";s:23:\"Cyber Carousel Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"44\";s:9:\"installed\";b:0;}i:506;a:25:{s:2:\"id\";s:3:\"542\";s:5:\"title\";s:23:\"Cyber Carousel Lightbox\";s:5:\"alias\";s:23:\"cyber-carousel-lightbox\";s:3:\"zip\";s:33:\"packs/cyber-carousel-lightbox.zip\";s:3:\"uid\";s:32:\"cb91abeed0555dfcafe849c37e7c9c32\";s:3:\"img\";s:34:\"cyber-carousel-lightbox/slide1.jpg\";s:7:\"preview\";s:71:\"https://www.sliderrevolution.com/templates/cyber-carousel-with-lightbox\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:218:\"<span class=\"ttm_content\">This fullscreen carousel has easy to edit content and vertical navigation tabs. The highlight color can be changed with one click upon opening the editor.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 15:50:15\";s:7:\"package\";s:23:\"Cyber Carousel Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"44\";s:9:\"installed\";b:0;}i:507;a:25:{s:2:\"id\";s:3:\"543\";s:5:\"title\";s:16:\"Woo Carousel One\";s:5:\"alias\";s:24:\"woocommerce-carousel-one\";s:3:\"zip\";s:28:\"woocommerce-carousel-one.zip\";s:3:\"uid\";s:32:\"df0a99cef3981ecb608dff4ed573a493\";s:3:\"img\";s:35:\"woocommerce-carousel-one/slide1.jpg\";s:7:\"preview\";s:67:\"https://www.sliderrevolution.com/templates/woocommerce-slider-pack/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:185:\"<span class=\"ttm_content\">A basic WooCommerce carousel. Just set your categories and the carousel will be populated with your WooCommerce products.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 16:02:45\";s:7:\"package\";s:15:\"Woo Slider Pack\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"45\";s:9:\"installed\";b:0;}i:508;a:25:{s:2:\"id\";s:3:\"544\";s:5:\"title\";s:23:\"Woo Carousel One Static\";s:5:\"alias\";s:31:\"woocommerce-carousel-one-static\";s:3:\"zip\";s:35:\"woocommerce-carousel-one-static.zip\";s:3:\"uid\";s:32:\"5c955a3850369e79b1e18921306ac1df\";s:3:\"img\";s:42:\"woocommerce-carousel-one-static/slide1.jpg\";s:7:\"preview\";s:63:\"https://sliderrevolution.com/templates/woocommerce-slider-pack/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A static content carousel. Please use the \"non-static\" version for WooCommerce.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 16:05:02\";s:7:\"package\";s:22:\"Woo Slider Pack Static\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"46\";s:9:\"installed\";b:0;}i:509;a:25:{s:2:\"id\";s:3:\"545\";s:5:\"title\";s:16:\"Woo Carousel Two\";s:5:\"alias\";s:24:\"woocommerce-carousel-two\";s:3:\"zip\";s:28:\"woocommerce-carousel-two.zip\";s:3:\"uid\";s:32:\"fdd797d8e98a9138f5563b68b95ebe1c\";s:3:\"img\";s:35:\"woocommerce-carousel-two/slide1.jpg\";s:7:\"preview\";s:67:\"https://www.sliderrevolution.com/templates/woocommerce-slider-pack/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:185:\"<span class=\"ttm_content\">A basic WooCommerce carousel. Just set your categories and the carousel will be populated with your WooCommerce products.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 16:06:57\";s:7:\"package\";s:15:\"Woo Slider Pack\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"45\";s:9:\"installed\";b:0;}i:510;a:25:{s:2:\"id\";s:3:\"546\";s:5:\"title\";s:23:\"Woo Carousel Two Static\";s:5:\"alias\";s:31:\"woocommerce-carousel-two-static\";s:3:\"zip\";s:35:\"woocommerce-carousel-two-static.zip\";s:3:\"uid\";s:32:\"2f3bfb1dfa99647426ce906f10dfc480\";s:3:\"img\";s:42:\"woocommerce-carousel-two-static/slide1.jpg\";s:7:\"preview\";s:63:\"https://sliderrevolution.com/templates/woocommerce-slider-pack/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A static content carousel. Please use the \"non-static\" version for WooCommerce.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 16:16:15\";s:7:\"package\";s:22:\"Woo Slider Pack Static\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"46\";s:9:\"installed\";b:0;}i:511;a:25:{s:2:\"id\";s:3:\"547\";s:5:\"title\";s:18:\"Woo Feature Slider\";s:5:\"alias\";s:26:\"woocommerce-feature-slider\";s:3:\"zip\";s:30:\"woocommerce-feature-slider.zip\";s:3:\"uid\";s:32:\"c8aa1f551065eeffc752f2d8daef6db1\";s:3:\"img\";s:37:\"woocommerce-feature-slider/slide1.jpg\";s:7:\"preview\";s:67:\"https://www.sliderrevolution.com/templates/woocommerce-slider-pack/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:181:\"<span class=\"ttm_content\">A basic WooCommerce slider. Just set your categories and the slider will be populated with your WooCommerce products.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 16:19:13\";s:7:\"package\";s:15:\"Woo Slider Pack\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"45\";s:9:\"installed\";b:0;}i:512;a:25:{s:2:\"id\";s:3:\"548\";s:5:\"title\";s:25:\"Woo Feature Slider Static\";s:5:\"alias\";s:33:\"woocommerce-feature-slider-static\";s:3:\"zip\";s:37:\"woocommerce-feature-slider-static.zip\";s:3:\"uid\";s:32:\"2f29e8fd101c799480152a7911b33ca6\";s:3:\"img\";s:44:\"woocommerce-feature-slider-static/slide1.jpg\";s:7:\"preview\";s:63:\"https://sliderrevolution.com/templates/woocommerce-slider-pack/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:140:\"<span class=\"ttm_content\">A static content slider Please use the \"non-static\" version for WooCommerce.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 16:20:57\";s:7:\"package\";s:22:\"Woo Slider Pack Static\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"46\";s:9:\"installed\";b:0;}i:513;a:22:{s:2:\"id\";s:3:\"549\";s:5:\"title\";s:17:\"Woo Liquid Slider\";s:5:\"alias\";s:17:\"woo-liquid-slider\";s:3:\"zip\";s:21:\"woo-liquid-slider.zip\";s:3:\"uid\";s:32:\"9f455f73675a73dbefe820288e994f27\";s:3:\"img\";s:28:\"woo-liquid-slider/slide1.jpg\";s:7:\"preview\";s:68:\"https://www.sliderrevolution.com/templates/woocommerce-liquid-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:236:\"<span class=\"ttm_content\">A WooCommerce slider using the BubbleMorph addon for an interesting liquid effect. Just set your categories and the slider will be populated with your WooCommerce products.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";i:2;s:11:\"woocommerce\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-01-19 16:23:03\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:514;a:22:{s:2:\"id\";s:3:\"550\";s:5:\"title\";s:24:\"Woo Liquid Slider Static\";s:5:\"alias\";s:32:\"woocommerce-liquid-slider-static\";s:3:\"zip\";s:36:\"woocommerce-liquid-slider-static.zip\";s:3:\"uid\";s:32:\"5848192fea46ffee95a91aa531848e19\";s:3:\"img\";s:43:\"woocommerce-liquid-slider-static/slide1.jpg\";s:7:\"preview\";s:68:\"https://www.sliderrevolution.com/templates/woocommerce-liquid-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:203:\"<span class=\"ttm_content\">A static content slider using the BubbleMorph addon for an interesting liquid effect. For WooCommerce, please use the \"non-static\" version.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-01-19 16:24:35\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:515;a:25:{s:2:\"id\";s:3:\"551\";s:5:\"title\";s:15:\"Woo Slider Pack\";s:5:\"alias\";s:15:\"woo-slider-pack\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:15:\"woo-slider-pack\";s:3:\"img\";s:34:\"packages/woosliderpack_dynamic.jpg\";s:7:\"preview\";s:67:\"https://www.sliderrevolution.com/templates/woocommerce-slider-pack/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:181:\"<span class=\"ttm_content\">A basic WooCommerce slider. Just set your categories and the slider will be populated with your WooCommerce products.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:4:{i:0;s:8:\"carousel\";i:1;s:6:\"slider\";i:2;s:9:\"postbased\";i:3;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-20 09:34:45\";s:7:\"package\";s:15:\"Woo Slider Pack\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"45\";s:9:\"installed\";b:0;}i:516;a:25:{s:2:\"id\";s:3:\"552\";s:5:\"title\";s:22:\"Woo Slider Pack Static\";s:5:\"alias\";s:22:\"woo-slider-pack-static\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:22:\"woo-slider-pack-static\";s:3:\"img\";s:33:\"packages/woosliderpack_static.jpg\";s:7:\"preview\";s:67:\"https://www.sliderrevolution.com/templates/woocommerce-slider-pack/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:181:\"<span class=\"ttm_content\">A basic WooCommerce slider. Just set your categories and the slider will be populated with your WooCommerce products.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-20 09:39:21\";s:7:\"package\";s:22:\"Woo Slider Pack Static\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"46\";s:9:\"installed\";b:0;}i:517;a:22:{s:2:\"id\";s:3:\"553\";s:5:\"title\";s:24:\"Creative Hero Collection\";s:5:\"alias\";s:24:\"creative-hero-collection\";s:3:\"zip\";s:28:\"creative-hero-collection.zip\";s:3:\"uid\";s:32:\"e20126d93d081055e5ff3f6981b971fa\";s:3:\"img\";s:35:\"creative-hero-collection/slide1.jpg\";s:7:\"preview\";s:68:\"https://www.sliderrevolution.com/templates/creative-hero-collection/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:245:\"<span class=\"ttm_content\">A fantastic intro presentation for almost any website. If you want to use a single slide as a hero, simply drag it to the first position and set the layout of the module to \"scene\".</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:348:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-02-23 10:22:47\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:518;a:22:{s:2:\"id\";s:3:\"554\";s:5:\"title\";s:12:\"Photo Slider\";s:5:\"alias\";s:19:\"photographer-slider\";s:3:\"zip\";s:23:\"photographer-slider.zip\";s:3:\"uid\";s:32:\"e00104cff231e2aaeb149b3c63e78a5e\";s:3:\"img\";s:30:\"photographer-slider/slide1.jpg\";s:7:\"preview\";s:80:\"https://www.sliderrevolution.com/templates/photographer-and-videographer-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:169:\"<span class=\"ttm_content\">A great module for any photographer/videographer who wants to display their portfolio in an engaging way.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-02-23 10:25:31\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:519;a:22:{s:2:\"id\";s:3:\"555\";s:5:\"title\";s:18:\"Real Estate Slider\";s:5:\"alias\";s:17:\"realestate-slider\";s:3:\"zip\";s:21:\"realestate-slider.zip\";s:3:\"uid\";s:32:\"596effabfef768f0371cba2b1fdd0c1d\";s:3:\"img\";s:28:\"realestate-slider/slide1.jpg\";s:7:\"preview\";s:71:\"https://www.sliderrevolution.com/templates/real-estate-showcase-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:152:\"<span class=\"ttm_content\">Showcase your clients real estate offerings with this clean and convincing presentation.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-02-23 10:45:36\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:520;a:22:{s:2:\"id\";s:3:\"556\";s:5:\"title\";s:19:\"Saas Product Slider\";s:5:\"alias\";s:19:\"saas-product-slider\";s:3:\"zip\";s:23:\"saas-product-slider.zip\";s:3:\"uid\";s:32:\"3cf7809058f383425c5409aa1204335f\";s:3:\"img\";s:30:\"saas-product-slider/slide1.jpg\";s:7:\"preview\";s:63:\"https://www.sliderrevolution.com/templates/saas-product-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">Present your digital SaaS product with a modern design and stunning animations.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:349:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"},{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-02-23 10:49:44\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:521;a:25:{s:2:\"id\";s:3:\"557\";s:5:\"title\";s:27:\"Cinematic Wildlife Template\";s:5:\"alias\";s:27:\"cinematic-wildlife-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:27:\"cinematic-wildlife-template\";s:3:\"img\";s:39:\"packages/cinematic-wildlife-package.jpg\";s:7:\"preview\";s:69:\"https://www.sliderrevolution.com/templates/cinematic-wildlife-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:185:\"<span class=\"ttm_content\">Easily create cinematic presentations with this photography-based slider, that features a convenient YouTube video popup.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-04-16 10:45:38\";s:7:\"package\";s:27:\"Cinematic Wildlife Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"47\";s:9:\"installed\";b:0;}i:522;a:25:{s:2:\"id\";s:3:\"558\";s:5:\"title\";s:25:\"Cinematic Wildlife Slider\";s:5:\"alias\";s:25:\"cinematic-wildlife-slider\";s:3:\"zip\";s:35:\"packs/cinematic-wildlife-slider.zip\";s:3:\"uid\";s:32:\"a37b04e221a845d6d446f4d70e815b87\";s:3:\"img\";s:36:\"cinematic-wildlife-slider/slide1.jpg\";s:7:\"preview\";s:69:\"https://www.sliderrevolution.com/templates/cinematic-wildlife-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:185:\"<span class=\"ttm_content\">Easily create cinematic presentations with this photography-based slider, that features a convenient YouTube video popup.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-04-16 10:47:01\";s:7:\"package\";s:27:\"Cinematic Wildlife Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"47\";s:9:\"installed\";b:0;}i:523;a:25:{s:2:\"id\";s:3:\"559\";s:5:\"title\";s:24:\"Cinematic Wildlife Modal\";s:5:\"alias\";s:24:\"cinematic-wildlife-modal\";s:3:\"zip\";s:34:\"packs/cinematic-wildlife-modal.zip\";s:3:\"uid\";s:32:\"636a6885199f684ad743167ceea70dc4\";s:3:\"img\";s:35:\"cinematic-wildlife-modal/slide1.jpg\";s:7:\"preview\";s:69:\"https://www.sliderrevolution.com/templates/cinematic-wildlife-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:185:\"<span class=\"ttm_content\">Easily create cinematic presentations with this photography-based slider, that features a convenient YouTube video popup.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-04-16 10:50:56\";s:7:\"package\";s:27:\"Cinematic Wildlife Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"47\";s:9:\"installed\";b:0;}i:524;a:22:{s:2:\"id\";s:3:\"560\";s:5:\"title\";s:32:\"Gaming Stats Presentation Slider\";s:5:\"alias\";s:32:\"gaming-stats-presentation-slider\";s:3:\"zip\";s:36:\"gaming-stats-presentation-slider.zip\";s:3:\"uid\";s:32:\"988df5050f2a45a108ef32518a725bf8\";s:3:\"img\";s:43:\"gaming-stats-presentation-slider/slide1.jpg\";s:7:\"preview\";s:76:\"https://www.sliderrevolution.com/templates/charts-addon-presentation-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.4.11\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:156:\"<span class=\"ttm_content\">Create interactive presentations and showcase statistics with unique and customizable charts</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:159:\"[{\"path\":\"revslider-charts-addon\\/revslider-charts-addon.php\",\"name\":\"Charts AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-04-29 09:50:58\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:525;a:22:{s:2:\"id\";s:3:\"561\";s:5:\"title\";s:31:\"Coffee Shop Split Screen Slider\";s:5:\"alias\";s:15:\"coffee-flavours\";s:3:\"zip\";s:19:\"coffee-flavours.zip\";s:3:\"uid\";s:32:\"63726447a6a614d8f53fbf6024fd3033\";s:3:\"img\";s:25:\"coffee-flavors/slide1.jpg\";s:7:\"preview\";s:75:\"https://www.sliderrevolution.com/templates/coffee-shop-split-screen-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:249:\"<span class=\"ttm_content\">The animated elements and clean layout make this slider an eye-catcher for your coffee shop. With it\'s easy customizability, this template is perfect for showcasing any type of product!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-06-11 09:09:52\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:526;a:22:{s:2:\"id\";s:3:\"562\";s:5:\"title\";s:32:\"Modern Portfolio Showreel Slider\";s:5:\"alias\";s:15:\"showreel-slider\";s:3:\"zip\";s:19:\"showreel-slider.zip\";s:3:\"uid\";s:32:\"bced29a585e67153a1ed7608ddcdb69d\";s:3:\"img\";s:26:\"showreel-slider/slide1.jpg\";s:7:\"preview\";s:76:\"https://www.sliderrevolution.com/templates/modern-portfolio-showreel-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:216:\"<span class=\"ttm_content\">Showcase beautiful videos and photography with this clean looking slider with modern UI and effective typography. Perfect for any creative professional.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-06-11 09:14:43\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:527;a:22:{s:2:\"id\";s:3:\"563\";s:5:\"title\";s:23:\"Visual Art Forms Slider\";s:5:\"alias\";s:16:\"visual-art-forms\";s:3:\"zip\";s:20:\"visual-art-forms.zip\";s:3:\"uid\";s:32:\"4d57a5abf20bc4a615fe30837ac3ce1a\";s:3:\"img\";s:27:\"visual-art-forms/slide1.jpg\";s:7:\"preview\";s:67:\"https://www.sliderrevolution.com/templates/visual-art-forms-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:180:\"<span class=\"ttm_content\">Present just about anything with this highly flexible and modern looking slider, no matter what industry you are in.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-06-11 09:18:19\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}}s:6:\"slides\";a:505:{s:16:\"classic-carousel\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"classic-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"classic-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"classic-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"classic-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"classic-carousel/slide5.jpg\";}}s:13:\"classicslider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"classicslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"classicslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"classicslider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"classicslider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:24:\"classicslider/slide5.jpg\";}}s:11:\"contenttabs\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"contenttabs/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"contenttabs/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"contenttabs/slide3.jpg\";}}s:13:\"facebook-feed\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"facebook-feed/slide1.jpg\";}}s:7:\"fashion\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"fashion/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"fashion/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"fashion/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:18:\"fashion/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:18:\"fashion/slide5.jpg\";}}s:14:\"flickr-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"flickr-gallery/slide1.jpg\";}}s:3:\"gym\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:14:\"gym/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:14:\"gym/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:14:\"gym/slide3.jpg\";}}s:18:\"highlight-carousel\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"highlight-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"highlight-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"highlight-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"highlight-carousel/slide4.jpg\";}}s:18:\"highlight-showcase\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"highlight-showcase/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"highlight-showcase/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"highlight-showcase/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"highlight-showcase/slide4.jpg\";}}s:10:\"image-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"imagehero/slide1.jpg\";}}s:13:\"insta-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"insta-gallery/slide1.jpg\";}}s:19:\"levanorestaurantbar\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"levanorestaurantbar/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"levanorestaurantbar/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"levanorestaurantbar/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:30:\"levanorestaurantbar/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:30:\"levanorestaurantbar/slide5.jpg\";}}s:11:\"mainfeature\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"mainfeature/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"mainfeature/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"mainfeature/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:22:\"mainfeature/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:22:\"mainfeature/slide7.jpg\";}}s:17:\"media-gallery-two\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"media-gallery-two/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"media-gallery-two/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"media-gallery-two/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"media-gallery-two/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:28:\"media-gallery-two/slide6.jpg\";}}s:23:\"media-carousel-autoplay\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide6.jpg\";}}s:21:\"news-background-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"news-bg-video/slide1.jpg\";}}s:12:\"news-gallery\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"news-gallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"news-gallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"news-gallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"news-gallery/slide4.jpg\";}}s:23:\"news-gallery-post-based\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"news-gallery-post-based/slide1.jpg\";}}s:9:\"news-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"news-hero/slide1.jpg\";}}s:10:\"news-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"news-video/slide1.jpg\";}}s:15:\"newsletter-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"newsletter-hero/slide1.jpg\";}}s:10:\"notgeneric\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"notgeneric/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"notgeneric/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"notgeneric/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:21:\"notgeneric/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:21:\"notgeneric/slide5.jpg\";}}s:11:\"photography\";a:10:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"photography/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"photography/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"photography/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:22:\"photography/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:22:\"photography/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:22:\"photography/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:22:\"photography/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:22:\"photography/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:22:\"photography/slide9.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:23:\"photography/slide10.jpg\";}}s:20:\"photography-carousel\";a:10:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"photography-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"photography-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"photography-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:31:\"photography-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:31:\"photography-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:31:\"photography-carousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:31:\"photography-carousel/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:31:\"photography-carousel/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:31:\"photography-carousel/slide9.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:32:\"photography-carousel/slide10.jpg\";}}s:16:\"search-form-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"search-form-hero/slide1.jpg\";}}s:16:\"showcasecarousel\";a:9:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"showcasecarousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"showcasecarousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"showcasecarousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"showcasecarousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"showcasecarousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:27:\"showcasecarousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:27:\"showcasecarousel/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:27:\"showcasecarousel/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:27:\"showcasecarousel/slide9.jpg\";}}s:11:\"sports-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"sportshero/slide1.jpg\";}}s:12:\"twitter-feed\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"twitter-feed/slide1.jpg\";}}s:13:\"vimeo-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"vimeo-gallery/slide1.jpg\";}}s:9:\"vimeohero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"vimeohero/slide1.jpg\";}}s:16:\"web-product-dark\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"web-product-dark/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"web-product-dark/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"web-product-dark/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"web-product-dark/slide4.jpg\";}}s:21:\"web-product-dark-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"web-product-dark-hero/slide1.jpg\";}}s:22:\"web-product-light-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"web-product-light-hero/slide1.jpg\";}}s:15:\"webproductlight\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"webproductlight/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"webproductlight/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"webproductlight/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"webproductlight/slide4.jpg\";}}s:15:\"youtube-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"youtube-gallery/slide1.jpg\";}}s:11:\"youtubehero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"youtubehero/slide1.jpg\";}}s:13:\"scroll-effect\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"scrolleffect/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"scrolleffect/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"scrolleffect/slide3.jpg\";}}s:12:\"content-zoom\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"contentzoom/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"contentzoom/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"contentzoom/slide3.jpg\";}}s:13:\"food-carousel\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"foodcarousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"foodcarousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"foodcarousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"foodcarousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:23:\"foodcarousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:23:\"foodcarousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:23:\"foodcarousel/slide7.jpg\";}}s:14:\"rotating-words\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"rotatingwords/slide1.jpg\";}}s:22:\"travel-static-captions\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"travel-static-captions/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"travel-static-captions/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"travel-static-captions/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:33:\"travel-static-captions/slide4.jpg\";}}s:7:\"concept\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"concept/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"concept/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"concept/slide3.jpg\";}}s:17:\"fullscreen-button\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"fullscreen-button/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"fullscreen-button/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"fullscreen-button/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"fullscreen-button/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:28:\"fullscreen-button/slide5.jpg\";}}s:15:\"creativefreedom\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"creativefreedom/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"creativefreedom/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"creativefreedom/slide3.jpg\";}}s:13:\"parallaxscene\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"parallaxscene/slide1.jpg\";}}s:15:\"slidingoverlays\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"slidingoverlays/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"slidingoverlays/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"slidingoverlays/slide3.jpg\";}}s:25:\"web-product-light-hero-3d\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"web-product-light-hero-3d/slide1.jpg\";}}s:6:\"woobig\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"woobig/slide1.jpg\";}}s:16:\"woocommercesmall\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"woocommercesmall/slide1.jpg\";}}s:10:\"finedining\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"finedining/slide1.jpg\";}}s:12:\"agency-intro\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"agency-intro/slide1.jpg\";}}s:7:\"ourteam\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"ourteam/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"ourteam/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"ourteam/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:18:\"ourteam/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:18:\"ourteam/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:18:\"ourteam/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:18:\"ourteam/slide7.jpg\";}}s:17:\"our-team-carousel\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"ourteamcarousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"ourteamcarousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"ourteamcarousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"ourteamcarousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"ourteamcarousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:26:\"ourteamcarousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:26:\"ourteamcarousel/slide7.jpg\";}}s:13:\"betteryoutube\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"betteryoutube/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"betteryoutube/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"betteryoutube/slide3.jpg\";}}s:19:\"agencywebsiteheader\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"agencywebsiteheader/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"agencywebsiteheader/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"agencywebsiteheader/slide3.jpg\";}}s:10:\"comingsoon\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"comingsoon/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"comingsoon/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"comingsoon/slide3.jpg\";}}s:9:\"snowscene\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"snowscene/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:20:\"snowscene/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:20:\"snowscene/slide3.jpg\";}}s:8:\"rockband\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:19:\"rockband/slide1.jpg\";}}s:16:\"sleeklandingpage\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"sleeklandingpage/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"sleeklandingpage/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"sleeklandingpage/slide3.jpg\";}}s:14:\"applandingpage\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"applandingpage/slide1.jpg\";}}s:9:\"deskscene\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"deskscene/slide1.jpg\";}}s:15:\"cleannewsslider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"cleannewsslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"cleannewsslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"cleannewsslider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"cleannewsslider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"cleannewsslider/slide5.jpg\";}}s:12:\"imagegallery\";a:8:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"imagegallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"imagegallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"imagegallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"imagegallery/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:23:\"imagegallery/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:23:\"imagegallery/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:23:\"imagegallery/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:23:\"imagegallery/slide8.jpg\";}}s:19:\"standard-wp-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"standard-wp-gallery/slide1.jpg\";}}s:21:\"clean-news-post-based\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"clean-news-post-based/slide1.jpg\";}}s:21:\"interactivewhiteboard\";a:8:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"interactivewhiteboard/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"interactivewhiteboard/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"interactivewhiteboard/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"interactivewhiteboard/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:32:\"interactivewhiteboard/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:32:\"interactivewhiteboard/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:32:\"interactivewhiteboard/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:32:\"interactivewhiteboard/slide8.jpg\";}}s:10:\"innovation\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"innovation/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"innovation/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"innovation/slide3.jpg\";}}s:24:\"dark-fullsite-block-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"dark-fullsite-block-menu/slide1.jpg\";}}s:21:\"dark-fullsite-block-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"dark-fullsite-block-1/slide1.jpg\";}}s:27:\"dark-fullsite-block-2-about\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"dark-fullsite-block-2-about/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:38:\"dark-fullsite-block-2-about/slide2.jpg\";}}s:30:\"dark-fullsite-block-3-services\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:41:\"dark-fullsite-block-3-services/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:41:\"dark-fullsite-block-3-services/slide2.jpg\";}}s:30:\"dark-fullsite-block-4-products\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide5.jpg\";}}s:34:\"dark-fullsite-block-5-testimonials\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:45:\"dark-fullsite-block-5-testimonials/slide1.jpg\";}}s:29:\"dark-fullsite-block-6-callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:40:\"dark-fullsite-block-6-callout/slide1.jpg\";}}s:28:\"dark-fullsite-block-7-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"dark-fullsite-block-7-footer/slide1.jpg\";}}s:19:\"fullsite-block-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"fullsite-block-menu/slide1.jpg\";}}s:15:\"fullsite-block1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"fullsite-block1/slide1.jpg\";}}s:22:\"fullsite-block-2-about\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"fullsite-block-2-about/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"fullsite-block-2-about/slide2.jpg\";}}s:25:\"fullsite-block-3-services\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"fullsite-block-3-services/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"fullsite-block-3-services/slide2.jpg\";}}s:25:\"fullsite-block-4-products\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide5.jpg\";}}s:29:\"fullsite-block-5-testimonials\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:40:\"fullsite-block-5-testimonials/slide1.jpg\";}}s:24:\"fullsite-block-6-callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"fullsite-block-6-callout/slide1.jpg\";}}s:23:\"fullsite-block-7-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"fullsite-block-7-footer/slide1.jpg\";}}s:11:\"techjournal\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"techjournal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"techjournal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"techjournal/slide3.jpg\";}}s:13:\"cardealership\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"cardealership/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"cardealership/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"cardealership/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"cardealership/slide4.jpg\";}}s:14:\"fullscreenmenu\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"fullscreenmenu/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"fullscreenmenu/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"fullscreenmenu/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:25:\"fullscreenmenu/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:25:\"fullscreenmenu/slide5.jpg\";}}s:17:\"creativefrontpage\";a:8:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"creativefrontpage/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"creativefrontpage/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"creativefrontpage/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"creativefrontpage/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:28:\"creativefrontpage/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:28:\"creativefrontpage/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:28:\"creativefrontpage/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:28:\"creativefrontpage/slide8.jpg\";}}s:19:\"websitebuilder-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"websitebuilder-menu/slide1.jpg\";}}s:19:\"websitebuilder-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"websitebuilder-hero/slide1.jpg\";}}s:22:\"websitebuilder-clients\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"websitebuilder-clients/slide1.jpg\";}}s:23:\"websitebuilder-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"websitebuilder-services/slide1.jpg\";}}s:23:\"websitebuilder-discover\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"websitebuilder-discover/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"websitebuilder-discover/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"websitebuilder-discover/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"websitebuilder-discover/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:34:\"websitebuilder-discover/slide5.jpg\";}}s:21:\"websitebuilder-slider\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"websitebuilder-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"websitebuilder-slider/slide2.jpg\";}}s:27:\"websitebuilder-calltoaction\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"websitebuilder-calltoaction/slide1.jpg\";}}s:21:\"websitebuilder-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"websitebuilder-footer/slide1.jpg\";}}s:13:\"focusparallax\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"focusparallax/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"focusparallax/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"focusparallax/slide3.jpg\";}}s:7:\"duotone\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"duotone/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"duotone/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"duotone/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:18:\"duotone/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:18:\"duotone/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:18:\"duotone/slide6.jpg\";}}s:6:\"r_menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"r_menu/slide1.jpg\";}}s:5:\"rhero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"r_hero/slide1.jpg\";}}s:7:\"r_about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"r_about/slide1.jpg\";}}s:10:\"r_products\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"r_products/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"r_products/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"r_products/slide3.jpg\";}}s:6:\"r_info\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"r_info/slide1.jpg\";}}s:17:\"inspirationheader\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"inspirationheader/slide1.jpg\";}}s:13:\"magazineposts\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"magazineposts/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"magazineposts/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"magazineposts/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"magazineposts/slide4.jpg\";}}s:17:\"explorationheader\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"explorationheader/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"explorationheader/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"explorationheader/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"explorationheader/slide4.jpg\";}}s:16:\"typewritereffect\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"typewritereffect/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"typewritereffect/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"typewritereffect/slide3.jpg\";}}s:15:\"blendmodeheader\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"blendmodeheader/slide1.jpg\";}}s:17:\"themeplicity_menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"themeplicity_menu/slide1.jpg\";}}s:19:\"themeplicity_header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"themeplicity_header/slide1.jpg\";}}s:18:\"themeplicity_offer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"themeplicity_offer/slide1.jpg\";}}s:21:\"themeplicity_whatwedo\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"themeplicity_whatwedo/slide1.jpg\";}}s:21:\"themeplicity_projects\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"themeplicity_projects/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"themeplicity_projects/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"themeplicity_projects/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"themeplicity_projects/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:32:\"themeplicity_projects/slide5.jpg\";s:3:\"img\";s:7:\"Slide 5\";}}s:23:\"themeplicity_whatsgreat\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"themeplicity_whatsgreat/slide1.jpg\";}}s:19:\"themeplicity_tables\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"themeplicity_tables/slide1.jpg\";}}s:24:\"themeplicity_contactform\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"themeplicity_contactform/slide1.jpg\";}}s:19:\"themeplicity_footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"themeplicity_footer/slide1.jpg\";}}s:17:\"NiceAndClean_Menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"NiceAndClean_Menu/slide1.jpg\";}}s:19:\"NiceAndClean_Header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"NiceAndClean_Header/slide1.jpg\";}}s:21:\"NiceAndClean_Services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"NiceAndClean_Services/slide1.jpg\";}}s:18:\"NiceAndClean_About\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"NiceAndClean_About/slide1.jpg\";}}s:18:\"niceandclean_video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"niceandclean_video/slide1.jpg\";}}s:23:\"niceandclean_highlights\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"niceandclean_highlights/slide1.jpg\";}}s:21:\"NiceAndClean_Projects\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide5.jpg\";}}s:23:\"niceandclean_textblocks\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"niceandclean_textblocks/slide1.jpg\";}}s:20:\"niceandclean_callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"niceandclean_callout/slide1.jpg\";}}s:19:\"niceandclean_footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"niceandclean_footer/slide1.jpg\";}}s:3:\"80s\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:14:\"80s/slide1.jpg\";}}s:10:\"blurslider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"blurslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"blurslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"blurslider/slide3.jpg\";}}s:15:\"ComingSoonAddon\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"ComingSoonAddon/slide1.jpg\";}}s:9:\"snowaddon\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"snowaddon/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:20:\"snowaddon/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:20:\"snowaddon/slide3.jpg\";}}s:19:\"particle-effect-one\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"particle-effect-one/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"particle-effect-one/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"particle-effect-one/slide3.jpg\";}}s:19:\"particle-effect-two\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"particle-effect-two/slide1.jpg\";}}s:21:\"particle-effect-three\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"particle-effect-three/slide1.jpg\";}}s:15:\"portfolioviewer\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"portfolioviewer/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"portfolioviewer/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"portfolioviewer/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"portfolioviewer/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"portfolioviewer/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:26:\"portfolioviewer/slide6.jpg\";}}s:11:\"appshowcase\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"appshowcase/slide1.jpg\";}}s:13:\"gravitydesign\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"gravitydesign/slide1.jpg\";}}s:12:\"404errorpage\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"404errorpage/slide1.jpg\";}}s:15:\"carouselgallery\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"carouselgallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"carouselgallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"carouselgallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"carouselgallery/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"carouselgallery/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:26:\"carouselgallery/slide6.jpg\";}}s:9:\"filmstrip\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"filmstrip/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:20:\"filmstrip/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:20:\"filmstrip/slide3.jpg\";}}s:10:\"spaceopera\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"spaceopera/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"spaceopera/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"spaceopera/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:21:\"spaceopera/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:21:\"spaceopera/slide5.jpg\";}}s:12:\"websiteintro\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"websiteintro/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"websiteintro/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"websiteintro/slide3.jpg\";}}s:12:\"maskshowcase\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"maskshowcase/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"maskshowcase/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"maskshowcase/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"maskshowcase/slide4.jpg\";}}s:18:\"parallaxzoomslices\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"parallaxzoomslices/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"parallaxzoomslices/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"parallaxzoomslices/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"parallaxzoomslices/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:29:\"parallaxzoomslices/slide5.jpg\";}}s:20:\"doubleexposureeffect\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"doubleexposureeffect/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"doubleexposureeffect/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"doubleexposureeffect/slide3.jpg\";}}s:22:\"mountainparallaxheader\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"mountainparallaxheader/slide1.jpg\";}}s:12:\"goodnewsmenu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"goodnewsmenu/slide1.jpg\";}}s:14:\"goodnewsheader\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"goodnewsheader/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"goodnewsheader/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"goodnewsheader/slide3.jpg\";}}s:16:\"goodnewswhatshot\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"goodnewswhatshot/slide1.jpg\";}}s:16:\"goodnewsfeatured\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"goodnewsfeatured/slide1.jpg\";}}s:17:\"goodnewsspotlight\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"goodnewsspotlight/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"goodnewsspotlight/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"goodnewsspotlight/slide3.jpg\";}}s:16:\"goodnewscarousel\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"goodnewscarousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"goodnewscarousel/slide2.jpg\";}}s:15:\"goodnewscallout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"goodnewscallout/slide1.jpg\";}}s:14:\"goodnewsfooter\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"goodnewsfooter/slide1.jpg\";}}s:16:\"goodnewsmenuback\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"goodnewsmenuback/slide1.jpg\";}}s:18:\"goodnewsblogheader\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"goodnewsblogheader/slide1.jpg\";}}s:19:\"goodnewsblogcontent\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"goodnewsblogcontent/slide1.jpg\";}}s:20:\"goodnewstestimonials\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"goodnewstestimonials/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"goodnewstestimonials/slide2.jpg\";}}s:18:\"goodnewsblogfooter\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"goodnewsblogfooter/slide1.jpg\";}}s:17:\"beforeafterslider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"beforeafterslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"beforeafterslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"beforeafterslider/slide3.jpg\";}}s:15:\"productshowcase\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"productshowcase/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"productshowcase/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"productshowcase/slide3.jpg\";}}s:22:\"overexposuretransition\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"overexposuretransition/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"overexposuretransition/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"overexposuretransition/slide3.jpg\";}}s:14:\"parallaxscroll\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"parallaxscroll/slide1.jpg\";}}s:11:\"techco-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"techco-menu/slide1.jpg\";}}s:13:\"techco-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"techco-header/slide1.jpg\";}}s:12:\"techco-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"techco-about/slide1.jpg\";}}s:15:\"techco-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"techco-services/slide1.jpg\";}}s:12:\"techco-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"techco-video/slide1.jpg\";}}s:13:\"techco-prices\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"techco-prices/slide1.jpg\";}}s:19:\"techco-testimonials\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"techco-testimonials/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"techco-testimonials/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"techco-testimonials/slide3.jpg\";}}s:13:\"techco-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"techco-footer/slide1.jpg\";}}s:7:\"weather\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"weather/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"weather/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"weather/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:18:\"weather/slide4.jpg\";}}s:11:\"360panorama\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"360panorama/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"360panorama/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"360panorama/slide3.jpg\";}}s:14:\"duotone-add-on\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"duotone-add-on/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"duotone-add-on/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"duotone-add-on/slide3.jpg\";}}s:13:\"reveal-add-on\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"reveal-add-on/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"reveal-add-on/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"reveal-add-on/slide3.jpg\";}}s:16:\"band-tour-poster\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:40:\"smartcontent/band-tour-poster/slide1.png\";}}s:14:\"brewery-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"smartcontent/brewery-slider/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:38:\"smartcontent/brewery-slider/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:38:\"smartcontent/brewery-slider/slide3.png\";}}s:9:\"burgerbar\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"smartcontent/burgerbar/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"smartcontent/burgerbar/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"smartcontent/burgerbar/slide3.png\";}}s:19:\"burger-bar-portrait\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:43:\"smartcontent/burger-bar-portrait/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:43:\"smartcontent/burger-bar-portrait/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:43:\"smartcontent/burger-bar-portrait/slide3.png\";}}s:8:\"car-rent\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"smartcontent/car-rent/slide1.png\";}}s:6:\"coffee\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"smartcontent/coffee/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"smartcontent/coffee/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"smartcontent/coffee/slide3.png\";}}s:14:\"holiday-advert\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"smartcontent/holiday-advert/slide1.png\";}}s:18:\"iphone-cases-light\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:42:\"smartcontent/iphone-cases-light/slide1.png\";}}s:7:\"medical\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"smartcontent/medical/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"smartcontent/medical/slide2.png\";}}s:13:\"mexican-grill\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"smartcontent/mexican-grill/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:37:\"smartcontent/mexican-grill/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:37:\"smartcontent/mexican-grill/slide3.png\";}}s:20:\"mobile-retail-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:44:\"smartcontent/mobile-retail-slider/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:44:\"smartcontent/mobile-retail-slider/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:44:\"smartcontent/mobile-retail-slider/slide3.png\";}}s:14:\"money-exchange\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"smartcontent/money-exchange/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:38:\"smartcontent/money-exchange/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:38:\"smartcontent/money-exchange/slide3.png\";}}s:28:\"restaurant-menu-first-screen\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:52:\"smartcontent/restaurant-menu-first-screen/slide1.png\";}}s:29:\"restaurant-menu-second-screen\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:53:\"smartcontent/restaurant-menu-second-screen/slide1.png\";}}s:28:\"restaurant-menu-third-screen\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:52:\"smartcontent/restaurant-menu-third-screen/slide1.png\";}}s:11:\"shoes-store\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"smartcontent/shoes-store/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:35:\"smartcontent/shoes-store/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:35:\"smartcontent/shoes-store/slide3.png\";}}s:20:\"supermarket-products\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:44:\"smartcontent/supermarket-products/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:44:\"smartcontent/supermarket-products/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:44:\"smartcontent/supermarket-products/slide3.png\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:44:\"smartcontent/supermarket-products/slide4.png\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:44:\"smartcontent/supermarket-products/slide5.png\";}}s:16:\"travel-insurance\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:40:\"smartcontent/travel-insurance/slide1.png\";}}s:12:\"cryptoslider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"cryptoslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"cryptoslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"cryptoslider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"cryptoslider/slide4.jpg\";}}s:16:\"immersion_header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"immersion_header/slide1.jpg\";}}s:19:\"immersion-mountains\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"immersion-mountains/slide1.jpg\";}}s:17:\"immersion-product\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"immersion-product/slide1.jpg\";}}s:16:\"immersion-design\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"immersion-design/slide1.jpg\";}}s:21:\"immersion-photography\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"immersion-photography/slide1.jpg\";}}s:14:\"immersion-grid\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"immersion-grid/slide1.jpg\";}}s:11:\"funkyslider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"funkyslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"funkyslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"funkyslider/slide3.jpg\";}}s:14:\"clearview_menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"clearview_menu/slide1.jpg\";}}s:16:\"clearview_header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"clearview_header/slide1.jpg\";}}s:17:\"clearview_mission\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"clearview_mission/slide1.jpg\";}}s:17:\"clear-view-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"clear-view-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"clear-view-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"clear-view-slider/slide3.jpg\";}}s:15:\"clear-view-news\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"clear-view-news/slide1.jpg\";}}s:18:\"clear-view-clients\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"clear-view-clients/slide1.jpg\";}}s:18:\"clear-view-contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"clear-view-contact/slide1.jpg\";}}s:22:\"clear-view-single-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"clear-view-single-menu/slide1.jpg\";}}s:24:\"clear-view-single-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"clear-view-single-header/slide1.jpg\";}}s:23:\"clear-view-single-media\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"clear-view-single-media/slide1.jpg\";}}s:22:\"clear-view-single-more\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"clear-view-single-more/slide1.jpg\";}}s:25:\"clear-view-single-contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"clear-view-single-contact/slide1.jpg\";}}s:16:\"cleanlandingpage\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"cleanlandingpage/slide1.jpg\";}}s:8:\"clearcut\";a:10:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:19:\"clearcut/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:19:\"clearcut/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:19:\"clearcut/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:19:\"clearcut/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:19:\"clearcut/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:19:\"clearcut/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:19:\"clearcut/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:19:\"clearcut/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:19:\"clearcut/slide9.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:20:\"clearcut/slide10.jpg\";}}s:17:\"wonderstruck_menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"wonderstruck_menu/slide1.jpg\";}}s:19:\"wonderstruck_header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"wonderstruck_header/slide1.jpg\";}}s:18:\"wonderstruck_about\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"wonderstruck_about/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"wonderstruck_about/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"wonderstruck_about/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"wonderstruck_about/slide4.jpg\";}}s:18:\"wonderstruck-works\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"wonderstruck-works/slide1.jpg\";}}s:20:\"wonderstruck-contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"wonderstruck-contact/slide1.jpg\";}}s:11:\"bubblemorph\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"bubblemorph/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"bubblemorph/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"bubblemorph/slide3.jpg\";}}s:15:\"distortionaddon\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"distortionaddon/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"distortionaddon/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"distortionaddon/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"distortionaddon/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"distortionaddon/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:26:\"distortionaddon/slide6.jpg\";}}s:9:\"clubflyer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"clubflyer/slide1.jpg\";}}s:15:\"paintbrushaddon\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"paintbrushaddon/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"paintbrushaddon/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"paintbrushaddon/slide3.jpg\";}}s:15:\"parallax_header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"parallax_header/slide1.jpg\";}}s:16:\"parallax_content\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"parallax_content/slide1.jpg\";}}s:15:\"parallax_footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"parallax_footer/slide1.jpg\";}}s:12:\"le-chef-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"le-chef-menu/slide1.jpg\";}}s:14:\"le-chef-header\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"le-chef-header/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"le-chef-header/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"le-chef-header/slide3.jpg\";}}s:18:\"le-chef-philosophy\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"le-chef-philosophy/slide1.jpg\";}}s:12:\"le-chef-food\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"le-chef-food/slide1.jpg\";}}s:16:\"le-chef-la-carte\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"le-chef-la-carte/slide1.jpg\";}}s:14:\"le-chef-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"le-chef-footer/slide1.jpg\";}}s:20:\"news-magazine-slider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"news-magazine-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"news-magazine-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"news-magazine-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:31:\"news-magazine-slider/slide4.jpg\";}}s:18:\"real-estate-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"real-estate-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"real-estate-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"real-estate-slider/slide3.jpg\";}}s:14:\"fashion-header\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"fashion-header/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"fashion-header/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"fashion-header/slide3.jpg\";}}s:13:\"seasonaloffer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"seasonaloffer/slide1.jpg\";}}s:18:\"barber-shop-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"barber-shop-header/slide1.jpg\";}}s:23:\"barber-shop-mobile-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"barber-shop-mobile-menu/slide1.jpg\";}}s:24:\"barber-shop-first-screen\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"barber-shop-first-screen/slide1.jpg\";}}s:17:\"barber-shop-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"barber-shop-about/slide1.jpg\";}}s:20:\"barber-shop-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"barber-shop-services/slide1.jpg\";}}s:19:\"barber-shop-barbers\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"barber-shop-barbers/slide1.jpg\";}}s:20:\"barber-shop-contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"barber-shop-contacts/slide1.jpg\";}}s:18:\"barber-shop-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"barber-shop-footer/slide1.jpg\";}}s:21:\"fitness-club-template\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"fitness-club-template/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"fitness-club-template/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"fitness-club-template/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"fitness-club-template/slide4.jpg\";}}s:13:\"soccer-school\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"soccer-school/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"soccer-school/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"soccer-school/slide3.jpg\";}}s:19:\"music-band-template\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"music-band-template/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"music-band-template/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"music-band-template/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:30:\"music-band-template/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:30:\"music-band-template/slide5.jpg\";}}s:15:\"restaurant-menu\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"restaurant-menu/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"restaurant-menu/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"restaurant-menu/slide3.jpg\";}}s:16:\"cinematic-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"cinematic-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"cinematic-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"cinematic-slider/slide3.jpg\";}}s:17:\"3d-parallax-cubes\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"3d-parallax-cubes/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"3d-parallax-cubes/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"3d-parallax-cubes/slide3.jpg\";}}s:13:\"medicare-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"medicare-menu/slide1.jpg\";}}s:15:\"medicare-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"medicare-header/slide1.jpg\";}}s:14:\"medicare-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"medicare-about/slide1.jpg\";}}s:18:\"medicare-highlight\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"medicare-highlight/slide1.jpg\";}}s:17:\"medicare-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"medicare-services/slide1.jpg\";}}s:16:\"medicare-doctors\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"medicare-doctors/slide1.jpg\";}}s:17:\"medicare-research\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"medicare-research/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"medicare-research/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"medicare-research/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"medicare-research/slide4.jpg\";}}s:18:\"medicare-whychoose\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"medicare-whychoose/slide1.jpg\";}}s:16:\"medicare-contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"medicare-contact/slide1.jpg\";}}s:15:\"medicare-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"medicare-footer/slide1.jpg\";}}s:11:\"coffee-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"coffee-menu/slide1.jpg\";}}s:13:\"coffee-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"coffee-header/slide1.jpg\";}}s:17:\"coffee-philosophy\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"coffee-philosophy/slide1.jpg\";}}s:12:\"coffee-carte\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"coffee-carte/slide1.jpg\";}}s:13:\"coffee-teaser\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"coffee-teaser/slide1.jpg\";}}s:13:\"coffee-findus\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"coffee-findus/slide1.jpg\";}}s:13:\"coffee-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"coffee-footer/slide1.jpg\";}}s:17:\"minimal-portfolio\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"minimal-portfolio/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"minimal-portfolio/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"minimal-portfolio/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"minimal-portfolio/slide4.jpg\";}}s:23:\"minimal-portfolio-modal\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide7.jpg\";}}s:11:\"angled-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"angled-menu/slide1.jpg\";}}s:13:\"angled-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"angled-header/slide1.jpg\";}}s:11:\"angled-news\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"angled-news/slide1.jpg\";}}s:15:\"angled-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"angled-services/slide1.jpg\";}}s:14:\"angled-success\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"angled-success/slide1.jpg\";}}s:13:\"angled-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"angled-footer/slide1.jpg\";}}s:20:\"angled-content-modal\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"angled-content-modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"angled-content-modal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"angled-content-modal/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:31:\"angled-content-modal/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:31:\"angled-content-modal/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:31:\"angled-content-modal/slide6.jpg\";}}s:13:\"big-bold-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"big-bold-menu/slide1.jpg\";}}s:15:\"big-bold-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"big-bold-header/slide1.jpg\";}}s:16:\"big-bold-content\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"big-bold-content/slide1.jpg\";}}s:13:\"big-bold-blog\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"big-bold-blog/slide1.jpg\";}}s:18:\"big-bold-highlight\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"big-bold-highlight/slide1.jpg\";}}s:15:\"big-bold-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"big-bold-footer/slide1.jpg\";}}s:7:\"Retouch\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"Retouch/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"Retouch/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"Retouch/slide3.jpg\";}}s:11:\"tech-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"tech-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"tech-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"tech-slider/slide3.jpg\";}}s:11:\"peak-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"peak-header/slide1.jpg\";}}s:10:\"peak-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"peak-about/slide1.jpg\";}}s:14:\"peak-portfolio\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"peak-portfolio/slide1.jpg\";}}s:11:\"peak-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"peak-footer/slide1.jpg\";}}s:17:\"portfolio-welcome\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"portfolio-welcome/slide1.jpg\";}}s:15:\"portfolio-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"portfolio-about/slide1.jpg\";}}s:21:\"portfolio-works-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"portfolio-works-title/slide1.jpg\";}}s:23:\"portfolio-works-content\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"portfolio-works-content/slide1.jpg\";}}s:18:\"portfolio-contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"portfolio-contacts/slide1.jpg\";}}s:18:\"App-Studio-Welcome\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"App-Studio-Welcome/slide1.jpg\";}}s:19:\"App-Studio-Services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"App-Studio-Services/slide1.jpg\";}}s:16:\"App-Studio-About\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"App-Studio-About/slide1.jpg\";}}s:19:\"App-Studio-Contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"App-Studio-Contacts/slide1.jpg\";}}s:14:\"cube-animation\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"cube-animation/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"cube-animation/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"cube-animation/slide3.jpg\";}}s:10:\"basic-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"basic-menu/slide1.jpg\";}}s:12:\"basic-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"basic-header/slide1.jpg\";}}s:13:\"basic-content\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"basic-content/slide1.jpg\";}}s:14:\"basic-carousel\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"basic-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"basic-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"basic-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:25:\"basic-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:25:\"basic-carousel/slide5.jpg\";}}s:13:\"basic-callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"basic-callout/slide1.jpg\";}}s:10:\"basic-grid\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"basic-grid/slide1.jpg\";}}s:17:\"basic-video-block\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"basic-video-block/slide1.jpg\";}}s:12:\"basic-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"basic-footer/slide1.jpg\";}}s:14:\"basic-lightbox\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"basic-lightbox/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"basic-lightbox/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"basic-lightbox/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:25:\"basic-lightbox/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:25:\"basic-lightbox/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:25:\"basic-lightbox/slide6.jpg\";}}s:13:\"nature-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"nature-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"nature-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"nature-slider/slide3.jpg\";}}s:11:\"art-gallery\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"art-gallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"art-gallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"art-gallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:22:\"art-gallery/slide4.jpg\";}}s:19:\"Construction-Header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"Construction-Header/slide1.jpg\";}}s:17:\"Construction-Home\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"Construction-Home/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"Construction-Home/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"Construction-Home/slide3.jpg\";}}s:21:\"Construction-Projects\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"Construction-Projects/slide1.jpg\";}}s:20:\"Construction-History\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"Construction-History/slide1.jpg\";}}s:21:\"Construction-Services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"Construction-Services/slide1.jpg\";}}s:21:\"Construction-Contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"Construction-Contacts/slide1.jpg\";}}s:21:\"404-Error-Space-Theme\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"404-Error-Space-Theme/slide1.jpg\";}}s:17:\"landing-page-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"landing-page-hero/slide1.jpg\";}}s:21:\"landing-page-features\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"landing-page-features/slide1.jpg\";}}s:20:\"landing-page-callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"landing-page-callout/slide1.jpg\";}}s:20:\"landing-page-content\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"landing-page-content/slide1.jpg\";}}s:25:\"landing-page-testimonials\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"landing-page-testimonials/slide1.jpg\";}}s:27:\"landing-page-call-to-action\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"landing-page-call-to-action/slide1.jpg\";}}s:17:\"landing-page-help\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"landing-page-help/slide1.jpg\";}}s:19:\"landing-page-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"landing-page-footer/slide1.jpg\";}}s:24:\"landing-page-price-modal\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"landing-page-price-modal/slide1.jpg\";}}s:18:\"energy-drinks-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"energy-drinks-hero/slide1.jpg\";}}s:19:\"energy-drinks-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"energy-drinks-about/slide1.jpg\";}}s:21:\"energy-drinks-product\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"energy-drinks-product/slide1.jpg\";}}s:23:\"energy-drinks-product-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"energy-drinks-product-2/slide1.jpg\";}}s:23:\"energy-drinks-product-3\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"energy-drinks-product-3/slide1.jpg\";}}s:19:\"energy-drinks-order\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"energy-drinks-order/slide1.jpg\";}}s:20:\"energy-drinks-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"energy-drinks-footer/slide1.jpg\";}}s:19:\"energy-drinks-modal\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"energy-drinks-modal/slide1.jpg\";}}s:16:\"Corporate-Header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"Corporate-Header/slide1.jpg\";}}s:24:\"Corporate-Welcome-Screen\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"Corporate-Welcome-Screen/slide1.jpg\";}}s:15:\"Corporate-About\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"Corporate-About/slide1.jpg\";}}s:19:\"Corporate-Portfolio\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"Corporate-Portfolio/slide1.jpg\";}}s:15:\"Corporate-Chart\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"Corporate-Chart/slide1.jpg\";}}s:14:\"Corporate-News\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"Corporate-News/slide1.jpg\";}}s:16:\"Corporate-Hiring\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"Corporate-News/slide1.jpg\";}}s:22:\"Corporate-Testimonials\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"Corporate-Testimonials/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"Corporate-Testimonials/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"Corporate-Testimonials/slide3.jpg\";}}s:15:\"Corporate-Store\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"Corporate-Store/slide1.jpg\";}}s:17:\"Corporate-Support\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"Corporate-Support/slide1.jpg\";}}s:14:\"Corporate-Team\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"Corporate-Team/slide1.jpg\";}}s:33:\"Corporate-Selected-Projects-Title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:44:\"Corporate-Selected-Projects-Title/slide1.jpg\";}}s:27:\"Corporate-Selected-Projects\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide7.jpg\";}}s:17:\"Corporate-Clients\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"Corporate-Clients/slide1.jpg\";}}s:20:\"Corporate-Text-Block\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"Corporate-Text-Block/slide1.jpg\";}}s:20:\"Corporate-Mobile-App\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"Corporate-Mobile-App/slide1.jpg\";}}s:18:\"Corporate-Contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"Corporate-Contacts/slide1.jpg\";}}s:16:\"Corporate-Footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"Corporate-Footer/slide1.jpg\";}}s:23:\"Corporate-Scroll-To-Top\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"Corporate-Scroll-To-Top/slide1.jpg\";}}s:14:\"geometric-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"geometric-menu/slide1.jpg\";}}s:14:\"geometric-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"geometric-hero/slide1.jpg\";}}s:14:\"geometric-grid\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"geometric-grid/slide1.jpg\";}}s:15:\"geometric-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"geometric-about/slide1.jpg\";}}s:15:\"geometric-texts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"geometric-texts/slide1.jpg\";}}s:18:\"geometric-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"geometric-services/slide1.jpg\";}}s:17:\"geometric-texts-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"geometric-texts-2/slide1.jpg\";}}s:22:\"geometric-testimonials\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"geometric-testimonials/slide1.jpg\";}}s:16:\"geometric-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"geometric-footer/slide1.jpg\";}}s:18:\"geometric-lightbox\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"geometric-lightbox/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"geometric-lightbox/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"geometric-lightbox/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"geometric-lightbox/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:29:\"geometric-lightbox/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:29:\"geometric-lightbox/slide6.jpg\";}}s:11:\"brutal-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"brutal-menu/slide1.jpg\";}}s:11:\"brutal-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"brutal-hero/slide1.jpg\";}}s:12:\"brutal-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"brutal-about/slide1.jpg\";}}s:16:\"brutal-highlight\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"brutal-highlight/slide1.jpg\";}}s:15:\"brutal-projects\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"brutal-projects/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"brutal-projects/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"brutal-projects/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"brutal-projects/slide4.jpg\";}}s:15:\"brutal-services\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"brutal-services/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"brutal-services/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"brutal-services/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"brutal-services/slide4.jpg\";}}s:14:\"brutal-callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"brutal-callout/slide1.jpg\";}}s:13:\"brutal-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"brutal-footer/slide1.jpg\";}}s:13:\"Church-Header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"Church-Header/slide1.jpg\";}}s:22:\"Church-Upcoming-Events\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"Church-Upcoming-Events/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"Church-Upcoming-Events/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"Church-Upcoming-Events/slide3.jpg\";}}s:12:\"Church-About\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"Church-About/slide1.jpg\";}}s:14:\"Church-Pastors\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"Church-Pastors/slide1.jpg\";}}s:20:\"Church-Photo-Gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"Church-Photo-Gallery/slide1.jpg\";}}s:16:\"Church-Community\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"Church-Community/slide1.jpg\";}}s:13:\"Church-Sermon\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"Church-Sermon/slide1.jpg\";}}s:15:\"Church-Contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"Church-Contacts/slide1.jpg\";}}s:13:\"Church-Footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"Church-Footer/slide1.jpg\";}}s:19:\"Church-Light-Header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"Church-Light-Header/slide1.jpg\";}}s:28:\"Church-Light-Upcoming-Events\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"Church-Light-Upcoming-Events/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:39:\"Church-Light-Upcoming-Events/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:39:\"Church-Light-Upcoming-Events/slide3.jpg\";}}s:18:\"Church-Light-About\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"Church-Light-About/slide1.jpg\";}}s:20:\"Church-Light-Pastors\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"Church-Light-Pastors/slide1.jpg\";}}s:26:\"Church-Light-Photo-Gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"Church-Light-Photo-Gallery/slide1.jpg\";}}s:22:\"Church-Light-Community\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"Church-Light-Community/slide1.jpg\";}}s:19:\"Church-Light-Sermon\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"Church-Light-Sermon/slide1.jpg\";}}s:21:\"Church-Light-Contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"Church-Light-Contacts/slide1.jpg\";}}s:19:\"Church-Light-Footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"Church-Light-Footer/slide1.jpg\";}}s:13:\"rockable-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"rockable-menu/slide1.jpg\";}}s:13:\"rockable-hero\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"rockable-hero/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"rockable-hero/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"rockable-hero/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"rockable-hero/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:24:\"rockable-hero/slide5.jpg\";}}s:15:\"rockable-lineup\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"rockable-lineup/slide1.jpg\";}}s:17:\"rockable-lineup-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"rockable-lineup-2/slide1.jpg\";}}s:22:\"rockable-gallery-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"rockable-gallery-title/slide1.jpg\";}}s:16:\"rockable-gallery\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"rockable-gallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"rockable-gallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"rockable-gallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"rockable-gallery/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"rockable-gallery/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:27:\"rockable-gallery/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:27:\"rockable-gallery/slide7.jpg\";}}s:17:\"rockable-sponsors\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"rockable-sponsors/slide1.jpg\";}}s:15:\"rockable-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"rockable-footer/slide1.jpg\";}}s:21:\"rockable-detail-modal\";a:18:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:10;a:2:{s:5:\"title\";s:8:\"Slide 11\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:11;a:2:{s:5:\"title\";s:8:\"Slide 12\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:12;a:2:{s:5:\"title\";s:8:\"Slide 13\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:13;a:2:{s:5:\"title\";s:8:\"Slide 14\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:14;a:2:{s:5:\"title\";s:8:\"Slide 15\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:15;a:2:{s:5:\"title\";s:8:\"Slide 16\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:16;a:2:{s:5:\"title\";s:8:\"Slide 17\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:17;a:2:{s:5:\"title\";s:8:\"Slide 18\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}}s:23:\"rockable-detail-modal-2\";a:18:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:10;a:2:{s:5:\"title\";s:8:\"Slide 11\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:11;a:2:{s:5:\"title\";s:8:\"Slide 12\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:12;a:2:{s:5:\"title\";s:8:\"Slide 13\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:13;a:2:{s:5:\"title\";s:8:\"Slide 14\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:14;a:2:{s:5:\"title\";s:8:\"Slide 15\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:15;a:2:{s:5:\"title\";s:8:\"Slide 16\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:16;a:2:{s:5:\"title\";s:8:\"Slide 17\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:17;a:2:{s:5:\"title\";s:8:\"Slide 18\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}}s:27:\"real-estate-showcase-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"Real-Estate-Showcase-Slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:38:\"Real-Estate-Showcase-Slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:38:\"Real-Estate-Showcase-Slider/slide3.jpg\";}}s:16:\"isometric-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"isometric-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"isometric-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"isometric-slider/slide3.jpg\";}}s:17:\"E-Commerce-Slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"Shoes-Store-Slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"Shoes-Store-Slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"Shoes-Store-Slider/slide3.jpg\";}}s:23:\"E-Commerce-Slider-Modal\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"Shoes-Store-Slider-Modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:35:\"Shoes-Store-Slider-Modal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:35:\"Shoes-Store-Slider-Modal/slide3.jpg\";}}s:27:\"Woo-Commerce-Slider-Dynamic\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"Shoes-Store-Slider-Dynamic/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:37:\"Shoes-Store-Slider-Dynamic/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:37:\"Shoes-Store-Slider-Dynamic/slide3.jpg\";}}s:15:\"blooming-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"blooming-header/slide1.jpg\";}}s:14:\"blooming-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"blooming-about/slide1.jpg\";}}s:18:\"blooming-portfolio\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"blooming-portfolio/slide1.jpg\";}}s:22:\"blooming-wedding-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"blooming-wedding-title/slide1.jpg\";}}s:25:\"blooming-wedding-carousel\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide6.jpg\";}}s:21:\"blooming-wedding-text\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"blooming-wedding-text/slide1.jpg\";}}s:22:\"blooming-parties-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"blooming-parties-title/slide1.jpg\";}}s:25:\"blooming-parties-carousel\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide6.jpg\";}}s:21:\"blooming-parties-text\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"blooming-parties-text/slide1.jpg\";}}s:22:\"blooming-funeral-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"blooming-funeral-title/slide1.jpg\";}}s:23:\"blooming-funeral-slider\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide6.jpg\";}}s:21:\"blooming-funeral-text\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"blooming-funeral-text/slide1.jpg\";}}s:16:\"blooming-contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"blooming-contact/slide1.jpg\";}}s:13:\"particle-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"particle-hero/slide1.jpg\";}}s:17:\"bubble-morph-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"bubble-morph-hero/slide1.jpg\";}}s:13:\"parallax-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"parallax-hero/slide1.jpg\";}}s:10:\"video-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"video-hero/slide1.jpg\";}}s:14:\"ken-burns-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"ken-burns-hero/slide1.jpg\";}}s:21:\"basic-hero-collection\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"basic-hero-collection/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"basic-hero-collection/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"basic-hero-collection/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"basic-hero-collection/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:32:\"basic-hero-collection/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:32:\"basic-hero-collection/slide6.jpg\";}}s:19:\"launching-very-soon\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"launching-very-soon/slide1.jpg\";}}s:18:\"Under-Construction\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"Under-Construction/slide1.jpg\";}}s:15:\"Particle-Effect\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"Particle-Effect/slide1.jpg\";}}s:17:\"Particle-Effect-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"Particle-Effect-2/slide1.jpg\";}}s:10:\"stark-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"stark-menu/slide1.jpg\";}}s:12:\"stark-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"stark-header/slide1.jpg\";}}s:13:\"stark-content\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"stark-content/slide1.jpg\";}}s:14:\"stark-carousel\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"stark-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"stark-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"stark-carousel/slide3.jpg\";}}s:15:\"stark-portfolio\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"stark-portfolio/slide1.jpg\";}}s:22:\"stark-portfolio-detail\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide6.jpg\";}}s:13:\"stark-contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"stark-contact/slide1.jpg\";}}s:12:\"stark-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"stark-footer/slide1.jpg\";}}s:16:\"stark-newsletter\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"stark-newsletter/slide1.jpg\";}}s:15:\"big-summer-sale\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"big-summer-sale/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"big-summer-sale/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"big-summer-sale/slide3.jpg\";}}s:18:\"traveller-carousel\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"traveller-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"traveller-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"traveller-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"traveller-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:29:\"traveller-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:29:\"traveller-carousel/slide6.jpg\";}}s:16:\"project-carousel\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"project-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"project-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"project-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"project-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"project-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:27:\"project-carousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:27:\"project-carousel/slide7.jpg\";}}s:13:\"news-carousel\";a:8:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"news-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"news-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"news-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"news-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:24:\"news-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:24:\"news-carousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:24:\"news-carousel/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:24:\"news-carousel/slide8.jpg\";}}s:10:\"story-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"story-menu/slide1.jpg\";}}s:12:\"story-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"story-header/slide1.jpg\";}}s:13:\"story-block-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"story-block-1/slide1.jpg\";}}s:15:\"story-content-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"story-content-1/slide1.jpg\";}}s:13:\"story-block-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"story-block-2/slide1.jpg\";}}s:13:\"story-block-3\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"story-block-3/slide1.jpg\";}}s:15:\"story-content-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"story-content-2/slide1.jpg\";}}s:13:\"story-block-4\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"story-block-4/slide1.jpg\";}}s:15:\"story-content-3\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"story-content-3/slide1.jpg\";}}s:12:\"mini-website\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"mini-website/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"mini-website/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"mini-website/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"mini-website/slide4.jpg\";}}s:13:\"food-delivery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"food-delivery/slide1.jpg\";}}s:25:\"slider-with-illustrations\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"slider-with-illustrations/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"slider-with-illustrations/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:36:\"slider-with-illustrations/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:36:\"slider-with-illustrations/slide4.jpg\";}}s:8:\"zen-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:19:\"zen-menu/slide1.jpg\";}}s:10:\"zen-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"zen-header/slide1.jpg\";}}s:9:\"zen-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"zen-about/slide1.jpg\";}}s:12:\"zen-features\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"zen-features/slide1.jpg\";}}s:9:\"zen-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"zen-video/slide1.jpg\";}}s:11:\"zen-pricing\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"zen-pricing/slide1.jpg\";}}s:22:\"zen-testimonials-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"zen-testimonials-title/slide1.jpg\";}}s:16:\"zen-testimonials\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"zen-testimonials/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"zen-testimonials/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"zen-testimonials/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"zen-testimonials/slide4.jpg\";}}s:10:\"zen-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"zen-footer/slide1.jpg\";}}s:17:\"Paintbrush-Effect\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"Paintbrush-Effect/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"Paintbrush-Effect/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"Paintbrush-Effect/slide3.jpg\";}}s:25:\"black-friday-scroll-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"black-friday-scroll-video/slide1.jpg\";}}s:12:\"charity-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"charity-menu/slide1.jpg\";}}s:14:\"charity-header\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"charity-header/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"charity-header/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"charity-header/slide3.jpg\";}}s:15:\"charity-mission\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"charity-mission/slide1.jpg\";}}s:13:\"charity-funds\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"charity-funds/slide1.jpg\";}}s:15:\"charity-success\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"charity-success/slide1.jpg\";}}s:15:\"charity-stories\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"charity-stories/slide1.jpg\";}}s:16:\"charity-worldmap\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"charity-worldmap/slide1.jpg\";}}s:19:\"charity-large-image\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"charity-large-image/slide1.jpg\";}}s:16:\"charity-sponsors\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"charity-sponsors/slide1.jpg\";}}s:12:\"charity-help\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"charity-help/slide1.jpg\";}}s:14:\"charity-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"charity-footer/slide1.jpg\";}}s:21:\"cinematic-hero-titles\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"cinematic-hero-titles/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"cinematic-hero-titles/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"cinematic-hero-titles/slide3.jpg\";}}s:23:\"design-dna-scroll-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"design-dna-scroll-video/slide1.jpg\";}}s:27:\"food-delivery-lottie-scroll\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"food-delivery-lottie-scroll/slide1.jpg\";}}s:20:\"food-recipe-carousel\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"food-recipe-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"food-recipe-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"food-recipe-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:31:\"food-recipe-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:31:\"food-recipe-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:31:\"food-recipe-carousel/slide6.jpg\";}}s:17:\"food-recipe-modal\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"food-recipe-modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"food-recipe-modal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"food-recipe-modal/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"food-recipe-modal/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:28:\"food-recipe-modal/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:28:\"food-recipe-modal/slide6.jpg\";}}s:27:\"corporate-carousel-template\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"packages/corporate_carousel_bundle.jpg\";}}s:18:\"corporate-carousel\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"corporate-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"corporate-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"corporate-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"corporate-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:29:\"corporate-carousel/slide5.jpg\";}}s:18:\"corporate-lightbox\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"corporate-lightbox/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"corporate-lightbox/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"corporate-lightbox/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"corporate-lightbox/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:29:\"corporate-lightbox/slide5.jpg\";}}s:23:\"cyber-carousel-template\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"packages/cybercarousel_bundle.jpg\";}}s:14:\"cyber-carousel\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"cyber-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"cyber-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"cyber-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:25:\"cyber-carousel/slide4.jpg\";}}s:23:\"cyber-carousel-lightbox\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"cyber-carousel-lightbox/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"cyber-carousel-lightbox/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"cyber-carousel-lightbox/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"cyber-carousel-lightbox/slide4.jpg\";}}s:24:\"woocommerce-carousel-one\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"woocommerce-carousel-one/slide1.jpg\";}}s:31:\"woocommerce-carousel-one-static\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:42:\"woocommerce-carousel-one-static/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:42:\"woocommerce-carousel-one-static/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:42:\"woocommerce-carousel-one-static/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:42:\"woocommerce-carousel-one-static/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:42:\"woocommerce-carousel-one-static/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:42:\"woocommerce-carousel-one-static/slide6.jpg\";}}s:24:\"woocommerce-carousel-two\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"woocommerce-carousel-two/slide1.jpg\";}}s:31:\"woocommerce-carousel-two-static\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:42:\"woocommerce-carousel-two-static/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:42:\"woocommerce-carousel-two-static/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:42:\"woocommerce-carousel-two-static/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:42:\"woocommerce-carousel-two-static/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:42:\"woocommerce-carousel-two-static/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:42:\"woocommerce-carousel-two-static/slide6.jpg\";}}s:26:\"woocommerce-feature-slider\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"woocommerce-feature-slider/slide1.jpg\";}}s:33:\"woocommerce-feature-slider-static\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:44:\"woocommerce-feature-slider-static/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:44:\"woocommerce-feature-slider-static/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:44:\"woocommerce-feature-slider-static/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:44:\"woocommerce-feature-slider-static/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:44:\"woocommerce-feature-slider-static/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:44:\"woocommerce-feature-slider-static/slide6.jpg\";}}s:17:\"woo-liquid-slider\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"woo-liquid-slider/slide1.jpg\";}}s:32:\"woocommerce-liquid-slider-static\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:43:\"woocommerce-liquid-slider-static/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:43:\"woocommerce-liquid-slider-static/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:43:\"woocommerce-liquid-slider-static/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:43:\"woocommerce-liquid-slider-static/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:43:\"woocommerce-liquid-slider-static/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:43:\"woocommerce-liquid-slider-static/slide6.jpg\";}}s:15:\"woo-slider-pack\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"packages/woosliderpack_dynamic.jpg\";}}s:22:\"woo-slider-pack-static\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"packages/woosliderpack_static.jpg\";}}s:24:\"creative-hero-collection\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"creative-hero-collection/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:35:\"creative-hero-collection/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:35:\"creative-hero-collection/slide3.jpg\";}}s:19:\"photographer-slider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"photographer-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"photographer-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"photographer-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:30:\"photographer-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:30:\"photographer-slider/slide5.jpg\";}}s:17:\"realestate-slider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"realestate-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"realestate-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"realestate-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"realestate-slider/slide4.jpg\";}}s:19:\"saas-product-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"saas-product-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"saas-product-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"saas-product-slider/slide3.jpg\";}}s:27:\"cinematic-wildlife-template\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"packages/cinematic-wildlife-package.jpg\";}}s:25:\"cinematic-wildlife-slider\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"cinematic-wildlife-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"cinematic-wildlife-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:36:\"cinematic-wildlife-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:36:\"cinematic-wildlife-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:36:\"cinematic-wildlife-slider/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:36:\"cinematic-wildlife-slider/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:36:\"cinematic-wildlife-slider/slide7.jpg\";}}s:24:\"cinematic-wildlife-modal\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"cinematic-wildlife-modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:35:\"cinematic-wildlife-modal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:35:\"cinematic-wildlife-modal/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:35:\"cinematic-wildlife-modal/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:35:\"cinematic-wildlife-modal/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:35:\"cinematic-wildlife-modal/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:35:\"cinematic-wildlife-modal/slide7.jpg\";}}s:32:\"gaming-stats-presentation-slider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:43:\"gaming-stats-presentation-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:43:\"gaming-stats-presentation-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:43:\"gaming-stats-presentation-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:43:\"gaming-stats-presentation-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:43:\"gaming-stats-presentation-slider/slide5.jpg\";}}s:15:\"coffee-flavours\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"coffee-flavors/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"coffee-flavors/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"coffee-flavors/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:25:\"coffee-flavors/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:25:\"coffee-flavors/slide5.jpg\";}}s:15:\"showreel-slider\";a:10:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"showreel-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"showreel-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"showreel-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"showreel-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"showreel-slider/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:26:\"showreel-slider/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:26:\"showreel-slider/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:26:\"showreel-slider/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:26:\"showreel-slider/slide9.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:27:\"showreel-slider/slide10.jpg\";}}s:16:\"visual-art-forms\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"visual-art-forms/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"visual-art-forms/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"visual-art-forms/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"visual-art-forms/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"visual-art-forms/slide5.jpg\";}}}}','no'),(522,'mc4wp_flash_messages','a:0:{}','no'),(537,'woocommerce_task_list_welcome_modal_dismissed','yes','yes'),(541,'ct_ie_term_imported','imported','yes'),(539,'action_scheduler_migration_status','complete','yes'),(552,'portfolio-category_children','a:0:{}','yes'),(553,'service-category_children','a:0:{}','yes'),(551,'category_children','a:0:{}','yes'),(554,'case-study-category_children','a:0:{}','yes'),(555,'elementor_library_category_children','a:0:{}','yes'),(548,'_transient_product_query-transient-version','1621470262','yes'),(557,'_transient_product-transient-version','1616787797','yes'),(558,'ct_ie_demo_installed','tax-consulting','yes'),(567,'elementor_active_kit','4100','yes'),(560,'_transient_wc_count_comments','O:8:\"stdClass\":7:{s:14:\"total_comments\";i:16;s:3:\"all\";i:16;s:8:\"approved\";s:2:\"16\";s:9:\"moderated\";i:0;s:4:\"spam\";i:0;s:5:\"trash\";i:0;s:12:\"post-trashed\";i:0;}','yes'),(571,'revslider_update_revision_current','6.4.0','yes'),(625,'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'),(626,'elementor_scheme_typography','a:4:{i:1;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"600\";}i:2;a:2:{s:11:\"font_family\";s:11:\"Roboto Slab\";s:11:\"font_weight\";s:3:\"400\";}i:3;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"400\";}i:4;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"500\";}}','yes'),(627,'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'),(658,'elementor_controls_usage','a:3:{s:7:\"section\";a:13:{s:16:\"ct_blog_carousel\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"arrows\";i:1;s:4:\"dots\";i:1;s:6:\"col_md\";i:1;s:10:\"ct_animate\";i:1;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:24;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:23;s:19:\"_inline_size_tablet\";i:2;s:19:\"_inline_size_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"padding\";i:1;s:13:\"margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:21:\"background_background\";i:1;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:11;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:8;s:15:\"stretch_section\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:8;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:4;s:7:\"padding\";i:7;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:8:{s:21:\"background_background\";i:4;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:3;s:18:\"background_color_b\";i:2;}s:26:\"section_background_overlay\";a:8:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:2;s:27:\"background_overlay_position\";i:2;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:2;s:26:\"background_overlay_opacity\";i:2;s:29:\"background_overlay_attachment\";i:1;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;}}}}s:10:\"ct_heading\";a:2:{s:5:\"count\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:15:{s:5:\"title\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:4;s:28:\"title_typography_line_height\";i:4;s:35:\"title_typography_line_height_tablet\";i:4;s:18:\"title_space_bottom\";i:5;s:33:\"title_typography_font_size_mobile\";i:2;s:35:\"title_typography_line_height_mobile\";i:2;s:10:\"ct_animate\";i:2;s:11:\"title_color\";i:3;s:10:\"text_align\";i:3;s:5:\"style\";i:3;s:28:\"title_typography_font_weight\";i:1;s:13:\"st_line_color\";i:1;}s:17:\"sub_title_section\";a:11:{s:9:\"sub_title\";i:4;s:15:\"sub_title_style\";i:2;s:26:\"sub_title_space_top_mobile\";i:1;s:15:\"sub_title_color\";i:3;s:19:\"sub_title_space_top\";i:1;s:31:\"sub_title_typography_typography\";i:2;s:32:\"sub_title_typography_font_family\";i:2;s:30:\"sub_title_typography_font_size\";i:2;s:32:\"sub_title_typography_font_weight\";i:2;s:22:\"sub_title_space_bottom\";i:3;s:14:\"sub_title_line\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:2;s:7:\"_margin\";i:2;s:8:\"_z_index\";i:1;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:27:\"typography_font_size_tablet\";i:2;s:22:\"typography_line_height\";i:2;s:29:\"typography_line_height_tablet\";i:2;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:12:\"ct_piecharts\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:17:\"section_piecharts\";a:8:{s:5:\"title\";i:3;s:16:\"percentage_value\";i:2;s:10:\"chart_size\";i:3;s:5:\"style\";i:3;s:11:\"track_color\";i:3;s:27:\"title_typography_typography\";i:3;s:33:\"title_typography_font_size_tablet\";i:3;s:10:\"ct_animate\";i:3;}}}}s:5:\"image\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:3;s:10:\"image_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:2;s:8:\"_padding\";i:1;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:15:\"ct_video_player\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:10:\"ct_counter\";a:2:{s:5:\"count\";i:12;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:8:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:12;s:5:\"title\";i:12;s:9:\"show_icon\";i:8;s:8:\"bg_image\";i:4;s:4:\"size\";i:2;s:10:\"ct_animate\";i:4;s:12:\"counter_icon\";i:4;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:3;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:4;s:8:\"_padding\";i:4;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:4;s:17:\"_background_color\";i:4;}s:15:\"_section_border\";a:4:{s:14:\"_border_border\";i:4;s:13:\"_border_width\";i:4;s:13:\"_border_color\";i:4;s:14:\"_border_radius\";i:4;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:8;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:1:{s:12:\"number_color\";i:5;}s:13:\"section_title\";a:1:{s:11:\"title_color\";i:8;}s:12:\"section_icon\";a:1:{s:10:\"icon_color\";i:4;}}}}s:14:\"ct_text_editor\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;s:19:\"text_color_gradient\";i:1;s:26:\"link_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:8:\"_padding\";i:1;s:7:\"_margin\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:8:\"_z_index\";i:1;s:14:\"_margin_mobile\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:4:\"html\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:4:\"html\";i:1;}}}}s:12:\"ct_fancy_box\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:3;}}}}}s:7:\"wp-post\";a:10:{s:5:\"image\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:5:\"align\";i:1;}}}}s:9:\"icon-list\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:1;s:10:\"icon_align\";i:1;}s:18:\"section_icon_style\";a:3:{s:10:\"icon_color\";i:1;s:9:\"icon_size\";i:1;s:15:\"icon_self_align\";i:1;}s:18:\"section_text_style\";a:5:{s:10:\"text_color\";i:1;s:26:\"icon_typography_typography\";i:1;s:27:\"icon_typography_font_family\";i:1;s:25:\"icon_typography_font_size\";i:1;s:27:\"icon_typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:12:\"social-icons\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:3:{s:16:\"social_icon_list\";i:1;s:5:\"shape\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:20:\"section_social_style\";a:1:{s:9:\"icon_size\";i:1;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:4;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:5:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;s:5:\"style\";i:2;s:26:\"title_typography_font_size\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:2:{s:4:\"menu\";i:1;s:5:\"style\";i:1;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:13:\"ct_newsletter\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}s:5:\"style\";a:1:{s:14:\"source_section\";a:2:{s:13:\"button_color1\";i:1;s:13:\"button_color2\";i:1;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:15:\"stretch_section\";i:2;s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:1;s:24:\"background_gradient_type\";i:1;}s:26:\"section_background_overlay\";a:5:{s:29:\"background_overlay_background\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:26:\"background_overlay_opacity\";i:1;s:24:\"background_overlay_color\";i:1;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:14:\"ct_text_editor\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:4:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:10:\"link_color\";i:1;s:16:\"link_color_hover\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:15:\"_padding_mobile\";i:1;}}}}}s:7:\"wp-page\";a:16:{s:6:\"column\";a:2:{s:5:\"count\";i:23;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:19:\"_inline_size_tablet\";i:-5;s:12:\"_inline_size\";i:31;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:-3;s:7:\"padding\";i:7;s:13:\"margin_mobile\";i:3;s:13:\"margin_tablet\";i:-3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:21:\"background_background\";i:4;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:7;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:-18;s:15:\"stretch_section\";i:9;s:8:\"overflow\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:10;s:16:\"background_color\";i:14;s:18:\"background_color_b\";i:7;s:19:\"background_position\";i:-4;s:17:\"background_repeat\";i:-4;s:25:\"background_gradient_angle\";i:3;s:21:\"background_color_stop\";i:2;}s:26:\"section_background_overlay\";a:6:{s:29:\"background_overlay_background\";i:4;s:27:\"background_overlay_position\";i:5;s:29:\"background_overlay_attachment\";i:4;s:26:\"background_overlay_opacity\";i:4;s:24:\"background_overlay_image\";i:3;s:23:\"background_overlay_size\";i:3;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:4;s:12:\"border_width\";i:4;s:12:\"border_color\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:1;s:6:\"margin\";i:-1;s:7:\"z_index\";i:1;}}}}s:10:\"ct_heading\";a:2:{s:5:\"count\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:12:{s:5:\"title\";i:8;s:10:\"text_align\";i:21;s:5:\"style\";i:14;s:11:\"title_color\";i:13;s:18:\"title_space_bottom\";i:10;s:27:\"title_typography_typography\";i:4;s:26:\"title_typography_font_size\";i:5;s:28:\"title_typography_font_weight\";i:8;s:13:\"st_line_color\";i:3;s:33:\"title_typography_font_size_mobile\";i:2;s:35:\"title_typography_line_height_mobile\";i:2;s:10:\"ct_animate\";i:0;}s:17:\"sub_title_section\";a:10:{s:15:\"sub_title_color\";i:11;s:31:\"sub_title_typography_typography\";i:12;s:32:\"sub_title_typography_font_family\";i:13;s:30:\"sub_title_typography_font_size\";i:15;s:32:\"sub_title_typography_font_weight\";i:13;s:22:\"sub_title_space_bottom\";i:16;s:14:\"sub_title_line\";i:15;s:26:\"sub_title_space_top_mobile\";i:2;s:9:\"sub_title\";i:5;s:15:\"sub_title_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:8:\"_padding\";i:10;s:7:\"_margin\";i:5;s:8:\"_z_index\";i:3;s:12:\"_css_classes\";i:1;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:-7;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:-7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:9:{s:10:\"text_color\";i:3;s:21:\"typography_typography\";i:-7;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:-7;s:27:\"typography_font_size_tablet\";i:-4;s:22:\"typography_line_height\";i:-5;s:29:\"typography_line_height_tablet\";i:-4;s:5:\"align\";i:2;s:22:\"typography_font_weight\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:12:\"_css_classes\";i:-1;s:8:\"_padding\";i:1;s:7:\"_margin\";i:-1;s:14:\"_margin_mobile\";i:-2;}}}}s:14:\"ct_text_editor\";a:2:{s:5:\"count\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:5;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:7;s:10:\"text_color\";i:6;s:21:\"typography_typography\";i:5;s:22:\"typography_font_family\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_line_height\";i:5;s:19:\"text_color_gradient\";i:4;s:26:\"link_typography_typography\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:8:\"_padding\";i:6;s:7:\"_margin\";i:5;s:15:\"_padding_tablet\";i:6;s:15:\"_padding_mobile\";i:7;}}}}s:5:\"image\";a:2:{s:5:\"count\";i:9;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:9;s:10:\"image_size\";i:3;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:4;s:8:\"_padding\";i:7;s:14:\"_margin_tablet\";i:3;s:14:\"_margin_mobile\";i:3;s:12:\"_css_classes\";i:1;}}}}s:4:\"html\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:4:\"html\";i:3;}}}}s:10:\"ct_counter\";a:2:{s:5:\"count\";i:12;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:12;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:4:{s:6:\"suffix\";i:12;s:5:\"title\";i:12;s:9:\"show_icon\";i:12;s:12:\"counter_icon\";i:12;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:1:{s:12:\"number_color\";i:12;}s:13:\"section_title\";a:1:{s:11:\"title_color\";i:12;}s:12:\"section_icon\";a:1:{s:10:\"icon_color\";i:12;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:12;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:12;s:17:\"_background_color\";i:12;}s:15:\"_section_border\";a:4:{s:14:\"_border_border\";i:12;s:13:\"_border_width\";i:12;s:13:\"_border_color\";i:12;s:14:\"_border_radius\";i:12;}}}}s:12:\"ct_fancy_box\";a:2:{s:5:\"count\";i:6;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:15:\"section_content\";a:3:{s:13:\"selected_icon\";i:6;s:10:\"title_text\";i:6;s:16:\"description_text\";i:6;}s:13:\"section_style\";a:4:{s:11:\"title_color\";i:1;s:10:\"desc_color\";i:3;s:26:\"desc_typography_typography\";i:3;s:25:\"desc_typography_font_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}}}}s:17:\"slider_revolution\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"button\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:3:{s:4:\"text\";i:3;s:5:\"align\";i:3;s:4:\"size\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:17:\"button_text_color\";i:3;s:16:\"background_color\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:3;}}}}s:9:\"shortcode\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:17:\"section_shortcode\";a:1:{s:9:\"shortcode\";i:1;}}}}s:5:\"video\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_video\";a:1:{s:11:\"youtube_url\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"_section_border\";a:3:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;}}}}s:9:\"image-box\";a:2:{s:5:\"count\";i:12;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:12;s:10:\"title_text\";i:12;s:16:\"description_text\";i:12;}}s:5:\"style\";a:2:{s:19:\"section_style_image\";a:2:{s:10:\"image_size\";i:12;s:11:\"image_space\";i:1;}s:21:\"section_style_content\";a:6:{s:11:\"title_color\";i:12;s:17:\"description_color\";i:12;s:33:\"description_typography_typography\";i:4;s:34:\"description_typography_font_family\";i:4;s:32:\"description_typography_font_size\";i:4;s:34:\"description_typography_font_weight\";i:4;}}}}s:6:\"ct_cta\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:5:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;s:8:\"btn_link\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:8:\"_z_index\";i:1;s:14:\"_margin_mobile\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}}}','no'),(1103,'essential-dashboard','O:8:\"stdClass\":1:{s:11:\"test-handle\";O:8:\"stdClass\":5:{s:12:\"version_from\";s:5:\"1.0.0\";s:10:\"version_to\";s:5:\"1.0.0\";s:5:\"order\";i:5;s:7:\"content\";s:181:\"<div class=\"rs-dash-widget\"><div class=\"rs-dash-title-wrap\"><div class=\"rs-dash-title\">your version is: {{current_version}}</div></div><div class=\"rs-dash-widget-inner\"></div></div>\";s:4:\"code\";s:0:\"\";}}','yes'),(1104,'tp_eg_latest-version','3.0.11','yes'),(1461,'product_option','a:60:{s:17:\"_wp_page_template\";s:7:\"default\";s:13:\"custom_header\";s:1:\"1\";s:13:\"header_layout\";s:2:\"19\";s:11:\"p_logo_dark\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:12:\"p_logo_light\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:13:\"p_logo_mobile\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:12:\"page_h_phone\";s:0:\"\";s:11:\"page_h_time\";s:0:\"\";s:16:\"custom_pagetitle\";s:4:\"show\";s:12:\"custom_title\";s:18:\"League Information\";s:9:\"ptitle_bg\";a:2:{s:16:\"background-image\";s:64:\"https://sa7717.dev34.info/wp-content/uploads/2021/05/image-1.png\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"4509\";s:6:\"height\";s:3:\"360\";s:5:\"width\";s:4:\"1183\";s:9:\"thumbnail\";s:72:\"https://sa7717.dev34.info/wp-content/uploads/2021/05/image-1-150x150.png\";}}s:14:\"ptitle_padding\";a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:5:\"100px\";s:14:\"padding-bottom\";s:0:\"\";}s:16:\"content_bg_color\";a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}s:15:\"content_padding\";a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}s:17:\"show_sidebar_page\";s:0:\"\";s:16:\"sidebar_page_pos\";s:5:\"right\";s:12:\"loading_page\";s:11:\"themeoption\";s:12:\"loading_type\";s:6:\"style1\";s:13:\"loading_color\";s:0:\"\";s:13:\"custom_footer\";s:1:\"1\";s:20:\"footer_layout_custom\";s:4:\"3201\";s:15:\"page_back_totop\";s:11:\"themeoption\";s:20:\"_elementor_edit_mode\";s:7:\"builder\";s:24:\"_elementor_template_type\";s:7:\"wp-page\";s:18:\"_elementor_version\";s:5:\"3.2.2\";s:15:\"_elementor_data\";s:3246:\"[{\"id\":\"64fd72b8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"42\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"305603d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9da93fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the information below to sign up for the Dart and Pool Leagues\",\"sub_title\":\"League Information\",\"sub_title_color\":\"#595959\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"_css_classes\":\"line-sub-preset2\",\"ct_animate\":\"wow bounce\",\"text_align\":\"center\",\"sub_title_style\":\"style7\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"f725b8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"20124ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"df23ab3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"about-call\\\"><span style=\\\"color: #d90202;\\\">Dart League registration and info<\\/span><\\/h5><div><strong>Inland Empire Dart League<\\/strong><\\/div><div>\\u00a0<\\/div><div><a href=\\\"tel:509-389-6518\\\"><strong>509-389-6518<\\/strong><\\/a>\\u00a0 \\u00a0<em>Ask For Tammy (secretary)<\\/em><\\/div><div>\\u00a0<\\/div><div><strong><a href=\\\"mailto:info@dartleague.com\\\">info@dartleague.com<\\/a><\\/strong><\\/div><div>\\u00a0<\\/div><div><strong>The dart league is associated with the National Dart Association\\u00a0<\\/strong><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a6662f5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/nda.png\",\"id\":4504},\"image_size\":\"medium\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ab5c66a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ea0522\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"about-call\\\"><span style=\\\"color: #d90202;\\\">Pool League registration and info<\\/span><\\/h5><div><strong>APA of Spokane<\\/strong><\\/div><div>\\u00a0<\\/div><div><div><a href=\\\"tel:509-327-2591\\\"><strong>509-327-2591<\\/strong><\\/a><\\/div><\\/div><div>\\u00a0<\\/div><div><div><a href=\\\"http:\\/\\/poolplayers.com\\\"><strong>poolplayers.com<\\/strong><\\/a><\\/div><div>\\u00a0<\\/div><div><strong>The pool league is associated with the American Pool Players Association\\u00a0<\\/strong><\\/div><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"13ae9b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/apa.png\",\"id\":4505},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]\";s:10:\"_edit_lock\";s:12:\"1621619441:1\";s:10:\"_edit_last\";s:1:\"1\";s:10:\"p_h_style1\";s:11:\"themeoption\";s:13:\"h_custom_menu\";s:0:\"\";s:18:\"h_custom_menu_left\";s:0:\"\";s:19:\"h_custom_menu_right\";s:0:\"\";s:18:\"p_page_title_color\";s:0:\"\";s:14:\"ptitle_overlay\";s:11:\"themeoption\";s:22:\"ptitle_breadcrumb_page\";s:11:\"themeoption\";s:23:\"ptitle_breadcrumb_color\";s:0:\"\";s:12:\"p_bg_content\";a:6:{s:17:\"background-repeat\";s:0:\"\";s:15:\"background-size\";s:0:\"\";s:21:\"background-attachment\";s:0:\"\";s:19:\"background-position\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}s:20:\"eg_sources_html5_mp4\";s:0:\"\";s:18:\"eg_sources_youtube\";s:0:\"\";s:16:\"eg_sources_vimeo\";s:0:\"\";s:17:\"eg_sources_wistia\";s:0:\"\";s:16:\"eg_sources_image\";s:0:\"\";s:17:\"eg_sources_iframe\";s:0:\"\";s:21:\"eg_sources_soundcloud\";s:0:\"\";s:14:\"eg_vimeo_ratio\";s:1:\"1\";s:16:\"eg_youtube_ratio\";s:1:\"1\";s:15:\"eg_wistia_ratio\";s:1:\"1\";s:14:\"eg_html5_ratio\";s:1:\"1\";s:19:\"eg_soundcloud_ratio\";s:1:\"1\";s:20:\"eg_sources_revslider\";s:0:\"\";s:18:\"eg_sources_essgrid\";s:0:\"\";s:16:\"eg_featured_grid\";s:0:\"\";s:28:\"eg_settings_custom_meta_skin\";s:0:\"\";s:31:\"eg_settings_custom_meta_element\";s:0:\"\";s:31:\"eg_settings_custom_meta_setting\";s:0:\"\";s:29:\"eg_settings_custom_meta_style\";s:0:\"\";s:18:\"eg_custom_meta_216\";s:4:\"true\";s:14:\"eg_votes_count\";s:1:\"0\";s:25:\"_elementor_controls_usage\";a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:1;s:18:\"title_space_bottom\";i:1;s:10:\"ct_animate\";i:1;s:10:\"text_align\";i:1;}s:17:\"sub_title_section\";a:6:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:32:\"sub_title_typography_font_family\";i:1;s:32:\"sub_title_typography_font_weight\";i:1;s:15:\"sub_title_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:2;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}}s:14:\"_elementor_css\";a:6:{s:4:\"time\";i:1621619395;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}}','yes'),(795,'essgrid_servers','a:7:{i:0;s:22:\"themepunch-ext-a.tools\";i:1;s:22:\"themepunch-ext-a.tools\";i:2;s:22:\"themepunch-ext-b.tools\";i:3;s:22:\"themepunch-ext-b.tools\";i:4;s:22:\"themepunch-ext-b.tools\";i:5;s:16:\"themepunch.tools\";i:6;s:22:\"themepunch-ext-a.tools\";}','yes'),(796,'essgrid_server_refresh','1625692523','yes'),(797,'tp_eg_grids_version','3.0','yes'),(798,'tp_eg_custom_css_imported','true','yes'),(799,'tp_eg_custom_css','/* HENRY HARRISON */\n\na.eg-henryharrison-element-1,\na.eg-henryharrison-element-2 {\n  -webkit-transition: all .4s linear;  \n    -moz-transition: all .4s linear;  \n    -o-transition: all .4s linear;  \n    -ms-transition: all .4s linear;  \n    transition: all .4s linear; \n}\n\n/* JIMMY CARTER */\n.eg-jimmy-carter-element-11 i:before { margin-left:0px; margin-right:0px;}\n\n\n/* HARDING */\n.eg-harding-element-17 { letter-spacing:1px}\n.eg-harding-wrapper .esg-entry-media { overflow:hidden; \n            box-sizing:border-box;\n            -webkit-box-sizing:border-box;\n            -moz-box-sizing:border-box;\n            padding:30px 30px 0px 30px;\n}\n\n.eg-harding-wrapper .esg-media-poster { overflow:hidden; \n            border-radius:50%;\n            -webkit-border-radius:50%;\n            -moz-border-radius:50%;\n}\n\n/*ULYSSES S GRANT */\n.eg-ulysses-s-grant-wrapper .esg-entry-media { overflow:hidden; \n            box-sizing:border-box;\n            -webkit-box-sizing:border-box;\n            -moz-box-sizing:border-box;\n            padding:30px 30px 0px 30px;\n}\n\n.eg-ulysses-s-grant-wrapper .esg-media-poster { overflow:hidden; \n            border-radius:50%;\n            -webkit-border-radius:50%;\n            -moz-border-radius:50%;\n}\n\n/*RICHARD NIXON */\n.eg-richard-nixon-wrapper .esg-entry-media { overflow:hidden; \n            box-sizing:border-box;\n            -webkit-box-sizing:border-box;\n            -moz-box-sizing:border-box;\n            padding:30px 30px 0px 30px;\n}\n\n.eg-richard-nixon-wrapper .esg-media-poster { overflow:hidden; \n            border-radius:50%;\n            -webkit-border-radius:50%;\n            -moz-border-radius:50%;\n}\n\n\n/* HERBERT HOOVER */\n.eg-herbert-hoover-wrapper .esg-media-poster{\n    filter: url(\"data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale\"); /* Firefox 10+, Firefox on Android */\n    filter: gray; /* IE6-9 */\n    -webkit-filter: grayscale(100%); /* Chrome 19+, Safari 6+, Safari 6+ iOS */\n}\n\n.eg-herbert-hoover-wrapper:hover .esg-media-poster{\n    filter: url(\"data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/></filter></svg>#grayscale\");\n    -webkit-filter: grayscale(0%);}\n\n\n/* JOOHNSON */\n.eg-lyndon-johnson-wrapper .esg-media-poster{\n    filter: url(\"data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale\"); /* Firefox 10+, Firefox on Android */\n    filter: gray; /* IE6-9 */\n    -webkit-filter: grayscale(100%); /* Chrome 19+, Safari 6+, Safari 6+ iOS */\n}\n\n.eg-lyndon-johnson-wrapper:hover .esg-media-poster{\n    filter: url(\"data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/></filter></svg>#grayscale\");\n    -webkit-filter: grayscale(0%);}\n\n\n/*RONALD REAGAN*/\n.esg-overlay.eg-ronald-reagan-container {background: -moz-linear-gradient(top, rgba(0,0,0,0) 50%, rgba(0,0,0,0.83) 99%, rgba(0,0,0,0.85) 100%); /* FF3.6+ */\nbackground: -webkit-gradient(linear, left top, left bottom, color-stop(50%,rgba(0,0,0,0)), color-stop(99%,rgba(0,0,0,0.83)), color-stop(100%,rgba(0,0,0,0.85))); /* Chrome,Safari4+ */\nbackground: -webkit-linear-gradient(top, rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); /* Chrome10+,Safari5.1+ */\nbackground: -o-linear-gradient(top, rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); /* Opera 11.10+ */\nbackground: -ms-linear-gradient(top, rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); /* IE10+ */\nbackground: linear-gradient(to bottom, rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); /* W3C */\nfilter: progid:DXImageTransform.Microsoft.gradient( startColorstr=\'#00000000\', endColorstr=\'#d9000000\',GradientType=0 ); /* IE6-9 */}\n\n/*GEORGE BUSH*/\n.eg-georgebush-wrapper .esg-entry-cover {background: -moz-linear-gradient(top, rgba(0,0,0,0) 50%, rgba(0,0,0,0.83) 99%, rgba(0,0,0,0.85) 100%); /* FF3.6+ */\nbackground: -webkit-gradient(linear, left top, left bottom, color-stop(50%,rgba(0,0,0,0)), color-stop(99%,rgba(0,0,0,0.83)), color-stop(100%,rgba(0,0,0,0.85))); /* Chrome,Safari4+ */\nbackground: -webkit-linear-gradient(top, rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); /* Chrome10+,Safari5.1+ */\nbackground: -o-linear-gradient(top, rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); /* Opera 11.10+ */\nbackground: -ms-linear-gradient(top, rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); /* IE10+ */\nbackground: linear-gradient(to bottom, rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); /* W3C */\nfilter: progid:DXImageTransform.Microsoft.gradient( startColorstr=\'#00000000\', endColorstr=\'#d9000000\',GradientType=0 ); /* IE6-9 */}\n\n/*GEORGE BUSH\n.eg-georgebush-wrapper .esg-entry-cover { background: rgba(0,0,0,0.5);}*/\n\n/*JEFFERSON*/\n.eg-jefferson-wrapper { -webkit-border-radius: 5px !important; -moz-border-radius: 5px !important; border-radius: 5px !important; -webkit-mask-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC) !important; }\n\n/*MONROE*/\n.eg-monroe-element-1 { text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1); }\n\n/*LYNDON JOHNSON*/\n.eg-lyndon-johnson-wrapper .esg-entry-cover { background: -moz-radial-gradient(center, ellipse cover,  rgba(0,0,0,0.35) 0%, rgba(18,18,18,0) 96%, rgba(19,19,19,0) 100%); /* FF3.6+ */\nbackground: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(0,0,0,0.35)), color-stop(96%,rgba(18,18,18,0)), color-stop(100%,rgba(19,19,19,0))); /* Chrome,Safari4+ */\nbackground: -webkit-radial-gradient(center, ellipse cover,  rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); /* Chrome10+,Safari5.1+ */\nbackground: -o-radial-gradient(center, ellipse cover,  rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); /* Opera 12+ */\nbackground: -ms-radial-gradient(center, ellipse cover,  rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); /* IE10+ */\nbackground: radial-gradient(ellipse at center,  rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); /* W3C */\nfilter: progid:DXImageTransform.Microsoft.gradient( startColorstr=\'#59000000\', endColorstr=\'#00131313\',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */\n }\n\n/*WILBERT*/\n.eg-wilbert-wrapper .esg-entry-cover { background: -moz-radial-gradient(center, ellipse cover,  rgba(0,0,0,0.35) 0%, rgba(18,18,18,0) 96%, rgba(19,19,19,0) 100%); /* FF3.6+ */\nbackground: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(0,0,0,0.35)), color-stop(96%,rgba(18,18,18,0)), color-stop(100%,rgba(19,19,19,0))); /* Chrome,Safari4+ */\nbackground: -webkit-radial-gradient(center, ellipse cover,  rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); /* Chrome10+,Safari5.1+ */\nbackground: -o-radial-gradient(center, ellipse cover,  rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); /* Opera 12+ */\nbackground: -ms-radial-gradient(center, ellipse cover,  rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); /* IE10+ */\nbackground: radial-gradient(ellipse at center,  rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); /* W3C */\nfilter: progid:DXImageTransform.Microsoft.gradient( startColorstr=\'#59000000\', endColorstr=\'#00131313\',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */\n }\n.eg-wilbert-wrapper .esg-media-poster{\n  -webkit-transition: 0.4s ease-in-out;\n    -moz-transition:  0.4s ease-in-out;\n    -o-transition:  0.4s ease-in-out;\n    transition:  0.4s ease-in-out;\n    filter: url(\"data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale\"); /* Firefox 10+, Firefox on Android */\n    filter: gray; /* IE6-9 */\n    -webkit-filter: grayscale(100%); /* Chrome 19+, Safari 6+, Safari 6+ iOS */\n}\n\n.eg-wilbert-wrapper:hover .esg-media-poster{\n    filter: url(\"data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/></filter></svg>#grayscale\");\n    -webkit-filter: grayscale(0%);}\n\n/*PHILLIE*/\n.eg-phillie-element-3:after { \ncontent:\" \";\nwidth: 0px;\nheight: 0px;\nborder-style: solid;\nborder-width: 5px 5px 0 5px;\nborder-color: #000 transparent transparent transparent;\nleft:50%;\nmargin-left:-5px; bottom:-5px; position:absolute; }\n\n/*HOWARD TAFT*/\n.eg-howardtaft-wrapper .esg-media-poster{\n    filter: url(\"data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/></filter></svg>#grayscale\");\n    -webkit-filter: grayscale(0%);\n}\n\n.eg-howardtaft-wrapper:hover .esg-media-poster{\n    filter: url(\"data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale\"); /* Firefox 10+, Firefox on Android */\n    filter: gray; /* IE6-9 */\n    -webkit-filter: grayscale(100%); /* Chrome 19+, Safari 6+, Safari 6+ iOS */\n}\n\n/* WOOCOMMERCE */\n.myportfolio-container .added_to_cart.wc-forward { font-family: \"Open Sans\"; font-size: 13px; color: #fff; margin-top: 10px; }\n\n/* LIGHTBOX */\n.esgbox-title.esgbox-title-outside-wrap { font-size: 15px; font-weight: 700; text-align: center; }\n.esgbox-title.esgbox-title-inside-wrap { padding-bottom: 10px; font-size: 15px; font-weight: 700; text-align: center; }','yes'),(800,'tp-google-fonts','a:0:{}','yes'),(801,'tp_eg_role','','yes'),(802,'tp_eg_update-check-short','1625776540','yes'),(803,'tp_eg-templates-check','1625692552','yes'),(804,'tp_eg-templates-new','','no'),(806,'widget_ess-grid-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1101,'essential-connection','1','yes'),(1102,'essential-notices','a:4:{i:0;O:8:\"stdClass\":7:{s:7:\"version\";s:3:\"2.1\";s:4:\"text\";s:299:\"<a href=\"//codecanyon.net/item/essential-grid-wordpress-plugin/7563340#item-description__version-2-1-5-artemis-26th-june-2017\" target=\"_blank\"><img src=\"//updates.themepunch-ext-a.tools/banners/essential_grid_updatenow_215.jpg\" style=\"min-width: 50%; max-width:100%\" alt=\"EssGrid 2.1.5 is out\" ></a>\";s:4:\"code\";s:10:\"TPEG215-01\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;s:10:\"additional\";a:0:{}}i:1;O:8:\"stdClass\":7:{s:7:\"version\";s:5:\"2.2.9\";s:4:\"text\";s:353:\"<a href=\"//codecanyon.net/item/essential-grid-wordpress-plugin/7563340?ref=themepunch\" target=\"_blank\"><img src=\"//updates.themepunch-ext-a.tools/banners/essential_grid_updatenow_23.jpg\" srcset=\"//updates.themepunch-ext-a.tools/banners/essential_grid_updatenow_23@2x.jpg\" style=\"width:817px;min-width: 50%; max-width:100%\" alt=\"EssGrid 2.3 is out\" ></a>\";s:4:\"code\";s:9:\"TPEG23-00\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;s:10:\"additional\";a:0:{}}i:2;O:8:\"stdClass\":7:{s:7:\"version\";s:3:\"2.3\";s:4:\"text\";s:355:\"<a href=\"//codecanyon.net/item/essential-grid-wordpress-plugin/7563340?ref=themepunch\" target=\"_blank\"><img src=\"//updates.themepunch-ext-a.tools/banners/essential_grid_updatenow_231.jpg\" srcset=\"//updates.themepunch-ext-a.tools/banners/essential_grid_updatenow_231@2x.jpg\" style=\"width:817px;min-width: 50%; max-width:100%\" alt=\"EssGrid 2.3 is out\" ></a>\";s:4:\"code\";s:9:\"TPEG23-01\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;s:10:\"additional\";a:0:{}}i:3;O:8:\"stdClass\":8:{s:7:\"version\";s:7:\"2.9.999\";s:4:\"text\";s:289:\"<div style=\"display: block; background-color: #150A33;\"><a href=\"https://www.themepunch.com/faq/wordpress-5-5-important-update-information/\" target=\"_blank\"><img alt=\"Important Notice\" src=\"//updates.themepunch-ext-a.tools/banners/important_banner.jpg\" width=\"1400\" height=\"250\"></a></div>\";s:4:\"code\";s:10:\"TPRS630-01\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;s:4:\"type\";s:1:\"3\";s:10:\"additional\";a:0:{}}}','yes'),(3847,'_transient_timeout__woocommerce_helper_subscriptions','1625777436','no'),(3848,'_transient__woocommerce_helper_subscriptions','a:0:{}','no'),(3849,'_site_transient_timeout_theme_roots','1625778336','no'),(3850,'_site_transient_theme_roots','a:4:{s:9:\"consultio\";s:7:\"/themes\";s:14:\"twentynineteen\";s:7:\"/themes\";s:12:\"twentytwenty\";s:7:\"/themes\";s:15:\"twentytwentyone\";s:7:\"/themes\";}','no'),(2898,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.7.2.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.7.2.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.7.2-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.7.2-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"5.7.2\";s:7:\"version\";s:5:\"5.7.2\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.6\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1625776536;s:15:\"version_checked\";s:5:\"5.7.2\";s:12:\"translations\";a:0:{}}','no'),(815,'eg-current-sorting','a:0:{}','yes'),(1447,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(805,'tp_eg-templates','a:1:{s:5:\"grids\";a:60:{i:0;a:16:{s:2:\"id\";s:1:\"1\";s:5:\"title\";s:12:\"Vimeo Player\";s:5:\"alias\";s:11:\"vimeostream\";s:3:\"zip\";s:15:\"vimeostream.zip\";s:3:\"uid\";s:32:\"088c7c0f8a0862bbe2dab1dd16601a3e\";s:3:\"img\";s:13:\"ess_vimeo.jpg\";s:7:\"preview\";s:87:\"https://essential.themepunch.com/template_library/minimal-vimeo-playlist-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:57:\"<div class=\"hcap\">Even Grid<br/>Stream<br>Load More</div>\";s:11:\"setup_notes\";s:80:\"Please clear the stream cache when you<br> \r\napply changes to the stream source.\";s:6:\"filter\";a:5:{i:0;s:4:\"even\";i:1;s:9:\"fullwidth\";i:2;s:8:\"loadmore\";i:3;s:12:\"nonavigation\";i:4;s:7:\"streams\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 09:59:52\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:1;a:16:{s:2:\"id\";s:1:\"3\";s:5:\"title\";s:14:\"Flickr Gallery\";s:5:\"alias\";s:12:\"flickrstream\";s:3:\"zip\";s:16:\"flickrstream.zip\";s:3:\"uid\";s:32:\"edfd9652b92d5783d74fefc3247632d0\";s:3:\"img\";s:14:\"ess_flickr.jpg\";s:7:\"preview\";s:85:\"https://essential.themepunch.com/template_library/flickr-photo-gallery-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:57:\"<div class=\"hcap\">Even Grid<br/>Stream<br>Load More</div>\";s:11:\"setup_notes\";s:132:\"You will need to insert a Flickr API key<br>\r\n in the \"Source Tab\", also please clear <br>\r\nthe stream cache when you apply changes.\";s:6:\"filter\";a:5:{i:0;s:4:\"even\";i:1;s:9:\"fullwidth\";i:2;s:8:\"loadmore\";i:3;s:12:\"nonavigation\";i:4;s:7:\"streams\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 09:59:40\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:2;a:16:{s:2:\"id\";s:1:\"4\";s:5:\"title\";s:17:\"Instagram Minimal\";s:5:\"alias\";s:15:\"instagramstream\";s:3:\"zip\";s:19:\"instagramstream.zip\";s:3:\"uid\";s:32:\"73061fa3b75c5afaf4846cdf95add10c\";s:3:\"img\";s:13:\"ess_insta.jpg\";s:7:\"preview\";s:90:\"https://essential.themepunch.com/template_library/minimal-instagram-gallery-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:57:\"<div class=\"hcap\">Even Grid<br/>Stream<br>Load More</div>\";s:11:\"setup_notes\";s:80:\"Please clear the stream cache when<br>\r\n you apply changes to the stream source.\";s:6:\"filter\";a:5:{i:0;s:4:\"even\";i:1;s:9:\"fullwidth\";i:2;s:8:\"loadmore\";i:3;s:12:\"nonavigation\";i:4;s:7:\"streams\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 09:59:06\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:3;a:16:{s:2:\"id\";s:1:\"5\";s:5:\"title\";s:12:\"YouTube Grid\";s:5:\"alias\";s:13:\"youtubestream\";s:3:\"zip\";s:17:\"youtubestream.zip\";s:3:\"uid\";s:32:\"df776948dd7ca1cb88ba59a4e638f20e\";s:3:\"img\";s:15:\"ess_youtube.jpg\";s:7:\"preview\";s:95:\"https://essential.themepunch.com/template_library/youtube-playlist-video-gallery-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:69:\"<div class=\"hcap\">Even Grid<br/>Stream<br>Pagination<br>Sorting</div>\";s:11:\"setup_notes\";s:133:\"You will need to insert a YouTube API key<br>\r\n in the \"Source Tab\", also please clear the<br>\r\n stream cache when you apply changes.\";s:6:\"filter\";a:5:{i:0;s:9:\"fullwidth\";i:1;s:7:\"masonry\";i:2;s:10:\"pagination\";i:3;s:7:\"sorting\";i:4;s:7:\"streams\";}s:3:\"cat\";s:1:\"0\";s:4:\"date\";s:19:\"2018-11-14 09:58:54\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:4;a:16:{s:2:\"id\";s:1:\"6\";s:5:\"title\";s:16:\"Twitter Overview\";s:5:\"alias\";s:13:\"twitterstream\";s:3:\"zip\";s:17:\"twitterstream.zip\";s:3:\"uid\";s:32:\"a38d8298c59f31831c516ce8429026cf\";s:3:\"img\";s:15:\"ess_twitter.jpg\";s:7:\"preview\";s:74:\"https://essential.themepunch.com/template_library/twitter-stream-overview/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:60:\"<div class=\"hcap\">Masonry Grid<br/>Stream<br>Load More</div>\";s:11:\"setup_notes\";s:135:\"You will need to insert Twitter credentials<br>\r\n in the \"Source Tab\", also please clear the stream<br>\r\n cache when you apply changes.\";s:6:\"filter\";a:5:{i:0;s:9:\"fullwidth\";i:1;s:8:\"loadmore\";i:2;s:7:\"masonry\";i:3;s:12:\"nonavigation\";i:4;s:7:\"streams\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 09:59:24\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:5;a:16:{s:2:\"id\";s:1:\"7\";s:5:\"title\";s:13:\"Facebook Page\";s:5:\"alias\";s:14:\"facebookstream\";s:3:\"zip\";s:18:\"facebookstream.zip\";s:3:\"uid\";s:32:\"c346b49eb0dbfa897454160eccc55383\";s:3:\"img\";s:16:\"ess_facebook.jpg\";s:7:\"preview\";s:107:\"https://essential.themepunch.com/template_library/facebook-fanpage-content-and-album-gallery-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:60:\"<div class=\"hcap\">Masonry Grid<br/>Stream<br>Load More</div>\";s:11:\"setup_notes\";s:138:\"You will need to register a Facebook app before.<br>\r\nAlso please clear the stream cache when you<br>\r\napply changes to the stream source.\";s:6:\"filter\";a:5:{i:0;s:9:\"fullwidth\";i:1;s:8:\"loadmore\";i:2;s:7:\"masonry\";i:3;s:12:\"nonavigation\";i:4;s:7:\"streams\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 09:58:42\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:6;a:16:{s:2:\"id\";s:1:\"8\";s:5:\"title\";s:5:\"Jason\";s:5:\"alias\";s:4:\"woo2\";s:3:\"zip\";s:8:\"woo2.zip\";s:3:\"uid\";s:32:\"e4f9657a98fc6cc7a3a7136b5c7b2015\";s:3:\"img\";s:9:\"jason.jpg\";s:7:\"preview\";s:84:\"https://essential.themepunch.com/template_library/jason-woocommerce-product-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:87:\"<div class=\"hcap\">Boxed 3 Row<br/>WooCommerce Shop<br>Shopping Cart<br/>Filtering</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:4:{i:0;s:4:\"even\";i:1;s:10:\"pagination\";i:2;s:7:\"sorting\";i:3;s:11:\"woocommerce\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:02:15\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:7;a:16:{s:2:\"id\";s:1:\"9\";s:5:\"title\";s:6:\"Arthur\";s:5:\"alias\";s:4:\"woo1\";s:3:\"zip\";s:8:\"woo1.zip\";s:3:\"uid\";s:32:\"59bfe81828b2ddcc89b9e3968760e9d1\";s:3:\"img\";s:10:\"arthur.jpg\";s:7:\"preview\";s:85:\"https://essential.themepunch.com/template_library/arthur-woocommerce-product-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:92:\"<div class=\"hcap\">Full-Width 5 Row<br/>WooCommerce Shop<br>Shopping Cart<br/>Filtering</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:5:{i:0;s:9:\"fullwidth\";i:1;s:7:\"masonry\";i:2;s:10:\"pagination\";i:3;s:7:\"sorting\";i:4;s:11:\"woocommerce\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:02:21\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:8;a:16:{s:2:\"id\";s:2:\"10\";s:5:\"title\";s:6:\"Hoover\";s:5:\"alias\";s:19:\"masonry_grid_hoover\";s:3:\"zip\";s:23:\"masonry_grid_hoover.zip\";s:3:\"uid\";s:32:\"d97c537e349e9f1c91dff285f8df60c5\";s:3:\"img\";s:10:\"hoover.jpg\";s:7:\"preview\";s:93:\"https://essential.themepunch.com/template_library/hoover-masonry-wordpress-post-gallery-grid/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:93:\"<div class=\"hcap\">Masonry Grid<br/>Video Entries<br/>B&W Effect<br/>Filters<br/>Sorting</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:5:{i:0;s:9:\"fullwidth\";i:1;s:7:\"masonry\";i:2;s:10:\"pagination\";i:3;s:7:\"sorting\";i:4;s:5:\"video\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:02:27\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:9;a:16:{s:2:\"id\";s:2:\"11\";s:5:\"title\";s:6:\"Lyndon\";s:5:\"alias\";s:12:\"clients_grid\";s:3:\"zip\";s:16:\"clients_grid.zip\";s:3:\"uid\";s:32:\"2cdd4fc78978e87d7aa0502ba3b686e5\";s:3:\"img\";s:10:\"lyndon.jpg\";s:7:\"preview\";s:98:\"https://essential.themepunch.com/template_library/lyndon-modern-client-logo-gallery-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:87:\"<div class=\"hcap\">2 Row Scroller<br/>Icons via Meta<br/>B&W Effect<br/>Pagination</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:3:{i:0;s:7:\"clients\";i:1;s:4:\"even\";i:2;s:9:\"fullwidth\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:02:32\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:10;a:16:{s:2:\"id\";s:2:\"12\";s:5:\"title\";s:7:\"Phillie\";s:5:\"alias\";s:14:\"clients_grid_3\";s:3:\"zip\";s:18:\"clients_grid_3.zip\";s:3:\"uid\";s:32:\"5610d9625b702520c344168cfa70579c\";s:3:\"img\";s:11:\"phillie.jpg\";s:7:\"preview\";s:98:\"https://essential.themepunch.com/template_library/phillie-clients-logo-grid-gallery-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:94:\"<div class=\"hcap\">Clean Design<br/>Icons via Meta<br/>Tooltip Style Hover<br/>Nav Arrows</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:2:{i:0;s:7:\"clients\";i:1;s:4:\"even\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:02:37\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:11;a:16:{s:2:\"id\";s:2:\"13\";s:5:\"title\";s:8:\"McKinley\";s:5:\"alias\";s:19:\"media_blog_mckinley\";s:3:\"zip\";s:23:\"media_blog_mckinley.zip\";s:3:\"uid\";s:32:\"a430af281c10753e067a38d1641c8d7b\";s:3:\"img\";s:12:\"mckinley.jpg\";s:7:\"preview\";s:93:\"https://essential.themepunch.com/template_library/multimedia-blog-post-gallery-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:100:\"<div class=\"hcap\">Masonry Grid<br/>Video Entries<br/>Directional Hover<br/>Filters<br/>Sorting</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:5:{i:0;s:9:\"fullwidth\";i:1;s:7:\"masonry\";i:2;s:10:\"pagination\";i:3;s:7:\"sorting\";i:4;s:5:\"video\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:03:21\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:12;a:16:{s:2:\"id\";s:2:\"14\";s:5:\"title\";s:4:\"Taft\";s:5:\"alias\";s:21:\"media_grid_howardtaft\";s:3:\"zip\";s:25:\"media_grid_howardtaft.zip\";s:3:\"uid\";s:32:\"eebc5585762fe9889ceff28fae22137d\";s:3:\"img\";s:8:\"taft.jpg\";s:7:\"preview\";s:83:\"https://essential.themepunch.com/template_library/multimedia-gallery-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:87:\"<div class=\"hcap\">3 x 3 Grid<br/>Video Entries<br>Directional Hover<br/>Load More</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:4:{i:0;s:4:\"even\";i:1;s:8:\"loadmore\";i:2;s:12:\"nonavigation\";i:3;s:5:\"video\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:03:29\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:13;a:16:{s:2:\"id\";s:2:\"15\";s:5:\"title\";s:7:\"Wilbert\";s:5:\"alias\";s:14:\"clients_grid_2\";s:3:\"zip\";s:18:\"clients_grid_2.zip\";s:3:\"uid\";s:32:\"f27f88f41b38547d344e6cf993951862\";s:3:\"img\";s:11:\"wilbert.jpg\";s:7:\"preview\";s:96:\"https://essential.themepunch.com/template_library/wilbert-client-and-logo-gallery-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:86:\"<div class=\"hcap\">4 x 3 Grid<br/>Icons via Meta<br/>B&W Effect<br/>No Navigation</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:3:{i:0;s:7:\"clients\";i:1;s:4:\"even\";i:2;s:12:\"nonavigation\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:03:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:14;a:16:{s:2:\"id\";s:2:\"16\";s:5:\"title\";s:9:\"Roosevelt\";s:5:\"alias\";s:19:\"even_grid_roosevelt\";s:3:\"zip\";s:23:\"even_grid_roosevelt.zip\";s:3:\"uid\";s:32:\"5a8c19d4149497e2b6ba24a367ef008f\";s:3:\"img\";s:13:\"roosevelt.jpg\";s:7:\"preview\";s:96:\"https://essential.themepunch.com/template_library/roosevelt-hover-detail-wordpress-post-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:92:\"<div class=\"hcap\">Full-Screen Grid<br/>Push Up Media Hover<br/>Left & Right Nav Arrows</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:3:{i:0;s:4:\"even\";i:1;s:10:\"fullscreen\";i:2;s:10:\"pagination\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:03:38\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:15;a:16:{s:2:\"id\";s:2:\"17\";s:5:\"title\";s:6:\"Quincy\";s:5:\"alias\";s:16:\"even_grid_quincy\";s:3:\"zip\";s:20:\"even_grid_quincy.zip\";s:3:\"uid\";s:32:\"7a6e7bbd01c5d558748c8c2c7b6373b9\";s:3:\"img\";s:10:\"quincy.jpg\";s:7:\"preview\";s:91:\"https://essential.themepunch.com/template_library/quincy-zoom-hover-wordpress-post-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:129:\"<div class=\"hcap\">Single / Double Row<br/>Slider Style<br/>Link & Lightbox Icons<br/>Left & Right Nav Arrows<br/>Pagination</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:3:{i:0;s:4:\"even\";i:1;s:9:\"fullwidth\";i:2;s:10:\"pagination\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:03:42\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:16;a:16:{s:2:\"id\";s:2:\"18\";s:5:\"title\";s:17:\"Price Tables Ford\";s:5:\"alias\";s:17:\"price_tables_ford\";s:3:\"zip\";s:21:\"price_tables_ford.zip\";s:3:\"uid\";s:32:\"1ebd3eab67b822e45ad9648b9701ce01\";s:3:\"img\";s:8:\"ford.jpg\";s:7:\"preview\";s:82:\"https://essential.themepunch.com/template_library/ford-price-tables-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:82:\"<div class=\"hcap\">Traditional Price Tables<br/>Icons on Hover<br/>Pagination</div>\";s:11:\"setup_notes\";s:64:\"No Example Products included.<br> \r\nSelect a source for content.\";s:6:\"filter\";a:4:{i:0;s:9:\"fullwidth\";i:1;s:7:\"masonry\";i:2;s:10:\"pagination\";i:3;s:11:\"pricetables\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:23:54\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:17;a:16:{s:2:\"id\";s:2:\"19\";s:5:\"title\";s:18:\"Price Tables Nixon\";s:5:\"alias\";s:16:\"price_tables_two\";s:3:\"zip\";s:20:\"price_tables_two.zip\";s:3:\"uid\";s:32:\"a45c055632139fadbc92232031fcd3d5\";s:3:\"img\";s:9:\"nixon.jpg\";s:7:\"preview\";s:95:\"https://essential.themepunch.com/template_library/nixon-woocommerce-price-tables-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:84:\"<div class=\"hcap\">Price Table Scroller<br/>Show Image Hover<br/>Stacked Tables</div>\";s:11:\"setup_notes\";s:64:\"No Example Products included.<br> \r\nSelect a source for content.\";s:6:\"filter\";a:3:{i:0;s:7:\"masonry\";i:1;s:12:\"nonavigation\";i:2;s:11:\"pricetables\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:23:48\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:18;a:16:{s:2:\"id\";s:2:\"20\";s:5:\"title\";s:18:\"Price Tables Grant\";s:5:\"alias\";s:16:\"price_tables_one\";s:3:\"zip\";s:20:\"price_tables_one.zip\";s:3:\"uid\";s:32:\"19be80fd1a58cbb3714ee76453b11771\";s:3:\"img\";s:9:\"grant.jpg\";s:7:\"preview\";s:91:\"https://essential.themepunch.com/template_library/ulysses-woocommerce-product-price-tables/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:116:\"<div class=\"hcap\">Price Table Scroller<br/>Show Image Hover<br/>Left & Right Nav Arrows<br/>Boxed & Full Shown</div>\";s:11:\"setup_notes\";s:64:\"No Example Products included.<br> \r\nSelect a source for content.\";s:6:\"filter\";a:4:{i:0;s:9:\"fullwidth\";i:1;s:7:\"masonry\";i:2;s:10:\"pagination\";i:3;s:11:\"pricetables\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:23:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:19;a:16:{s:2:\"id\";s:2:\"21\";s:5:\"title\";s:7:\"Johnson\";s:5:\"alias\";s:17:\"even_grid_johnson\";s:3:\"zip\";s:21:\"even_grid_johnson.zip\";s:3:\"uid\";s:32:\"bcc38fc15aa572544a076bbd38b867af\";s:3:\"img\";s:11:\"johnson.jpg\";s:7:\"preview\";s:89:\"https://essential.themepunch.com/template_library/johnson-minimal-wordpress-post-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:96:\"<div class=\"hcap\">Full Width Grid<br/>Colored Hover<br/>3 Icons on Hover<br/>No Navigation</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:3:{i:0;s:4:\"even\";i:1;s:9:\"fullwidth\";i:2;s:12:\"nonavigation\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:03:47\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:20;a:16:{s:2:\"id\";s:2:\"22\";s:5:\"title\";s:9:\"Cleveland\";s:5:\"alias\";s:19:\"even_grid_cleveland\";s:3:\"zip\";s:23:\"even_grid_cleveland.zip\";s:3:\"uid\";s:32:\"fc12421ec2c8804996d8c766a7d7c01d\";s:3:\"img\";s:13:\"cleveland.jpg\";s:7:\"preview\";s:96:\"https://essential.themepunch.com/template_library/cleveland-hover-effect-wordpress-blog-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:102:\"<div class=\"hcap\">Full Width Grid<br/>Content on Hover<br/>Filters<br/>Pagination<br/>Nav Arrows</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:5:{i:0;s:4:\"even\";i:1;s:9:\"filtering\";i:2;s:9:\"fullwidth\";i:3;s:10:\"pagination\";i:4;s:7:\"sorting\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:03:52\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:21;a:16:{s:2:\"id\";s:2:\"23\";s:5:\"title\";s:4:\"Bush\";s:5:\"alias\";s:20:\"even_grid_georgebush\";s:3:\"zip\";s:24:\"even_grid_georgebush.zip\";s:3:\"uid\";s:32:\"ca6e67691019249b786a7ea5fa577a71\";s:3:\"img\";s:8:\"bush.jpg\";s:7:\"preview\";s:97:\"https://essential.themepunch.com/template_library/bush-fullwidth-blog-post-gallery-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:88:\"<div class=\"hcap\">Full Width 2 Row<br/>Cover Grow Hover<br/>Filters<br/>Nav Arrows</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:3:{i:0;s:4:\"even\";i:1;s:9:\"filtering\";i:2;s:9:\"fullwidth\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:03:56\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:22;a:16:{s:2:\"id\";s:2:\"24\";s:5:\"title\";s:8:\"Harrison\";s:5:\"alias\";s:23:\"even_grid_henryharrison\";s:3:\"zip\";s:27:\"even_grid_henryharrison.zip\";s:3:\"uid\";s:32:\"be1e10b8bfc8ad490402e8b7605bc428\";s:3:\"img\";s:12:\"harrison.jpg\";s:7:\"preview\";s:89:\"https://essential.themepunch.com/template_library/harrison-bubbly-wordpress-blog-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:83:\"<div class=\"hcap\">Full Width 4 Row<br/>Special Effect Hover<br/>No Navigation</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:3:{i:0;s:4:\"even\";i:1;s:9:\"fullwidth\";i:2;s:12:\"nonavigation\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:04:01\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:23;a:16:{s:2:\"id\";s:2:\"25\";s:5:\"title\";s:8:\"VanBuren\";s:5:\"alias\";s:18:\"even_grid_vanburen\";s:3:\"zip\";s:22:\"even_grid_vanburen.zip\";s:3:\"uid\";s:32:\"c4633fba2e78794bcdef41c06d703c39\";s:3:\"img\";s:12:\"vanburen.jpg\";s:7:\"preview\";s:93:\"https://essential.themepunch.com/template_library/vanburen-dark-hover-wordpress-post-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:105:\"<div class=\"hcap\">Full Width 3 Row<br/>Dark Opacity Hover<br/>Filters<br/>Pagination<br/>Nav Arrows</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:4:{i:0;s:4:\"even\";i:1;s:9:\"filtering\";i:2;s:9:\"fullwidth\";i:3;s:10:\"pagination\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:04:05\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:24;a:16:{s:2:\"id\";s:2:\"26\";s:5:\"title\";s:7:\"Jackson\";s:5:\"alias\";s:17:\"even_grid_jackson\";s:3:\"zip\";s:21:\"even_grid_jackson.zip\";s:3:\"uid\";s:32:\"b433ca06c9e23c037437944c64a2b4da\";s:3:\"img\";s:11:\"jackson.jpg\";s:7:\"preview\";s:89:\"https://essential.themepunch.com/template_library/jackson-stylish-wordpress-blog-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:117:\"<div class=\"hcap\">Full Width 1:1 Grid<br/>Clean White Hover<br/>Link & Lightbox Icons<br/>Filters<br/>Load More</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:4:{i:0;s:4:\"even\";i:1;s:9:\"filtering\";i:2;s:9:\"fullwidth\";i:3;s:10:\"pagination\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:04:10\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:25;a:16:{s:2:\"id\";s:2:\"27\";s:5:\"title\";s:9:\"Jefferson\";s:5:\"alias\";s:19:\"even_grid_jefferson\";s:3:\"zip\";s:23:\"even_grid_jefferson.zip\";s:3:\"uid\";s:32:\"4aa970752344a63ca15558bd286efca9\";s:3:\"img\";s:13:\"jefferson.jpg\";s:7:\"preview\";s:85:\"https://essential.themepunch.com/template_library/variable-columns-flip-item-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:121:\"<div class=\"hcap\">Custom Row Grid<br/>Red Flip Hover<br/>Link & Lightbox Icons<br/>Filters & Sorting<br/>Pagination</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:7:{i:0;s:4:\"even\";i:1;s:14:\"filterdropdown\";i:2;s:9:\"filtering\";i:3;s:9:\"fullwidth\";i:4;s:10:\"pagination\";i:5;s:7:\"sorting\";i:6;s:15:\"variablecolumns\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:04:15\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:26;a:16:{s:2:\"id\";s:2:\"28\";s:5:\"title\";s:8:\"Garfield\";s:5:\"alias\";s:21:\"masonry_grid_garfield\";s:3:\"zip\";s:25:\"masonry_grid_garfield.zip\";s:3:\"uid\";s:32:\"5f73bbe117ebfb9b68ff85ee32bf4578\";s:3:\"img\";s:12:\"garfield.jpg\";s:7:\"preview\";s:93:\"https://essential.themepunch.com/template_library/garfield-wordpress-news-post-magazine-grid/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:113:\"<div class=\"hcap\">Masonry Blog Style<br/>Content on Top<br/>Dark Media Hover<br/>Load More<br/>Lazy Loading</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:3:{i:0;s:8:\"loadmore\";i:1;s:7:\"masonry\";i:2;s:10:\"pagination\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:04:20\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:27;a:16:{s:2:\"id\";s:2:\"29\";s:5:\"title\";s:6:\"Reagan\";s:5:\"alias\";s:26:\"masonry_grid_ronald_reagan\";s:3:\"zip\";s:30:\"masonry_grid_ronald_reagan.zip\";s:3:\"uid\";s:32:\"ae42d4e11ba5e393274edf5099a4a43f\";s:3:\"img\";s:10:\"raegan.jpg\";s:7:\"preview\";s:98:\"https://essential.themepunch.com/template_library/reagan-blog-post-overview-gallery-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:124:\"<div class=\"hcap\">Masonry Blog Style<br/>Static Caption<br/>Link Show Hover<br/>Filters & Sorting<br/>Scroll Load More</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:7:{i:0;s:14:\"filterdropdown\";i:1;s:9:\"filtering\";i:2;s:9:\"fullwidth\";i:3;s:8:\"loadmore\";i:4;s:7:\"masonry\";i:5;s:10:\"pagination\";i:6;s:7:\"sorting\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:04:25\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:28;a:16:{s:2:\"id\";s:2:\"30\";s:5:\"title\";s:6:\"Carter\";s:5:\"alias\";s:23:\"masonryblog_jimmycarter\";s:3:\"zip\";s:27:\"masonryblog_jimmycarter.zip\";s:3:\"uid\";s:32:\"4832dc2a147e574f20c537b958f2d9ae\";s:3:\"img\";s:10:\"carter.jpg\";s:7:\"preview\";s:88:\"https://essential.themepunch.com/template_library/carter-masonry-wordpress-post-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:104:\"<div class=\"hcap\">Masonry Blog Style<br/>3D Effect Hover<br/>Filters<br/>Pagination<br/>Nav Arrows</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:5:{i:0;s:9:\"filtering\";i:1;s:9:\"fullwidth\";i:2;s:7:\"masonry\";i:3;s:10:\"pagination\";i:4;s:7:\"sorting\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:04:31\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:29;a:16:{s:2:\"id\";s:2:\"31\";s:5:\"title\";s:6:\"Monroe\";s:5:\"alias\";s:16:\"even_grid_monroe\";s:3:\"zip\";s:20:\"even_grid_monroe.zip\";s:3:\"uid\";s:32:\"2399e4ae114ede833e881a78566050e8\";s:3:\"img\";s:10:\"monroe.jpg\";s:7:\"preview\";s:89:\"https://essential.themepunch.com/template_library/monroe-blog-post-gallery-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:95:\"<div class=\"hcap\">3x4 Grid<br/>Static Caption<br/>Button on Hover<br/>Filters<br/>Sorting</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:3:{i:0;s:4:\"even\";i:1;s:9:\"filtering\";i:2;s:7:\"sorting\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:04:39\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:30;a:16:{s:2:\"id\";s:2:\"32\";s:5:\"title\";s:7:\"Madison\";s:5:\"alias\";s:17:\"even_grid_madison\";s:3:\"zip\";s:21:\"even_grid_madison.zip\";s:3:\"uid\";s:32:\"0e0e929128e8f9047da8e95ed37da4f6\";s:3:\"img\";s:11:\"madison.jpg\";s:7:\"preview\";s:98:\"https://essential.themepunch.com/template_library/madison-even-grid-wordpress-woocommerce-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:97:\"<div class=\"hcap\">4x3 Grid<br/>Dark Flip Hovers<br/>Link & Lightbox Icons<br/>No Navigation</div>\";s:11:\"setup_notes\";s:67:\"Build for WooCommerce Products <br>\r\nbut any content type will fit.\";s:6:\"filter\";a:2:{i:0;s:4:\"even\";i:1;s:12:\"nonavigation\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-15 10:53:06\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:31;a:16:{s:2:\"id\";s:2:\"33\";s:5:\"title\";s:5:\"Adams\";s:5:\"alias\";s:15:\"even_grid_adams\";s:3:\"zip\";s:19:\"even_grid_adams.zip\";s:3:\"uid\";s:32:\"2b48888d484376485f80a175876907c6\";s:3:\"img\";s:9:\"adams.jpg\";s:7:\"preview\";s:98:\"https://essential.themepunch.com/template_library/adams-variable-fullwidth-wordpress-post-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:119:\"<div class=\"hcap\">Custom Row Grid<br/>Green Hovers<br/>Link & Lightbox Icons<br/>Filters & Sorting<br/>Pagination</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:6:{i:0;s:4:\"even\";i:1;s:14:\"filterdropdown\";i:2;s:9:\"filtering\";i:3;s:10:\"pagination\";i:4;s:7:\"sorting\";i:5;s:15:\"variablecolumns\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:04:53\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:32;a:16:{s:2:\"id\";s:2:\"34\";s:5:\"title\";s:10:\"Washington\";s:5:\"alias\";s:20:\"even_grid_washington\";s:3:\"zip\";s:24:\"even_grid_washington.zip\";s:3:\"uid\";s:32:\"81fa93476a5e8ecd8efa146f54c2bd5d\";s:3:\"img\";s:14:\"washington.jpg\";s:7:\"preview\";s:101:\"https://essential.themepunch.com/template_library/washington-tranparent-hover-wordpress-post-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:119:\"<div class=\"hcap\">3x3 Grid<br/>Dark Opacity Hovers<br/>Link & Lightbox Icons<br/>Filters & Pagination<br/>Sorting</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:4:{i:0;s:4:\"even\";i:1;s:9:\"filtering\";i:2;s:10:\"pagination\";i:3;s:7:\"sorting\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:05:09\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:33;a:16:{s:2:\"id\";s:2:\"35\";s:5:\"title\";s:6:\"Mullen\";s:5:\"alias\";s:10:\"joe-mullen\";s:3:\"zip\";s:14:\"joe-mullen.zip\";s:3:\"uid\";s:32:\"904cc1afb3d66ab851b199f0dd647b7b\";s:3:\"img\";s:14:\"joe-mullen.jpg\";s:7:\"preview\";s:82:\"https://essential.themepunch.com/template_library/joe-mullen-custom-image-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:81:\"<div class=\"hcap\">Custom Row Grid<br/>DarkHover<br/>Minimal<br/>Custom Grid</div>\";s:11:\"setup_notes\";s:76:\"Imports images to the media library<br>\r\nChange them on the single grid item\";s:6:\"filter\";a:3:{i:0;s:9:\"fullwidth\";i:1;s:12:\"nonavigation\";i:2;s:15:\"variablecolumns\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2019-01-08 12:32:49\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:34;a:16:{s:2:\"id\";s:2:\"36\";s:5:\"title\";s:10:\"Jari Kurri\";s:5:\"alias\";s:10:\"jari-kurri\";s:3:\"zip\";s:14:\"jari-kurri.zip\";s:3:\"uid\";s:32:\"1c4b4785e797ad2222d1f7fecab79649\";s:3:\"img\";s:14:\"jari-kurri.jpg\";s:7:\"preview\";s:83:\"https://essential.themepunch.com/template_library/jari-kurri-photograher-portfolio/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:97:\"<div class=\"hcap\">Custom Row Grid<br/>Filter Hover<br/>Stylish<br/>flickr Source (variable)</div>\";s:11:\"setup_notes\";s:98:\"Template was built with flickr Source,<br/>\r\neither add flickr API key or<br/>\r\nchange source type\";s:6:\"filter\";a:3:{i:0;s:12:\"nonavigation\";i:1;s:7:\"streams\";i:2;s:15:\"variablecolumns\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2019-01-08 12:32:28\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:35;a:16:{s:2:\"id\";s:2:\"37\";s:5:\"title\";s:13:\"Wayne Gretzky\";s:5:\"alias\";s:13:\"wayne-gretzky\";s:3:\"zip\";s:17:\"wayne-gretzky.zip\";s:3:\"uid\";s:32:\"c4c1a976fc6236fac530d21ef5b88a46\";s:3:\"img\";s:11:\"gretzky.jpg\";s:7:\"preview\";s:88:\"https://essential.themepunch.com/template_library/wayne-gretzky-custom-white-space-grid/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:97:\"<div class=\"hcap\">Custom Row Grid<br/>DarkHover<br/>Minimal<br/>Blank Items<br/>Custom Grid</div>\";s:11:\"setup_notes\";s:76:\"Imports images to the media library<br>\r\nChange them on the single grid item\";s:6:\"filter\";a:4:{i:0;s:9:\"fullwidth\";i:1;s:7:\"masonry\";i:2;s:12:\"nonavigation\";i:3;s:15:\"variablecolumns\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2019-01-08 12:33:02\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:36;a:16:{s:2:\"id\";s:2:\"38\";s:5:\"title\";s:18:\"Viacheslav Fetisov\";s:5:\"alias\";s:18:\"viacheslav-fetisov\";s:3:\"zip\";s:11:\"fetisov.zip\";s:3:\"uid\";s:32:\"8c4bb3bc608390189df9aef958e88ff3\";s:3:\"img\";s:11:\"fetisov.jpg\";s:7:\"preview\";s:87:\"https://essential.themepunch.com/template_library/viacheslav-fetisov-behance-portfolio/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:57:\"<div class=\"hcap\">Even Grid<br/>Stream<br>Portfolio</div>\";s:11:\"setup_notes\";s:133:\"You will need to insert a Behance API key<br>\r\n in the \"Source Tab\", also please clear <br>\r\nthe stream cache when you apply changes.\";s:6:\"filter\";a:3:{i:0;s:4:\"even\";i:1;s:12:\"nonavigation\";i:2;s:7:\"streams\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2019-01-08 12:33:11\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:37;a:16:{s:2:\"id\";s:2:\"39\";s:5:\"title\";s:14:\"Dark Portfolio\";s:5:\"alias\";s:14:\"portfolio-dark\";s:3:\"zip\";s:18:\"dark-portfolio.zip\";s:3:\"uid\";s:32:\"8ef34fed7cda3055b56f18510439f363\";s:3:\"img\";s:18:\"dark_portfolio.jpg\";s:7:\"preview\";s:76:\"https://essential.themepunch.com/template_library/dark-portfolio-photo-grid/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:74:\"<div class=\"hcap\">Custom Row Grid<br/>Red Hovers<br/>Read More Badge</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:3:{i:0;s:7:\"masonry\";i:1;s:12:\"nonavigation\";i:2;s:15:\"variablecolumns\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2019-01-08 12:34:49\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:38;a:16:{s:2:\"id\";s:2:\"40\";s:5:\"title\";s:10:\"My YouTube\";s:5:\"alias\";s:10:\"my-youtube\";s:3:\"zip\";s:14:\"my-youtube.zip\";s:3:\"uid\";s:32:\"7f118ae4b11b24445fe533cc96763e94\";s:3:\"img\";s:14:\"my_youtube.jpg\";s:7:\"preview\";s:70:\"https://essential.themepunch.com/template_library/my-youtube-playlist/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:80:\"<div class=\"hcap\">Variable Columns<br/>Stream<br>Views, Likes<br>Load More</div>\";s:11:\"setup_notes\";s:133:\"You will need to insert a YouTube API key<br>\r\n in the \"Source Tab\", also please clear the<br>\r\n stream cache when you apply changes.\";s:6:\"filter\";a:6:{i:0;s:8:\"loadmore\";i:1;s:7:\"masonry\";i:2;s:12:\"nonavigation\";i:3;s:7:\"streams\";i:4;s:15:\"variablecolumns\";i:5;s:5:\"video\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2019-01-08 12:34:38\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:39;a:16:{s:2:\"id\";s:2:\"41\";s:5:\"title\";s:12:\"My YouTube 2\";s:5:\"alias\";s:12:\"my-youtube-2\";s:3:\"zip\";s:16:\"my-youtube-2.zip\";s:3:\"uid\";s:32:\"bd4ce42cbad845ee3f6d295f14224a00\";s:3:\"img\";s:16:\"my_youtube_2.jpg\";s:7:\"preview\";s:70:\"https://essential.themepunch.com/template_library/my-youtube-2-player/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:80:\"<div class=\"hcap\">Variable Columns<br/>Stream<br>Views, Likes<br>Load More</div>\";s:11:\"setup_notes\";s:133:\"You will need to insert a YouTube API key<br>\r\n in the \"Source Tab\", also please clear the<br>\r\n stream cache when you apply changes.\";s:6:\"filter\";a:5:{i:0;s:8:\"loadmore\";i:1;s:12:\"nonavigation\";i:2;s:7:\"streams\";i:3;s:15:\"variablecolumns\";i:4;s:5:\"video\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2019-01-08 13:51:00\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:40;a:16:{s:2:\"id\";s:2:\"42\";s:5:\"title\";s:8:\"My Vimeo\";s:5:\"alias\";s:8:\"my-vimeo\";s:3:\"zip\";s:12:\"my-vimeo.zip\";s:3:\"uid\";s:32:\"d0235dd2ccce6602197882e423d32b88\";s:3:\"img\";s:12:\"my_vimeo.jpg\";s:7:\"preview\";s:68:\"https://essential.themepunch.com/template_library/my-vimeo-playlist/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:80:\"<div class=\"hcap\">Variable Columns<br/>Stream<br>Views, Likes<br>Load More</div>\";s:11:\"setup_notes\";s:59:\"Please clear the stream cache<br> \r\nwhen you apply changes.\";s:6:\"filter\";a:4:{i:0;s:8:\"loadmore\";i:1;s:7:\"streams\";i:2;s:15:\"variablecolumns\";i:3;s:5:\"video\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2019-01-08 12:34:25\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:41;a:16:{s:2:\"id\";s:2:\"43\";s:5:\"title\";s:12:\"My Instagram\";s:5:\"alias\";s:12:\"my-instagram\";s:3:\"zip\";s:16:\"my-instagram.zip\";s:3:\"uid\";s:32:\"58ced5a252fa1998a8cdb95ee2cd01d8\";s:3:\"img\";s:16:\"my-instagram.jpg\";s:7:\"preview\";s:72:\"https://essential.themepunch.com/template_library/instagram-grid-photos/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:76:\"<div class=\"hcap\">Masonry Grid<br/>Stream<br>Pagination<br>Shape hover</div>\";s:11:\"setup_notes\";s:80:\"Please clear the stream cache when<br>\r\n you apply changes to the stream source.\";s:6:\"filter\";a:4:{i:0;s:7:\"masonry\";i:1;s:10:\"pagination\";i:2;s:7:\"streams\";i:3;s:5:\"video\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2019-01-08 12:34:16\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:42;a:16:{s:2:\"id\";s:2:\"44\";s:5:\"title\";s:14:\"My Instagram 2\";s:5:\"alias\";s:14:\"my-instagram-2\";s:3:\"zip\";s:18:\"my-instagram-2.zip\";s:3:\"uid\";s:32:\"f5094a245731501bc553295ee5582a04\";s:3:\"img\";s:18:\"my-instagram-2.jpg\";s:7:\"preview\";s:79:\"https://essential.themepunch.com/template_library/my-instagram-2-funky-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:86:\"<div class=\"hcap\">Masonry Grid<br/>Stream<br>Pagination<br>Shape animation hover</div>\";s:11:\"setup_notes\";s:80:\"Please clear the stream cache when<br>\r\n you apply changes to the stream source.\";s:6:\"filter\";a:5:{i:0;s:7:\"masonry\";i:1;s:10:\"pagination\";i:2;s:7:\"streams\";i:3;s:15:\"variablecolumns\";i:4;s:5:\"video\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2019-01-08 12:34:07\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:43;a:16:{s:2:\"id\";s:2:\"45\";s:5:\"title\";s:16:\"My Handmade Blog\";s:5:\"alias\";s:16:\"my-handmade-blog\";s:3:\"zip\";s:15:\"my-handmade.zip\";s:3:\"uid\";s:32:\"162fa8de74410bb015f86cb4a7e7ef6c\";s:3:\"img\";s:15:\"my-handmade.jpg\";s:7:\"preview\";s:81:\"https://essential.themepunch.com/template_library/my-handmade-blog-post-overview/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:88:\"<div class=\"hcap\">Custom Row Grid<br/>Dark Hover<br/>Social Button<br/>Custom Grid</div>\";s:11:\"setup_notes\";s:76:\"Imports images to the media library<br>\r\nChange them on the single grid item\";s:6:\"filter\";a:2:{i:0;s:12:\"nonavigation\";i:1;s:15:\"variablecolumns\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2019-01-08 12:33:58\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:44;a:16:{s:2:\"id\";s:2:\"46\";s:5:\"title\";s:15:\"Furniture Store\";s:5:\"alias\";s:15:\"furniture-store\";s:3:\"zip\";s:28:\"furniture_store_complete.zip\";s:3:\"uid\";s:32:\"6a1d870475b15c3fbdad65edbcadd56a\";s:3:\"img\";s:19:\"furniture-store.jpg\";s:7:\"preview\";s:87:\"https://essential.themepunch.com/template_library/furniture-shop-lightbox-grid-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:85:\"<div class=\"hcap\">Custom Row Grid<br/>Lightbox for Detail Grids<br/>Custom Grid</div>\";s:11:\"setup_notes\";s:142:\"5MB Download File (contact our support for single grids)<br>\r\nImports images to the media library<br>\r\nChange them on the single grid item<br>\";s:6:\"filter\";a:2:{i:0;s:7:\"masonry\";i:1;s:15:\"variablecolumns\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2020-08-26 14:19:22\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:45;a:16:{s:2:\"id\";s:2:\"47\";s:5:\"title\";s:12:\"Denis Savard\";s:5:\"alias\";s:12:\"denis-savard\";s:3:\"zip\";s:16:\"denis-savard.zip\";s:3:\"uid\";s:32:\"9ce04544808c29a3b251f92954c4cfb3\";s:3:\"img\";s:16:\"denis-savard.jpg\";s:7:\"preview\";s:76:\"https://essential.themepunch.com/template_library/denis-savard-logo-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:81:\"<div class=\"hcap\">Custom Row Grid<br/>DarkHover<br/>Minimal<br/>Custom Grid</div>\";s:11:\"setup_notes\";s:76:\"Imports images to the media library<br>\r\nChange them on the single grid item\";s:6:\"filter\";a:3:{i:0;s:7:\"clients\";i:1;s:12:\"nonavigation\";i:2;s:15:\"variablecolumns\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2019-01-08 12:33:47\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:46;a:16:{s:2:\"id\";s:2:\"48\";s:5:\"title\";s:14:\"Dale Hawerchuk\";s:5:\"alias\";s:14:\"Dale Hawerchuk\";s:3:\"zip\";s:18:\"dale-hawerchuk.zip\";s:3:\"uid\";s:32:\"4c0bccc86e570cb89b6fc6a3b480acc3\";s:3:\"img\";s:18:\"dale-hawerchuk.jpg\";s:7:\"preview\";s:80:\"https://essential.themepunch.com/template_library/dale-hawerchuk-flickr-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:89:\"<div class=\"hcap\">Even Grid<br/>Dark Hover<br/>Stylish<br/>flickr Source (variable)</div>\";s:11:\"setup_notes\";s:98:\"Template was built with flickr Source,<br/>\r\neither add flickr API key or<br/>\r\nchange source type\";s:6:\"filter\";a:3:{i:0;s:4:\"even\";i:1;s:12:\"nonavigation\";i:2;s:7:\"streams\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2019-01-08 12:33:39\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:47;a:16:{s:2:\"id\";s:2:\"49\";s:5:\"title\";s:14:\"Bernie Federko\";s:5:\"alias\";s:14:\"bernie-federko\";s:3:\"zip\";s:18:\"bernie-federko.zip\";s:3:\"uid\";s:32:\"f61204a7be405bc1f8f801fe346d0c13\";s:3:\"img\";s:17:\"berni-federko.jpg\";s:7:\"preview\";s:83:\"https://essential.themepunch.com/template_library/bernie-federko-portfolio-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:101:\"<div class=\"hcap\">Custom Row Grid<br/>Tooltip Hover<br/>Minimal<br/>Blank Items<br/>Custom Grid</div>\";s:11:\"setup_notes\";s:76:\"Imports images to the media library<br>\r\nChange them on the single grid item\";s:6:\"filter\";a:4:{i:0;s:7:\"clients\";i:1;s:7:\"masonry\";i:2;s:12:\"nonavigation\";i:3;s:15:\"variablecolumns\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2019-01-08 12:33:31\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:48;a:16:{s:2:\"id\";s:2:\"50\";s:5:\"title\";s:16:\"Bernie Federko 2\";s:5:\"alias\";s:16:\"bernie-federko-2\";s:3:\"zip\";s:20:\"bernie-federko-2.zip\";s:3:\"uid\";s:32:\"8646eefad5b1446954e16e7c0aa1e087\";s:3:\"img\";s:20:\"bernie-federko-2.jpg\";s:7:\"preview\";s:85:\"https://essential.themepunch.com/template_library/bernie-federko-2-portfolio-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:99:\"<div class=\"hcap\">Custom Row Grid<br/>Funky Hover<br/>Minimal<br/>Blank Items<br/>Custom Grid</div>\";s:11:\"setup_notes\";s:76:\"Imports images to the media library<br>\r\nChange them on the single grid item\";s:6:\"filter\";a:4:{i:0;s:7:\"clients\";i:1;s:7:\"masonry\";i:2;s:12:\"nonavigation\";i:3;s:15:\"variablecolumns\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2019-01-08 12:33:23\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:49;a:16:{s:2:\"id\";s:2:\"51\";s:5:\"title\";s:6:\"Wilson\";s:5:\"alias\";s:13:\"woodrowwilson\";s:3:\"zip\";s:17:\"woodrowwilson.zip\";s:3:\"uid\";s:32:\"39d28845e10f32a759a27cdacba84693\";s:3:\"img\";s:10:\"wilson.jpg\";s:7:\"preview\";s:94:\"https://essential.themepunch.com/template_library/wilson-stylish-light-wordpress-post-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:78:\"<div class=\"hcap\">Variable Columns<br/>Clean Hover<br/>Filter/Pagination</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:4:{i:0;s:4:\"even\";i:1;s:9:\"filtering\";i:2;s:10:\"pagination\";i:3;s:15:\"variablecolumns\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-15 10:51:38\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:50;a:16:{s:2:\"id\";s:2:\"52\";s:5:\"title\";s:12:\"Honus Wagner\";s:5:\"alias\";s:12:\"honus_wagner\";s:3:\"zip\";s:16:\"honus_wagner.zip\";s:3:\"uid\";s:32:\"460d8adc56999b662544efc5eef707b5\";s:3:\"img\";s:16:\"honus_wagner.jpg\";s:7:\"preview\";s:95:\"https://essential.themepunch.com/template_library/honus-wagner-blog-post-gallery-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:86:\"<div class=\"hcap\">Masonry Blog Style<br/>Minimal Hover<br/>Filters<br/>Load More</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:3:{i:0;s:8:\"loadmore\";i:1;s:7:\"masonry\";i:2;s:12:\"nonavigation\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2020-08-04 14:18:42\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:51;a:16:{s:2:\"id\";s:2:\"53\";s:5:\"title\";s:9:\"Babe Ruth\";s:5:\"alias\";s:9:\"babe_ruth\";s:3:\"zip\";s:13:\"babe_ruth.zip\";s:3:\"uid\";s:32:\"83fb845082470890ca3d1096e1f971c4\";s:3:\"img\";s:13:\"babe_ruth.jpg\";s:7:\"preview\";s:92:\"https://essential.themepunch.com/template_library/babe-ruth-blog-post-gallery-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:86:\"<div class=\"hcap\">Full Width 1:1 Grid<br/>Clean White Hover<br/>Grayscale Filter</div>\";s:11:\"setup_notes\";s:228:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a> <br>\r\nUse Global Option Media Filters for setting the Grayscale effect.\";s:6:\"filter\";a:1:{i:0;s:4:\"even\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2020-08-04 14:18:50\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:52;a:16:{s:2:\"id\";s:2:\"54\";s:5:\"title\";s:19:\"Dark Post Blog Grid\";s:5:\"alias\";s:14:\"dark_post_grid\";s:3:\"zip\";s:18:\"dark_post_grid.zip\";s:3:\"uid\";s:32:\"a421dd24c6d1b485b87938a6a5309fe3\";s:3:\"img\";s:13:\"dark_post.jpg\";s:7:\"preview\";s:87:\"https://essential.themepunch.com/template_library/dark-blog-post-gallery-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:72:\"<div class=\"hcap\">Even Grid<br/>Dark Hover<br/>Fancy<br/>Post Grid</div>\";s:11:\"setup_notes\";s:219:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a> <br>\r\nActivate Stroke Icons in Global Options or change icons.\";s:6:\"filter\";a:3:{i:0;s:4:\"even\";i:1;s:9:\"filtering\";i:2;s:10:\"pagination\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2020-08-04 14:18:58\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:53;a:16:{s:2:\"id\";s:2:\"55\";s:5:\"title\";s:10:\"Grant Fuhr\";s:5:\"alias\";s:10:\"grant-fuhr\";s:3:\"zip\";s:14:\"grant-fuhr.zip\";s:3:\"uid\";s:32:\"985061e10cb0e4508664753321558ed5\";s:3:\"img\";s:8:\"fuhr.jpg\";s:7:\"preview\";s:59:\"https://www.essential-grid.com/template_library/grant-fuhr/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"3.0.0\";s:11:\"description\";s:106:\"<div class=\"hcap\">Custom Grid<br/>Mask Zoom Hover<br/>Colorful<br/>Perfect for Events, Photos, Posts</div>\";s:11:\"setup_notes\";s:76:\"Imports images to the media library<br>\r\nChange them on the single grid item\";s:6:\"filter\";a:3:{i:0;s:4:\"even\";i:1;s:9:\"filtering\";i:2;s:9:\"newupdate\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2020-08-12 10:39:37\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:54;a:16:{s:2:\"id\";s:2:\"56\";s:5:\"title\";s:14:\"Pat LaFontaine\";s:5:\"alias\";s:14:\"pat-lafontaine\";s:3:\"zip\";s:18:\"pat-lafontaine.zip\";s:3:\"uid\";s:32:\"35d905fa8c33ebce02611a398b963c70\";s:3:\"img\";s:18:\"pat-lafontaine.jpg\";s:7:\"preview\";s:63:\"https://www.essential-grid.com/template_library/pat-lafontaine/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"3.0.0\";s:11:\"description\";s:90:\"<div class=\"hcap\">Custom Grid<br/>Mask Zoom Hover<br/>Colorful<br/>Use it everywhere</div>\";s:11:\"setup_notes\";s:76:\"Imports images to the media library<br>\r\nChange them on the single grid item\";s:6:\"filter\";a:3:{i:0;s:4:\"even\";i:1;s:9:\"filtering\";i:2;s:9:\"newupdate\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2020-08-12 10:40:00\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:55;a:16:{s:2:\"id\";s:2:\"57\";s:5:\"title\";s:13:\"Clark Gillies\";s:5:\"alias\";s:13:\"clark-gillies\";s:3:\"zip\";s:17:\"clark-gillies.zip\";s:3:\"uid\";s:32:\"1687bd0ef44045e8407ac396f1c18558\";s:3:\"img\";s:17:\"clark-gillies.jpg\";s:7:\"preview\";s:62:\"https://www.essential-grid.com/template_library/clark-gillies/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"3.0.0\";s:11:\"description\";s:89:\"<div class=\"hcap\">Stylish post grid<br/>Blurred Hover<br/>Grayscale Filter optional</div>\";s:11:\"setup_notes\";s:231:\"Demo posts available via import menu.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a> <br>\r\nUse Global Option Media Filters for setting the Grayscale effect.\";s:6:\"filter\";a:3:{i:0;s:4:\"even\";i:1;s:9:\"filtering\";i:2;s:9:\"newupdate\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2020-08-12 10:40:34\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:56;a:16:{s:2:\"id\";s:2:\"58\";s:5:\"title\";s:9:\"Uwe Krupp\";s:5:\"alias\";s:9:\"uwe-krupp\";s:3:\"zip\";s:13:\"uwe-krupp.zip\";s:3:\"uid\";s:32:\"6513fe05651720633c4028cdc4b48854\";s:3:\"img\";s:13:\"uwe-krupp.jpg\";s:7:\"preview\";s:58:\"https://www.essential-grid.com/template_library/uwe-krupp/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"3.0.0\";s:11:\"description\";s:83:\"<div class=\"hcap\">Even post Grid<br/>Clean Grayscale Hover<br/>Social Sharing</div>\";s:11:\"setup_notes\";s:228:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a> <br>\r\nUse Global Option Media Filters for setting the Grayscale effect.\";s:6:\"filter\";a:4:{i:0;s:4:\"even\";i:1;s:9:\"filtering\";i:2;s:9:\"newupdate\";i:3;s:7:\"sorting\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2020-08-12 10:40:25\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:57;a:16:{s:2:\"id\";s:2:\"59\";s:5:\"title\";s:14:\"Leon Draisaitl\";s:5:\"alias\";s:14:\"leon-draisaitl\";s:3:\"zip\";s:18:\"leon-draisaitl.zip\";s:3:\"uid\";s:32:\"90ae1e88586cc5121305195fc9ff274c\";s:3:\"img\";s:18:\"leon-draisaitl.jpg\";s:7:\"preview\";s:63:\"https://www.essential-grid.com/template_library/leon-draisaitl/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"3.0.0\";s:11:\"description\";s:73:\"<div class=\"hcap\">Even Grid<br/>Image swap on hover<br/>Custom Grid</div>\";s:11:\"setup_notes\";s:80:\"Imports images to the media library<br>\r\nChange them on the single grid item<br>\";s:6:\"filter\";a:4:{i:0;s:4:\"even\";i:1;s:9:\"filtering\";i:2;s:8:\"loadmore\";i:3;s:9:\"newupdate\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2020-08-12 10:40:17\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:58;a:16:{s:2:\"id\";s:2:\"60\";s:5:\"title\";s:11:\"Rod Langway\";s:5:\"alias\";s:11:\"rod-langway\";s:3:\"zip\";s:15:\"rod-langway.zip\";s:3:\"uid\";s:32:\"1a913cbe2165117edf31e037f13f8d5d\";s:3:\"img\";s:15:\"rod-langway.jpg\";s:7:\"preview\";s:60:\"https://www.essential-grid.com/template_library/rod-langway/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"3.0.0\";s:11:\"description\";s:83:\"<div class=\"hcap\">Custom Row Grid<br/>Lens click hover effect<br/>Custom Grid</div>\";s:11:\"setup_notes\";s:80:\"Imports images to the media library<br>\r\nChange them on the single grid item<br>\";s:6:\"filter\";a:3:{i:0;s:9:\"filtering\";i:1;s:9:\"newupdate\";i:2;s:15:\"variablecolumns\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2020-08-12 10:40:11\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:59;a:16:{s:2:\"id\";s:2:\"62\";s:5:\"title\";s:11:\"Ray Bourque\";s:5:\"alias\";s:11:\"ray-bourque\";s:3:\"zip\";s:15:\"ray-bourque.zip\";s:3:\"uid\";s:32:\"6b4ec25011d5ff873661f5432a9a6973\";s:3:\"img\";s:15:\"ray_bourque.jpg\";s:7:\"preview\";s:60:\"https://www.essential-grid.com/template_library/ray-bourque/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:83:\"<div class=\"hcap\">Custom Row Grid<br/>Clean grey hover effect<br/>Custom Grid</div>\";s:11:\"setup_notes\";s:80:\"Imports images to the media library<br>\r\nChange them on the single grid item<br>\";s:6:\"filter\";a:3:{i:0;s:9:\"filtering\";i:1;s:9:\"newupdate\";i:2;s:15:\"variablecolumns\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2020-09-10 09:42:55\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}}}','no'),(1462,'ct_page_options','a:60:{s:17:\"_wp_page_template\";s:7:\"default\";s:13:\"custom_header\";s:1:\"1\";s:13:\"header_layout\";s:2:\"19\";s:11:\"p_logo_dark\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:12:\"p_logo_light\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:13:\"p_logo_mobile\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:12:\"page_h_phone\";s:0:\"\";s:11:\"page_h_time\";s:0:\"\";s:16:\"custom_pagetitle\";s:4:\"show\";s:12:\"custom_title\";s:18:\"League Information\";s:9:\"ptitle_bg\";a:2:{s:16:\"background-image\";s:64:\"https://sa7717.dev34.info/wp-content/uploads/2021/05/image-1.png\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"4509\";s:6:\"height\";s:3:\"360\";s:5:\"width\";s:4:\"1183\";s:9:\"thumbnail\";s:72:\"https://sa7717.dev34.info/wp-content/uploads/2021/05/image-1-150x150.png\";}}s:14:\"ptitle_padding\";a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:5:\"100px\";s:14:\"padding-bottom\";s:0:\"\";}s:16:\"content_bg_color\";a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}s:15:\"content_padding\";a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}s:17:\"show_sidebar_page\";s:0:\"\";s:16:\"sidebar_page_pos\";s:5:\"right\";s:12:\"loading_page\";s:11:\"themeoption\";s:12:\"loading_type\";s:6:\"style1\";s:13:\"loading_color\";s:0:\"\";s:13:\"custom_footer\";s:1:\"1\";s:20:\"footer_layout_custom\";s:4:\"3201\";s:15:\"page_back_totop\";s:11:\"themeoption\";s:20:\"_elementor_edit_mode\";s:7:\"builder\";s:24:\"_elementor_template_type\";s:7:\"wp-page\";s:18:\"_elementor_version\";s:5:\"3.2.2\";s:15:\"_elementor_data\";s:3246:\"[{\"id\":\"64fd72b8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"42\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"305603d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9da93fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the information below to sign up for the Dart and Pool Leagues\",\"sub_title\":\"League Information\",\"sub_title_color\":\"#595959\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"_css_classes\":\"line-sub-preset2\",\"ct_animate\":\"wow bounce\",\"text_align\":\"center\",\"sub_title_style\":\"style7\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"f725b8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"20124ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"df23ab3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"about-call\\\"><span style=\\\"color: #d90202;\\\">Dart League registration and info<\\/span><\\/h5><div><strong>Inland Empire Dart League<\\/strong><\\/div><div>\\u00a0<\\/div><div><a href=\\\"tel:509-389-6518\\\"><strong>509-389-6518<\\/strong><\\/a>\\u00a0 \\u00a0<em>Ask For Tammy (secretary)<\\/em><\\/div><div>\\u00a0<\\/div><div><strong><a href=\\\"mailto:info@dartleague.com\\\">info@dartleague.com<\\/a><\\/strong><\\/div><div>\\u00a0<\\/div><div><strong>The dart league is associated with the National Dart Association\\u00a0<\\/strong><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a6662f5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/nda.png\",\"id\":4504},\"image_size\":\"medium\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ab5c66a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ea0522\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"about-call\\\"><span style=\\\"color: #d90202;\\\">Pool League registration and info<\\/span><\\/h5><div><strong>APA of Spokane<\\/strong><\\/div><div>\\u00a0<\\/div><div><div><a href=\\\"tel:509-327-2591\\\"><strong>509-327-2591<\\/strong><\\/a><\\/div><\\/div><div>\\u00a0<\\/div><div><div><a href=\\\"http:\\/\\/poolplayers.com\\\"><strong>poolplayers.com<\\/strong><\\/a><\\/div><div>\\u00a0<\\/div><div><strong>The pool league is associated with the American Pool Players Association\\u00a0<\\/strong><\\/div><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"13ae9b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/apa.png\",\"id\":4505},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]\";s:10:\"_edit_lock\";s:12:\"1621619441:1\";s:10:\"_edit_last\";s:1:\"1\";s:10:\"p_h_style1\";s:11:\"themeoption\";s:13:\"h_custom_menu\";s:0:\"\";s:18:\"h_custom_menu_left\";s:0:\"\";s:19:\"h_custom_menu_right\";s:0:\"\";s:18:\"p_page_title_color\";s:0:\"\";s:14:\"ptitle_overlay\";s:11:\"themeoption\";s:22:\"ptitle_breadcrumb_page\";s:11:\"themeoption\";s:23:\"ptitle_breadcrumb_color\";s:0:\"\";s:12:\"p_bg_content\";a:6:{s:17:\"background-repeat\";s:0:\"\";s:15:\"background-size\";s:0:\"\";s:21:\"background-attachment\";s:0:\"\";s:19:\"background-position\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}s:20:\"eg_sources_html5_mp4\";s:0:\"\";s:18:\"eg_sources_youtube\";s:0:\"\";s:16:\"eg_sources_vimeo\";s:0:\"\";s:17:\"eg_sources_wistia\";s:0:\"\";s:16:\"eg_sources_image\";s:0:\"\";s:17:\"eg_sources_iframe\";s:0:\"\";s:21:\"eg_sources_soundcloud\";s:0:\"\";s:14:\"eg_vimeo_ratio\";s:1:\"1\";s:16:\"eg_youtube_ratio\";s:1:\"1\";s:15:\"eg_wistia_ratio\";s:1:\"1\";s:14:\"eg_html5_ratio\";s:1:\"1\";s:19:\"eg_soundcloud_ratio\";s:1:\"1\";s:20:\"eg_sources_revslider\";s:0:\"\";s:18:\"eg_sources_essgrid\";s:0:\"\";s:16:\"eg_featured_grid\";s:0:\"\";s:28:\"eg_settings_custom_meta_skin\";s:0:\"\";s:31:\"eg_settings_custom_meta_element\";s:0:\"\";s:31:\"eg_settings_custom_meta_setting\";s:0:\"\";s:29:\"eg_settings_custom_meta_style\";s:0:\"\";s:18:\"eg_custom_meta_216\";s:4:\"true\";s:14:\"eg_votes_count\";s:1:\"0\";s:25:\"_elementor_controls_usage\";a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:1;s:18:\"title_space_bottom\";i:1;s:10:\"ct_animate\";i:1;s:10:\"text_align\";i:1;}s:17:\"sub_title_section\";a:6:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:32:\"sub_title_typography_font_family\";i:1;s:32:\"sub_title_typography_font_weight\";i:1;s:15:\"sub_title_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:2;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}}s:14:\"_elementor_css\";a:6:{s:4:\"time\";i:1621619395;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}}','yes'),(1463,'post_format_audio','a:60:{s:17:\"_wp_page_template\";s:7:\"default\";s:13:\"custom_header\";s:1:\"1\";s:13:\"header_layout\";s:2:\"19\";s:11:\"p_logo_dark\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:12:\"p_logo_light\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:13:\"p_logo_mobile\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:12:\"page_h_phone\";s:0:\"\";s:11:\"page_h_time\";s:0:\"\";s:16:\"custom_pagetitle\";s:4:\"show\";s:12:\"custom_title\";s:18:\"League Information\";s:9:\"ptitle_bg\";a:2:{s:16:\"background-image\";s:64:\"https://sa7717.dev34.info/wp-content/uploads/2021/05/image-1.png\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"4509\";s:6:\"height\";s:3:\"360\";s:5:\"width\";s:4:\"1183\";s:9:\"thumbnail\";s:72:\"https://sa7717.dev34.info/wp-content/uploads/2021/05/image-1-150x150.png\";}}s:14:\"ptitle_padding\";a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:5:\"100px\";s:14:\"padding-bottom\";s:0:\"\";}s:16:\"content_bg_color\";a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}s:15:\"content_padding\";a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}s:17:\"show_sidebar_page\";s:0:\"\";s:16:\"sidebar_page_pos\";s:5:\"right\";s:12:\"loading_page\";s:11:\"themeoption\";s:12:\"loading_type\";s:6:\"style1\";s:13:\"loading_color\";s:0:\"\";s:13:\"custom_footer\";s:1:\"1\";s:20:\"footer_layout_custom\";s:4:\"3201\";s:15:\"page_back_totop\";s:11:\"themeoption\";s:20:\"_elementor_edit_mode\";s:7:\"builder\";s:24:\"_elementor_template_type\";s:7:\"wp-page\";s:18:\"_elementor_version\";s:5:\"3.2.2\";s:15:\"_elementor_data\";s:3246:\"[{\"id\":\"64fd72b8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"42\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"305603d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9da93fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the information below to sign up for the Dart and Pool Leagues\",\"sub_title\":\"League Information\",\"sub_title_color\":\"#595959\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"_css_classes\":\"line-sub-preset2\",\"ct_animate\":\"wow bounce\",\"text_align\":\"center\",\"sub_title_style\":\"style7\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"f725b8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"20124ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"df23ab3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"about-call\\\"><span style=\\\"color: #d90202;\\\">Dart League registration and info<\\/span><\\/h5><div><strong>Inland Empire Dart League<\\/strong><\\/div><div>\\u00a0<\\/div><div><a href=\\\"tel:509-389-6518\\\"><strong>509-389-6518<\\/strong><\\/a>\\u00a0 \\u00a0<em>Ask For Tammy (secretary)<\\/em><\\/div><div>\\u00a0<\\/div><div><strong><a href=\\\"mailto:info@dartleague.com\\\">info@dartleague.com<\\/a><\\/strong><\\/div><div>\\u00a0<\\/div><div><strong>The dart league is associated with the National Dart Association\\u00a0<\\/strong><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a6662f5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/nda.png\",\"id\":4504},\"image_size\":\"medium\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ab5c66a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ea0522\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"about-call\\\"><span style=\\\"color: #d90202;\\\">Pool League registration and info<\\/span><\\/h5><div><strong>APA of Spokane<\\/strong><\\/div><div>\\u00a0<\\/div><div><div><a href=\\\"tel:509-327-2591\\\"><strong>509-327-2591<\\/strong><\\/a><\\/div><\\/div><div>\\u00a0<\\/div><div><div><a href=\\\"http:\\/\\/poolplayers.com\\\"><strong>poolplayers.com<\\/strong><\\/a><\\/div><div>\\u00a0<\\/div><div><strong>The pool league is associated with the American Pool Players Association\\u00a0<\\/strong><\\/div><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"13ae9b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/apa.png\",\"id\":4505},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]\";s:10:\"_edit_lock\";s:12:\"1621619441:1\";s:10:\"_edit_last\";s:1:\"1\";s:10:\"p_h_style1\";s:11:\"themeoption\";s:13:\"h_custom_menu\";s:0:\"\";s:18:\"h_custom_menu_left\";s:0:\"\";s:19:\"h_custom_menu_right\";s:0:\"\";s:18:\"p_page_title_color\";s:0:\"\";s:14:\"ptitle_overlay\";s:11:\"themeoption\";s:22:\"ptitle_breadcrumb_page\";s:11:\"themeoption\";s:23:\"ptitle_breadcrumb_color\";s:0:\"\";s:12:\"p_bg_content\";a:6:{s:17:\"background-repeat\";s:0:\"\";s:15:\"background-size\";s:0:\"\";s:21:\"background-attachment\";s:0:\"\";s:19:\"background-position\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}s:20:\"eg_sources_html5_mp4\";s:0:\"\";s:18:\"eg_sources_youtube\";s:0:\"\";s:16:\"eg_sources_vimeo\";s:0:\"\";s:17:\"eg_sources_wistia\";s:0:\"\";s:16:\"eg_sources_image\";s:0:\"\";s:17:\"eg_sources_iframe\";s:0:\"\";s:21:\"eg_sources_soundcloud\";s:0:\"\";s:14:\"eg_vimeo_ratio\";s:1:\"1\";s:16:\"eg_youtube_ratio\";s:1:\"1\";s:15:\"eg_wistia_ratio\";s:1:\"1\";s:14:\"eg_html5_ratio\";s:1:\"1\";s:19:\"eg_soundcloud_ratio\";s:1:\"1\";s:20:\"eg_sources_revslider\";s:0:\"\";s:18:\"eg_sources_essgrid\";s:0:\"\";s:16:\"eg_featured_grid\";s:0:\"\";s:28:\"eg_settings_custom_meta_skin\";s:0:\"\";s:31:\"eg_settings_custom_meta_element\";s:0:\"\";s:31:\"eg_settings_custom_meta_setting\";s:0:\"\";s:29:\"eg_settings_custom_meta_style\";s:0:\"\";s:18:\"eg_custom_meta_216\";s:4:\"true\";s:14:\"eg_votes_count\";s:1:\"0\";s:25:\"_elementor_controls_usage\";a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:1;s:18:\"title_space_bottom\";i:1;s:10:\"ct_animate\";i:1;s:10:\"text_align\";i:1;}s:17:\"sub_title_section\";a:6:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:32:\"sub_title_typography_font_family\";i:1;s:32:\"sub_title_typography_font_weight\";i:1;s:15:\"sub_title_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:2;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}}s:14:\"_elementor_css\";a:6:{s:4:\"time\";i:1621619395;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}}','yes'),(1464,'post_format_link','a:60:{s:17:\"_wp_page_template\";s:7:\"default\";s:13:\"custom_header\";s:1:\"1\";s:13:\"header_layout\";s:2:\"19\";s:11:\"p_logo_dark\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:12:\"p_logo_light\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:13:\"p_logo_mobile\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:12:\"page_h_phone\";s:0:\"\";s:11:\"page_h_time\";s:0:\"\";s:16:\"custom_pagetitle\";s:4:\"show\";s:12:\"custom_title\";s:18:\"League Information\";s:9:\"ptitle_bg\";a:2:{s:16:\"background-image\";s:64:\"https://sa7717.dev34.info/wp-content/uploads/2021/05/image-1.png\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"4509\";s:6:\"height\";s:3:\"360\";s:5:\"width\";s:4:\"1183\";s:9:\"thumbnail\";s:72:\"https://sa7717.dev34.info/wp-content/uploads/2021/05/image-1-150x150.png\";}}s:14:\"ptitle_padding\";a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:5:\"100px\";s:14:\"padding-bottom\";s:0:\"\";}s:16:\"content_bg_color\";a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}s:15:\"content_padding\";a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}s:17:\"show_sidebar_page\";s:0:\"\";s:16:\"sidebar_page_pos\";s:5:\"right\";s:12:\"loading_page\";s:11:\"themeoption\";s:12:\"loading_type\";s:6:\"style1\";s:13:\"loading_color\";s:0:\"\";s:13:\"custom_footer\";s:1:\"1\";s:20:\"footer_layout_custom\";s:4:\"3201\";s:15:\"page_back_totop\";s:11:\"themeoption\";s:20:\"_elementor_edit_mode\";s:7:\"builder\";s:24:\"_elementor_template_type\";s:7:\"wp-page\";s:18:\"_elementor_version\";s:5:\"3.2.2\";s:15:\"_elementor_data\";s:3246:\"[{\"id\":\"64fd72b8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"42\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"305603d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9da93fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the information below to sign up for the Dart and Pool Leagues\",\"sub_title\":\"League Information\",\"sub_title_color\":\"#595959\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"_css_classes\":\"line-sub-preset2\",\"ct_animate\":\"wow bounce\",\"text_align\":\"center\",\"sub_title_style\":\"style7\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"f725b8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"20124ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"df23ab3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"about-call\\\"><span style=\\\"color: #d90202;\\\">Dart League registration and info<\\/span><\\/h5><div><strong>Inland Empire Dart League<\\/strong><\\/div><div>\\u00a0<\\/div><div><a href=\\\"tel:509-389-6518\\\"><strong>509-389-6518<\\/strong><\\/a>\\u00a0 \\u00a0<em>Ask For Tammy (secretary)<\\/em><\\/div><div>\\u00a0<\\/div><div><strong><a href=\\\"mailto:info@dartleague.com\\\">info@dartleague.com<\\/a><\\/strong><\\/div><div>\\u00a0<\\/div><div><strong>The dart league is associated with the National Dart Association\\u00a0<\\/strong><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a6662f5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/nda.png\",\"id\":4504},\"image_size\":\"medium\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ab5c66a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ea0522\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"about-call\\\"><span style=\\\"color: #d90202;\\\">Pool League registration and info<\\/span><\\/h5><div><strong>APA of Spokane<\\/strong><\\/div><div>\\u00a0<\\/div><div><div><a href=\\\"tel:509-327-2591\\\"><strong>509-327-2591<\\/strong><\\/a><\\/div><\\/div><div>\\u00a0<\\/div><div><div><a href=\\\"http:\\/\\/poolplayers.com\\\"><strong>poolplayers.com<\\/strong><\\/a><\\/div><div>\\u00a0<\\/div><div><strong>The pool league is associated with the American Pool Players Association\\u00a0<\\/strong><\\/div><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"13ae9b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/apa.png\",\"id\":4505},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]\";s:10:\"_edit_lock\";s:12:\"1621619441:1\";s:10:\"_edit_last\";s:1:\"1\";s:10:\"p_h_style1\";s:11:\"themeoption\";s:13:\"h_custom_menu\";s:0:\"\";s:18:\"h_custom_menu_left\";s:0:\"\";s:19:\"h_custom_menu_right\";s:0:\"\";s:18:\"p_page_title_color\";s:0:\"\";s:14:\"ptitle_overlay\";s:11:\"themeoption\";s:22:\"ptitle_breadcrumb_page\";s:11:\"themeoption\";s:23:\"ptitle_breadcrumb_color\";s:0:\"\";s:12:\"p_bg_content\";a:6:{s:17:\"background-repeat\";s:0:\"\";s:15:\"background-size\";s:0:\"\";s:21:\"background-attachment\";s:0:\"\";s:19:\"background-position\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}s:20:\"eg_sources_html5_mp4\";s:0:\"\";s:18:\"eg_sources_youtube\";s:0:\"\";s:16:\"eg_sources_vimeo\";s:0:\"\";s:17:\"eg_sources_wistia\";s:0:\"\";s:16:\"eg_sources_image\";s:0:\"\";s:17:\"eg_sources_iframe\";s:0:\"\";s:21:\"eg_sources_soundcloud\";s:0:\"\";s:14:\"eg_vimeo_ratio\";s:1:\"1\";s:16:\"eg_youtube_ratio\";s:1:\"1\";s:15:\"eg_wistia_ratio\";s:1:\"1\";s:14:\"eg_html5_ratio\";s:1:\"1\";s:19:\"eg_soundcloud_ratio\";s:1:\"1\";s:20:\"eg_sources_revslider\";s:0:\"\";s:18:\"eg_sources_essgrid\";s:0:\"\";s:16:\"eg_featured_grid\";s:0:\"\";s:28:\"eg_settings_custom_meta_skin\";s:0:\"\";s:31:\"eg_settings_custom_meta_element\";s:0:\"\";s:31:\"eg_settings_custom_meta_setting\";s:0:\"\";s:29:\"eg_settings_custom_meta_style\";s:0:\"\";s:18:\"eg_custom_meta_216\";s:4:\"true\";s:14:\"eg_votes_count\";s:1:\"0\";s:25:\"_elementor_controls_usage\";a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:1;s:18:\"title_space_bottom\";i:1;s:10:\"ct_animate\";i:1;s:10:\"text_align\";i:1;}s:17:\"sub_title_section\";a:6:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:32:\"sub_title_typography_font_family\";i:1;s:32:\"sub_title_typography_font_weight\";i:1;s:15:\"sub_title_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:2;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}}s:14:\"_elementor_css\";a:6:{s:4:\"time\";i:1621619395;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}}','yes'),(1465,'post_format_quote','a:60:{s:17:\"_wp_page_template\";s:7:\"default\";s:13:\"custom_header\";s:1:\"1\";s:13:\"header_layout\";s:2:\"19\";s:11:\"p_logo_dark\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:12:\"p_logo_light\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:13:\"p_logo_mobile\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:12:\"page_h_phone\";s:0:\"\";s:11:\"page_h_time\";s:0:\"\";s:16:\"custom_pagetitle\";s:4:\"show\";s:12:\"custom_title\";s:18:\"League Information\";s:9:\"ptitle_bg\";a:2:{s:16:\"background-image\";s:64:\"https://sa7717.dev34.info/wp-content/uploads/2021/05/image-1.png\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"4509\";s:6:\"height\";s:3:\"360\";s:5:\"width\";s:4:\"1183\";s:9:\"thumbnail\";s:72:\"https://sa7717.dev34.info/wp-content/uploads/2021/05/image-1-150x150.png\";}}s:14:\"ptitle_padding\";a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:5:\"100px\";s:14:\"padding-bottom\";s:0:\"\";}s:16:\"content_bg_color\";a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}s:15:\"content_padding\";a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}s:17:\"show_sidebar_page\";s:0:\"\";s:16:\"sidebar_page_pos\";s:5:\"right\";s:12:\"loading_page\";s:11:\"themeoption\";s:12:\"loading_type\";s:6:\"style1\";s:13:\"loading_color\";s:0:\"\";s:13:\"custom_footer\";s:1:\"1\";s:20:\"footer_layout_custom\";s:4:\"3201\";s:15:\"page_back_totop\";s:11:\"themeoption\";s:20:\"_elementor_edit_mode\";s:7:\"builder\";s:24:\"_elementor_template_type\";s:7:\"wp-page\";s:18:\"_elementor_version\";s:5:\"3.2.2\";s:15:\"_elementor_data\";s:3246:\"[{\"id\":\"64fd72b8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"42\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"305603d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9da93fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the information below to sign up for the Dart and Pool Leagues\",\"sub_title\":\"League Information\",\"sub_title_color\":\"#595959\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"_css_classes\":\"line-sub-preset2\",\"ct_animate\":\"wow bounce\",\"text_align\":\"center\",\"sub_title_style\":\"style7\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"f725b8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"20124ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"df23ab3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"about-call\\\"><span style=\\\"color: #d90202;\\\">Dart League registration and info<\\/span><\\/h5><div><strong>Inland Empire Dart League<\\/strong><\\/div><div>\\u00a0<\\/div><div><a href=\\\"tel:509-389-6518\\\"><strong>509-389-6518<\\/strong><\\/a>\\u00a0 \\u00a0<em>Ask For Tammy (secretary)<\\/em><\\/div><div>\\u00a0<\\/div><div><strong><a href=\\\"mailto:info@dartleague.com\\\">info@dartleague.com<\\/a><\\/strong><\\/div><div>\\u00a0<\\/div><div><strong>The dart league is associated with the National Dart Association\\u00a0<\\/strong><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a6662f5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/nda.png\",\"id\":4504},\"image_size\":\"medium\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ab5c66a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ea0522\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"about-call\\\"><span style=\\\"color: #d90202;\\\">Pool League registration and info<\\/span><\\/h5><div><strong>APA of Spokane<\\/strong><\\/div><div>\\u00a0<\\/div><div><div><a href=\\\"tel:509-327-2591\\\"><strong>509-327-2591<\\/strong><\\/a><\\/div><\\/div><div>\\u00a0<\\/div><div><div><a href=\\\"http:\\/\\/poolplayers.com\\\"><strong>poolplayers.com<\\/strong><\\/a><\\/div><div>\\u00a0<\\/div><div><strong>The pool league is associated with the American Pool Players Association\\u00a0<\\/strong><\\/div><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"13ae9b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/apa.png\",\"id\":4505},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]\";s:10:\"_edit_lock\";s:12:\"1621619441:1\";s:10:\"_edit_last\";s:1:\"1\";s:10:\"p_h_style1\";s:11:\"themeoption\";s:13:\"h_custom_menu\";s:0:\"\";s:18:\"h_custom_menu_left\";s:0:\"\";s:19:\"h_custom_menu_right\";s:0:\"\";s:18:\"p_page_title_color\";s:0:\"\";s:14:\"ptitle_overlay\";s:11:\"themeoption\";s:22:\"ptitle_breadcrumb_page\";s:11:\"themeoption\";s:23:\"ptitle_breadcrumb_color\";s:0:\"\";s:12:\"p_bg_content\";a:6:{s:17:\"background-repeat\";s:0:\"\";s:15:\"background-size\";s:0:\"\";s:21:\"background-attachment\";s:0:\"\";s:19:\"background-position\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}s:20:\"eg_sources_html5_mp4\";s:0:\"\";s:18:\"eg_sources_youtube\";s:0:\"\";s:16:\"eg_sources_vimeo\";s:0:\"\";s:17:\"eg_sources_wistia\";s:0:\"\";s:16:\"eg_sources_image\";s:0:\"\";s:17:\"eg_sources_iframe\";s:0:\"\";s:21:\"eg_sources_soundcloud\";s:0:\"\";s:14:\"eg_vimeo_ratio\";s:1:\"1\";s:16:\"eg_youtube_ratio\";s:1:\"1\";s:15:\"eg_wistia_ratio\";s:1:\"1\";s:14:\"eg_html5_ratio\";s:1:\"1\";s:19:\"eg_soundcloud_ratio\";s:1:\"1\";s:20:\"eg_sources_revslider\";s:0:\"\";s:18:\"eg_sources_essgrid\";s:0:\"\";s:16:\"eg_featured_grid\";s:0:\"\";s:28:\"eg_settings_custom_meta_skin\";s:0:\"\";s:31:\"eg_settings_custom_meta_element\";s:0:\"\";s:31:\"eg_settings_custom_meta_setting\";s:0:\"\";s:29:\"eg_settings_custom_meta_style\";s:0:\"\";s:18:\"eg_custom_meta_216\";s:4:\"true\";s:14:\"eg_votes_count\";s:1:\"0\";s:25:\"_elementor_controls_usage\";a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:1;s:18:\"title_space_bottom\";i:1;s:10:\"ct_animate\";i:1;s:10:\"text_align\";i:1;}s:17:\"sub_title_section\";a:6:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:32:\"sub_title_typography_font_family\";i:1;s:32:\"sub_title_typography_font_weight\";i:1;s:15:\"sub_title_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:2;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}}s:14:\"_elementor_css\";a:6:{s:4:\"time\";i:1621619395;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}}','yes'),(1466,'post_format_video','a:60:{s:17:\"_wp_page_template\";s:7:\"default\";s:13:\"custom_header\";s:1:\"1\";s:13:\"header_layout\";s:2:\"19\";s:11:\"p_logo_dark\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:12:\"p_logo_light\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:13:\"p_logo_mobile\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:12:\"page_h_phone\";s:0:\"\";s:11:\"page_h_time\";s:0:\"\";s:16:\"custom_pagetitle\";s:4:\"show\";s:12:\"custom_title\";s:18:\"League Information\";s:9:\"ptitle_bg\";a:2:{s:16:\"background-image\";s:64:\"https://sa7717.dev34.info/wp-content/uploads/2021/05/image-1.png\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"4509\";s:6:\"height\";s:3:\"360\";s:5:\"width\";s:4:\"1183\";s:9:\"thumbnail\";s:72:\"https://sa7717.dev34.info/wp-content/uploads/2021/05/image-1-150x150.png\";}}s:14:\"ptitle_padding\";a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:5:\"100px\";s:14:\"padding-bottom\";s:0:\"\";}s:16:\"content_bg_color\";a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}s:15:\"content_padding\";a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}s:17:\"show_sidebar_page\";s:0:\"\";s:16:\"sidebar_page_pos\";s:5:\"right\";s:12:\"loading_page\";s:11:\"themeoption\";s:12:\"loading_type\";s:6:\"style1\";s:13:\"loading_color\";s:0:\"\";s:13:\"custom_footer\";s:1:\"1\";s:20:\"footer_layout_custom\";s:4:\"3201\";s:15:\"page_back_totop\";s:11:\"themeoption\";s:20:\"_elementor_edit_mode\";s:7:\"builder\";s:24:\"_elementor_template_type\";s:7:\"wp-page\";s:18:\"_elementor_version\";s:5:\"3.2.2\";s:15:\"_elementor_data\";s:3246:\"[{\"id\":\"64fd72b8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"42\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"305603d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9da93fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the information below to sign up for the Dart and Pool Leagues\",\"sub_title\":\"League Information\",\"sub_title_color\":\"#595959\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"_css_classes\":\"line-sub-preset2\",\"ct_animate\":\"wow bounce\",\"text_align\":\"center\",\"sub_title_style\":\"style7\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"f725b8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"20124ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"df23ab3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"about-call\\\"><span style=\\\"color: #d90202;\\\">Dart League registration and info<\\/span><\\/h5><div><strong>Inland Empire Dart League<\\/strong><\\/div><div>\\u00a0<\\/div><div><a href=\\\"tel:509-389-6518\\\"><strong>509-389-6518<\\/strong><\\/a>\\u00a0 \\u00a0<em>Ask For Tammy (secretary)<\\/em><\\/div><div>\\u00a0<\\/div><div><strong><a href=\\\"mailto:info@dartleague.com\\\">info@dartleague.com<\\/a><\\/strong><\\/div><div>\\u00a0<\\/div><div><strong>The dart league is associated with the National Dart Association\\u00a0<\\/strong><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a6662f5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/nda.png\",\"id\":4504},\"image_size\":\"medium\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ab5c66a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ea0522\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"about-call\\\"><span style=\\\"color: #d90202;\\\">Pool League registration and info<\\/span><\\/h5><div><strong>APA of Spokane<\\/strong><\\/div><div>\\u00a0<\\/div><div><div><a href=\\\"tel:509-327-2591\\\"><strong>509-327-2591<\\/strong><\\/a><\\/div><\\/div><div>\\u00a0<\\/div><div><div><a href=\\\"http:\\/\\/poolplayers.com\\\"><strong>poolplayers.com<\\/strong><\\/a><\\/div><div>\\u00a0<\\/div><div><strong>The pool league is associated with the American Pool Players Association\\u00a0<\\/strong><\\/div><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"13ae9b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/apa.png\",\"id\":4505},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]\";s:10:\"_edit_lock\";s:12:\"1621619441:1\";s:10:\"_edit_last\";s:1:\"1\";s:10:\"p_h_style1\";s:11:\"themeoption\";s:13:\"h_custom_menu\";s:0:\"\";s:18:\"h_custom_menu_left\";s:0:\"\";s:19:\"h_custom_menu_right\";s:0:\"\";s:18:\"p_page_title_color\";s:0:\"\";s:14:\"ptitle_overlay\";s:11:\"themeoption\";s:22:\"ptitle_breadcrumb_page\";s:11:\"themeoption\";s:23:\"ptitle_breadcrumb_color\";s:0:\"\";s:12:\"p_bg_content\";a:6:{s:17:\"background-repeat\";s:0:\"\";s:15:\"background-size\";s:0:\"\";s:21:\"background-attachment\";s:0:\"\";s:19:\"background-position\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}s:20:\"eg_sources_html5_mp4\";s:0:\"\";s:18:\"eg_sources_youtube\";s:0:\"\";s:16:\"eg_sources_vimeo\";s:0:\"\";s:17:\"eg_sources_wistia\";s:0:\"\";s:16:\"eg_sources_image\";s:0:\"\";s:17:\"eg_sources_iframe\";s:0:\"\";s:21:\"eg_sources_soundcloud\";s:0:\"\";s:14:\"eg_vimeo_ratio\";s:1:\"1\";s:16:\"eg_youtube_ratio\";s:1:\"1\";s:15:\"eg_wistia_ratio\";s:1:\"1\";s:14:\"eg_html5_ratio\";s:1:\"1\";s:19:\"eg_soundcloud_ratio\";s:1:\"1\";s:20:\"eg_sources_revslider\";s:0:\"\";s:18:\"eg_sources_essgrid\";s:0:\"\";s:16:\"eg_featured_grid\";s:0:\"\";s:28:\"eg_settings_custom_meta_skin\";s:0:\"\";s:31:\"eg_settings_custom_meta_element\";s:0:\"\";s:31:\"eg_settings_custom_meta_setting\";s:0:\"\";s:29:\"eg_settings_custom_meta_style\";s:0:\"\";s:18:\"eg_custom_meta_216\";s:4:\"true\";s:14:\"eg_votes_count\";s:1:\"0\";s:25:\"_elementor_controls_usage\";a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:1;s:18:\"title_space_bottom\";i:1;s:10:\"ct_animate\";i:1;s:10:\"text_align\";i:1;}s:17:\"sub_title_section\";a:6:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:32:\"sub_title_typography_font_family\";i:1;s:32:\"sub_title_typography_font_weight\";i:1;s:15:\"sub_title_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:2;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}}s:14:\"_elementor_css\";a:6:{s:4:\"time\";i:1621619395;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}}','yes'),(1467,'post_format_gallery','a:60:{s:17:\"_wp_page_template\";s:7:\"default\";s:13:\"custom_header\";s:1:\"1\";s:13:\"header_layout\";s:2:\"19\";s:11:\"p_logo_dark\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:12:\"p_logo_light\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:13:\"p_logo_mobile\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:12:\"page_h_phone\";s:0:\"\";s:11:\"page_h_time\";s:0:\"\";s:16:\"custom_pagetitle\";s:4:\"show\";s:12:\"custom_title\";s:18:\"League Information\";s:9:\"ptitle_bg\";a:2:{s:16:\"background-image\";s:64:\"https://sa7717.dev34.info/wp-content/uploads/2021/05/image-1.png\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"4509\";s:6:\"height\";s:3:\"360\";s:5:\"width\";s:4:\"1183\";s:9:\"thumbnail\";s:72:\"https://sa7717.dev34.info/wp-content/uploads/2021/05/image-1-150x150.png\";}}s:14:\"ptitle_padding\";a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:5:\"100px\";s:14:\"padding-bottom\";s:0:\"\";}s:16:\"content_bg_color\";a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}s:15:\"content_padding\";a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}s:17:\"show_sidebar_page\";s:0:\"\";s:16:\"sidebar_page_pos\";s:5:\"right\";s:12:\"loading_page\";s:11:\"themeoption\";s:12:\"loading_type\";s:6:\"style1\";s:13:\"loading_color\";s:0:\"\";s:13:\"custom_footer\";s:1:\"1\";s:20:\"footer_layout_custom\";s:4:\"3201\";s:15:\"page_back_totop\";s:11:\"themeoption\";s:20:\"_elementor_edit_mode\";s:7:\"builder\";s:24:\"_elementor_template_type\";s:7:\"wp-page\";s:18:\"_elementor_version\";s:5:\"3.2.2\";s:15:\"_elementor_data\";s:3246:\"[{\"id\":\"64fd72b8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"42\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"305603d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9da93fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the information below to sign up for the Dart and Pool Leagues\",\"sub_title\":\"League Information\",\"sub_title_color\":\"#595959\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"_css_classes\":\"line-sub-preset2\",\"ct_animate\":\"wow bounce\",\"text_align\":\"center\",\"sub_title_style\":\"style7\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"f725b8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"20124ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"df23ab3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"about-call\\\"><span style=\\\"color: #d90202;\\\">Dart League registration and info<\\/span><\\/h5><div><strong>Inland Empire Dart League<\\/strong><\\/div><div>\\u00a0<\\/div><div><a href=\\\"tel:509-389-6518\\\"><strong>509-389-6518<\\/strong><\\/a>\\u00a0 \\u00a0<em>Ask For Tammy (secretary)<\\/em><\\/div><div>\\u00a0<\\/div><div><strong><a href=\\\"mailto:info@dartleague.com\\\">info@dartleague.com<\\/a><\\/strong><\\/div><div>\\u00a0<\\/div><div><strong>The dart league is associated with the National Dart Association\\u00a0<\\/strong><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a6662f5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/nda.png\",\"id\":4504},\"image_size\":\"medium\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ab5c66a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ea0522\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"about-call\\\"><span style=\\\"color: #d90202;\\\">Pool League registration and info<\\/span><\\/h5><div><strong>APA of Spokane<\\/strong><\\/div><div>\\u00a0<\\/div><div><div><a href=\\\"tel:509-327-2591\\\"><strong>509-327-2591<\\/strong><\\/a><\\/div><\\/div><div>\\u00a0<\\/div><div><div><a href=\\\"http:\\/\\/poolplayers.com\\\"><strong>poolplayers.com<\\/strong><\\/a><\\/div><div>\\u00a0<\\/div><div><strong>The pool league is associated with the American Pool Players Association\\u00a0<\\/strong><\\/div><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"13ae9b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/apa.png\",\"id\":4505},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]\";s:10:\"_edit_lock\";s:12:\"1621619441:1\";s:10:\"_edit_last\";s:1:\"1\";s:10:\"p_h_style1\";s:11:\"themeoption\";s:13:\"h_custom_menu\";s:0:\"\";s:18:\"h_custom_menu_left\";s:0:\"\";s:19:\"h_custom_menu_right\";s:0:\"\";s:18:\"p_page_title_color\";s:0:\"\";s:14:\"ptitle_overlay\";s:11:\"themeoption\";s:22:\"ptitle_breadcrumb_page\";s:11:\"themeoption\";s:23:\"ptitle_breadcrumb_color\";s:0:\"\";s:12:\"p_bg_content\";a:6:{s:17:\"background-repeat\";s:0:\"\";s:15:\"background-size\";s:0:\"\";s:21:\"background-attachment\";s:0:\"\";s:19:\"background-position\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}s:20:\"eg_sources_html5_mp4\";s:0:\"\";s:18:\"eg_sources_youtube\";s:0:\"\";s:16:\"eg_sources_vimeo\";s:0:\"\";s:17:\"eg_sources_wistia\";s:0:\"\";s:16:\"eg_sources_image\";s:0:\"\";s:17:\"eg_sources_iframe\";s:0:\"\";s:21:\"eg_sources_soundcloud\";s:0:\"\";s:14:\"eg_vimeo_ratio\";s:1:\"1\";s:16:\"eg_youtube_ratio\";s:1:\"1\";s:15:\"eg_wistia_ratio\";s:1:\"1\";s:14:\"eg_html5_ratio\";s:1:\"1\";s:19:\"eg_soundcloud_ratio\";s:1:\"1\";s:20:\"eg_sources_revslider\";s:0:\"\";s:18:\"eg_sources_essgrid\";s:0:\"\";s:16:\"eg_featured_grid\";s:0:\"\";s:28:\"eg_settings_custom_meta_skin\";s:0:\"\";s:31:\"eg_settings_custom_meta_element\";s:0:\"\";s:31:\"eg_settings_custom_meta_setting\";s:0:\"\";s:29:\"eg_settings_custom_meta_style\";s:0:\"\";s:18:\"eg_custom_meta_216\";s:4:\"true\";s:14:\"eg_votes_count\";s:1:\"0\";s:25:\"_elementor_controls_usage\";a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:1;s:18:\"title_space_bottom\";i:1;s:10:\"ct_animate\";i:1;s:10:\"text_align\";i:1;}s:17:\"sub_title_section\";a:6:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:32:\"sub_title_typography_font_family\";i:1;s:32:\"sub_title_typography_font_weight\";i:1;s:15:\"sub_title_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:2;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}}s:14:\"_elementor_css\";a:6:{s:4:\"time\";i:1621619395;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}}','yes'),(3159,'_transient_is_multi_author','0','yes'),(1468,'service_option','a:60:{s:17:\"_wp_page_template\";s:7:\"default\";s:13:\"custom_header\";s:1:\"1\";s:13:\"header_layout\";s:2:\"19\";s:11:\"p_logo_dark\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:12:\"p_logo_light\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:13:\"p_logo_mobile\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:12:\"page_h_phone\";s:0:\"\";s:11:\"page_h_time\";s:0:\"\";s:16:\"custom_pagetitle\";s:4:\"show\";s:12:\"custom_title\";s:18:\"League Information\";s:9:\"ptitle_bg\";a:2:{s:16:\"background-image\";s:64:\"https://sa7717.dev34.info/wp-content/uploads/2021/05/image-1.png\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"4509\";s:6:\"height\";s:3:\"360\";s:5:\"width\";s:4:\"1183\";s:9:\"thumbnail\";s:72:\"https://sa7717.dev34.info/wp-content/uploads/2021/05/image-1-150x150.png\";}}s:14:\"ptitle_padding\";a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:5:\"100px\";s:14:\"padding-bottom\";s:0:\"\";}s:16:\"content_bg_color\";a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}s:15:\"content_padding\";a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}s:17:\"show_sidebar_page\";s:0:\"\";s:16:\"sidebar_page_pos\";s:5:\"right\";s:12:\"loading_page\";s:11:\"themeoption\";s:12:\"loading_type\";s:6:\"style1\";s:13:\"loading_color\";s:0:\"\";s:13:\"custom_footer\";s:1:\"1\";s:20:\"footer_layout_custom\";s:4:\"3201\";s:15:\"page_back_totop\";s:11:\"themeoption\";s:20:\"_elementor_edit_mode\";s:7:\"builder\";s:24:\"_elementor_template_type\";s:7:\"wp-page\";s:18:\"_elementor_version\";s:5:\"3.2.2\";s:15:\"_elementor_data\";s:3246:\"[{\"id\":\"64fd72b8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"42\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"305603d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9da93fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the information below to sign up for the Dart and Pool Leagues\",\"sub_title\":\"League Information\",\"sub_title_color\":\"#595959\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"_css_classes\":\"line-sub-preset2\",\"ct_animate\":\"wow bounce\",\"text_align\":\"center\",\"sub_title_style\":\"style7\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"f725b8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"20124ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"df23ab3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"about-call\\\"><span style=\\\"color: #d90202;\\\">Dart League registration and info<\\/span><\\/h5><div><strong>Inland Empire Dart League<\\/strong><\\/div><div>\\u00a0<\\/div><div><a href=\\\"tel:509-389-6518\\\"><strong>509-389-6518<\\/strong><\\/a>\\u00a0 \\u00a0<em>Ask For Tammy (secretary)<\\/em><\\/div><div>\\u00a0<\\/div><div><strong><a href=\\\"mailto:info@dartleague.com\\\">info@dartleague.com<\\/a><\\/strong><\\/div><div>\\u00a0<\\/div><div><strong>The dart league is associated with the National Dart Association\\u00a0<\\/strong><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a6662f5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/nda.png\",\"id\":4504},\"image_size\":\"medium\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ab5c66a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ea0522\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"about-call\\\"><span style=\\\"color: #d90202;\\\">Pool League registration and info<\\/span><\\/h5><div><strong>APA of Spokane<\\/strong><\\/div><div>\\u00a0<\\/div><div><div><a href=\\\"tel:509-327-2591\\\"><strong>509-327-2591<\\/strong><\\/a><\\/div><\\/div><div>\\u00a0<\\/div><div><div><a href=\\\"http:\\/\\/poolplayers.com\\\"><strong>poolplayers.com<\\/strong><\\/a><\\/div><div>\\u00a0<\\/div><div><strong>The pool league is associated with the American Pool Players Association\\u00a0<\\/strong><\\/div><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"13ae9b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/apa.png\",\"id\":4505},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]\";s:10:\"_edit_lock\";s:12:\"1621619441:1\";s:10:\"_edit_last\";s:1:\"1\";s:10:\"p_h_style1\";s:11:\"themeoption\";s:13:\"h_custom_menu\";s:0:\"\";s:18:\"h_custom_menu_left\";s:0:\"\";s:19:\"h_custom_menu_right\";s:0:\"\";s:18:\"p_page_title_color\";s:0:\"\";s:14:\"ptitle_overlay\";s:11:\"themeoption\";s:22:\"ptitle_breadcrumb_page\";s:11:\"themeoption\";s:23:\"ptitle_breadcrumb_color\";s:0:\"\";s:12:\"p_bg_content\";a:6:{s:17:\"background-repeat\";s:0:\"\";s:15:\"background-size\";s:0:\"\";s:21:\"background-attachment\";s:0:\"\";s:19:\"background-position\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}s:20:\"eg_sources_html5_mp4\";s:0:\"\";s:18:\"eg_sources_youtube\";s:0:\"\";s:16:\"eg_sources_vimeo\";s:0:\"\";s:17:\"eg_sources_wistia\";s:0:\"\";s:16:\"eg_sources_image\";s:0:\"\";s:17:\"eg_sources_iframe\";s:0:\"\";s:21:\"eg_sources_soundcloud\";s:0:\"\";s:14:\"eg_vimeo_ratio\";s:1:\"1\";s:16:\"eg_youtube_ratio\";s:1:\"1\";s:15:\"eg_wistia_ratio\";s:1:\"1\";s:14:\"eg_html5_ratio\";s:1:\"1\";s:19:\"eg_soundcloud_ratio\";s:1:\"1\";s:20:\"eg_sources_revslider\";s:0:\"\";s:18:\"eg_sources_essgrid\";s:0:\"\";s:16:\"eg_featured_grid\";s:0:\"\";s:28:\"eg_settings_custom_meta_skin\";s:0:\"\";s:31:\"eg_settings_custom_meta_element\";s:0:\"\";s:31:\"eg_settings_custom_meta_setting\";s:0:\"\";s:29:\"eg_settings_custom_meta_style\";s:0:\"\";s:18:\"eg_custom_meta_216\";s:4:\"true\";s:14:\"eg_votes_count\";s:1:\"0\";s:25:\"_elementor_controls_usage\";a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:1;s:18:\"title_space_bottom\";i:1;s:10:\"ct_animate\";i:1;s:10:\"text_align\";i:1;}s:17:\"sub_title_section\";a:6:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:32:\"sub_title_typography_font_family\";i:1;s:32:\"sub_title_typography_font_weight\";i:1;s:15:\"sub_title_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:2;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}}s:14:\"_elementor_css\";a:6:{s:4:\"time\";i:1621619395;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}}','yes'),(1469,'courses_option','a:60:{s:17:\"_wp_page_template\";s:7:\"default\";s:13:\"custom_header\";s:1:\"1\";s:13:\"header_layout\";s:2:\"19\";s:11:\"p_logo_dark\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:12:\"p_logo_light\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:13:\"p_logo_mobile\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:12:\"page_h_phone\";s:0:\"\";s:11:\"page_h_time\";s:0:\"\";s:16:\"custom_pagetitle\";s:4:\"show\";s:12:\"custom_title\";s:18:\"League Information\";s:9:\"ptitle_bg\";a:2:{s:16:\"background-image\";s:64:\"https://sa7717.dev34.info/wp-content/uploads/2021/05/image-1.png\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"4509\";s:6:\"height\";s:3:\"360\";s:5:\"width\";s:4:\"1183\";s:9:\"thumbnail\";s:72:\"https://sa7717.dev34.info/wp-content/uploads/2021/05/image-1-150x150.png\";}}s:14:\"ptitle_padding\";a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:5:\"100px\";s:14:\"padding-bottom\";s:0:\"\";}s:16:\"content_bg_color\";a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}s:15:\"content_padding\";a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}s:17:\"show_sidebar_page\";s:0:\"\";s:16:\"sidebar_page_pos\";s:5:\"right\";s:12:\"loading_page\";s:11:\"themeoption\";s:12:\"loading_type\";s:6:\"style1\";s:13:\"loading_color\";s:0:\"\";s:13:\"custom_footer\";s:1:\"1\";s:20:\"footer_layout_custom\";s:4:\"3201\";s:15:\"page_back_totop\";s:11:\"themeoption\";s:20:\"_elementor_edit_mode\";s:7:\"builder\";s:24:\"_elementor_template_type\";s:7:\"wp-page\";s:18:\"_elementor_version\";s:5:\"3.2.2\";s:15:\"_elementor_data\";s:3246:\"[{\"id\":\"64fd72b8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"42\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"305603d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9da93fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the information below to sign up for the Dart and Pool Leagues\",\"sub_title\":\"League Information\",\"sub_title_color\":\"#595959\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"_css_classes\":\"line-sub-preset2\",\"ct_animate\":\"wow bounce\",\"text_align\":\"center\",\"sub_title_style\":\"style7\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"f725b8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"20124ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"df23ab3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"about-call\\\"><span style=\\\"color: #d90202;\\\">Dart League registration and info<\\/span><\\/h5><div><strong>Inland Empire Dart League<\\/strong><\\/div><div>\\u00a0<\\/div><div><a href=\\\"tel:509-389-6518\\\"><strong>509-389-6518<\\/strong><\\/a>\\u00a0 \\u00a0<em>Ask For Tammy (secretary)<\\/em><\\/div><div>\\u00a0<\\/div><div><strong><a href=\\\"mailto:info@dartleague.com\\\">info@dartleague.com<\\/a><\\/strong><\\/div><div>\\u00a0<\\/div><div><strong>The dart league is associated with the National Dart Association\\u00a0<\\/strong><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a6662f5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/nda.png\",\"id\":4504},\"image_size\":\"medium\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ab5c66a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ea0522\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"about-call\\\"><span style=\\\"color: #d90202;\\\">Pool League registration and info<\\/span><\\/h5><div><strong>APA of Spokane<\\/strong><\\/div><div>\\u00a0<\\/div><div><div><a href=\\\"tel:509-327-2591\\\"><strong>509-327-2591<\\/strong><\\/a><\\/div><\\/div><div>\\u00a0<\\/div><div><div><a href=\\\"http:\\/\\/poolplayers.com\\\"><strong>poolplayers.com<\\/strong><\\/a><\\/div><div>\\u00a0<\\/div><div><strong>The pool league is associated with the American Pool Players Association\\u00a0<\\/strong><\\/div><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"13ae9b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/apa.png\",\"id\":4505},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]\";s:10:\"_edit_lock\";s:12:\"1621619441:1\";s:10:\"_edit_last\";s:1:\"1\";s:10:\"p_h_style1\";s:11:\"themeoption\";s:13:\"h_custom_menu\";s:0:\"\";s:18:\"h_custom_menu_left\";s:0:\"\";s:19:\"h_custom_menu_right\";s:0:\"\";s:18:\"p_page_title_color\";s:0:\"\";s:14:\"ptitle_overlay\";s:11:\"themeoption\";s:22:\"ptitle_breadcrumb_page\";s:11:\"themeoption\";s:23:\"ptitle_breadcrumb_color\";s:0:\"\";s:12:\"p_bg_content\";a:6:{s:17:\"background-repeat\";s:0:\"\";s:15:\"background-size\";s:0:\"\";s:21:\"background-attachment\";s:0:\"\";s:19:\"background-position\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}s:20:\"eg_sources_html5_mp4\";s:0:\"\";s:18:\"eg_sources_youtube\";s:0:\"\";s:16:\"eg_sources_vimeo\";s:0:\"\";s:17:\"eg_sources_wistia\";s:0:\"\";s:16:\"eg_sources_image\";s:0:\"\";s:17:\"eg_sources_iframe\";s:0:\"\";s:21:\"eg_sources_soundcloud\";s:0:\"\";s:14:\"eg_vimeo_ratio\";s:1:\"1\";s:16:\"eg_youtube_ratio\";s:1:\"1\";s:15:\"eg_wistia_ratio\";s:1:\"1\";s:14:\"eg_html5_ratio\";s:1:\"1\";s:19:\"eg_soundcloud_ratio\";s:1:\"1\";s:20:\"eg_sources_revslider\";s:0:\"\";s:18:\"eg_sources_essgrid\";s:0:\"\";s:16:\"eg_featured_grid\";s:0:\"\";s:28:\"eg_settings_custom_meta_skin\";s:0:\"\";s:31:\"eg_settings_custom_meta_element\";s:0:\"\";s:31:\"eg_settings_custom_meta_setting\";s:0:\"\";s:29:\"eg_settings_custom_meta_style\";s:0:\"\";s:18:\"eg_custom_meta_216\";s:4:\"true\";s:14:\"eg_votes_count\";s:1:\"0\";s:25:\"_elementor_controls_usage\";a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:1;s:18:\"title_space_bottom\";i:1;s:10:\"ct_animate\";i:1;s:10:\"text_align\";i:1;}s:17:\"sub_title_section\";a:6:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:32:\"sub_title_typography_font_family\";i:1;s:32:\"sub_title_typography_font_weight\";i:1;s:15:\"sub_title_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:2;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}}s:14:\"_elementor_css\";a:6:{s:4:\"time\";i:1621619395;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}}','yes'),(1470,'portfolio_option','a:60:{s:17:\"_wp_page_template\";s:7:\"default\";s:13:\"custom_header\";s:1:\"1\";s:13:\"header_layout\";s:2:\"19\";s:11:\"p_logo_dark\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:12:\"p_logo_light\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:13:\"p_logo_mobile\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:12:\"page_h_phone\";s:0:\"\";s:11:\"page_h_time\";s:0:\"\";s:16:\"custom_pagetitle\";s:4:\"show\";s:12:\"custom_title\";s:18:\"League Information\";s:9:\"ptitle_bg\";a:2:{s:16:\"background-image\";s:64:\"https://sa7717.dev34.info/wp-content/uploads/2021/05/image-1.png\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"4509\";s:6:\"height\";s:3:\"360\";s:5:\"width\";s:4:\"1183\";s:9:\"thumbnail\";s:72:\"https://sa7717.dev34.info/wp-content/uploads/2021/05/image-1-150x150.png\";}}s:14:\"ptitle_padding\";a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:5:\"100px\";s:14:\"padding-bottom\";s:0:\"\";}s:16:\"content_bg_color\";a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}s:15:\"content_padding\";a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}s:17:\"show_sidebar_page\";s:0:\"\";s:16:\"sidebar_page_pos\";s:5:\"right\";s:12:\"loading_page\";s:11:\"themeoption\";s:12:\"loading_type\";s:6:\"style1\";s:13:\"loading_color\";s:0:\"\";s:13:\"custom_footer\";s:1:\"1\";s:20:\"footer_layout_custom\";s:4:\"3201\";s:15:\"page_back_totop\";s:11:\"themeoption\";s:20:\"_elementor_edit_mode\";s:7:\"builder\";s:24:\"_elementor_template_type\";s:7:\"wp-page\";s:18:\"_elementor_version\";s:5:\"3.2.2\";s:15:\"_elementor_data\";s:3246:\"[{\"id\":\"64fd72b8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"42\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"305603d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9da93fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the information below to sign up for the Dart and Pool Leagues\",\"sub_title\":\"League Information\",\"sub_title_color\":\"#595959\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"_css_classes\":\"line-sub-preset2\",\"ct_animate\":\"wow bounce\",\"text_align\":\"center\",\"sub_title_style\":\"style7\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"f725b8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"20124ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"df23ab3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"about-call\\\"><span style=\\\"color: #d90202;\\\">Dart League registration and info<\\/span><\\/h5><div><strong>Inland Empire Dart League<\\/strong><\\/div><div>\\u00a0<\\/div><div><a href=\\\"tel:509-389-6518\\\"><strong>509-389-6518<\\/strong><\\/a>\\u00a0 \\u00a0<em>Ask For Tammy (secretary)<\\/em><\\/div><div>\\u00a0<\\/div><div><strong><a href=\\\"mailto:info@dartleague.com\\\">info@dartleague.com<\\/a><\\/strong><\\/div><div>\\u00a0<\\/div><div><strong>The dart league is associated with the National Dart Association\\u00a0<\\/strong><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a6662f5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/nda.png\",\"id\":4504},\"image_size\":\"medium\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ab5c66a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ea0522\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"about-call\\\"><span style=\\\"color: #d90202;\\\">Pool League registration and info<\\/span><\\/h5><div><strong>APA of Spokane<\\/strong><\\/div><div>\\u00a0<\\/div><div><div><a href=\\\"tel:509-327-2591\\\"><strong>509-327-2591<\\/strong><\\/a><\\/div><\\/div><div>\\u00a0<\\/div><div><div><a href=\\\"http:\\/\\/poolplayers.com\\\"><strong>poolplayers.com<\\/strong><\\/a><\\/div><div>\\u00a0<\\/div><div><strong>The pool league is associated with the American Pool Players Association\\u00a0<\\/strong><\\/div><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"13ae9b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/apa.png\",\"id\":4505},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]\";s:10:\"_edit_lock\";s:12:\"1621619441:1\";s:10:\"_edit_last\";s:1:\"1\";s:10:\"p_h_style1\";s:11:\"themeoption\";s:13:\"h_custom_menu\";s:0:\"\";s:18:\"h_custom_menu_left\";s:0:\"\";s:19:\"h_custom_menu_right\";s:0:\"\";s:18:\"p_page_title_color\";s:0:\"\";s:14:\"ptitle_overlay\";s:11:\"themeoption\";s:22:\"ptitle_breadcrumb_page\";s:11:\"themeoption\";s:23:\"ptitle_breadcrumb_color\";s:0:\"\";s:12:\"p_bg_content\";a:6:{s:17:\"background-repeat\";s:0:\"\";s:15:\"background-size\";s:0:\"\";s:21:\"background-attachment\";s:0:\"\";s:19:\"background-position\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}s:20:\"eg_sources_html5_mp4\";s:0:\"\";s:18:\"eg_sources_youtube\";s:0:\"\";s:16:\"eg_sources_vimeo\";s:0:\"\";s:17:\"eg_sources_wistia\";s:0:\"\";s:16:\"eg_sources_image\";s:0:\"\";s:17:\"eg_sources_iframe\";s:0:\"\";s:21:\"eg_sources_soundcloud\";s:0:\"\";s:14:\"eg_vimeo_ratio\";s:1:\"1\";s:16:\"eg_youtube_ratio\";s:1:\"1\";s:15:\"eg_wistia_ratio\";s:1:\"1\";s:14:\"eg_html5_ratio\";s:1:\"1\";s:19:\"eg_soundcloud_ratio\";s:1:\"1\";s:20:\"eg_sources_revslider\";s:0:\"\";s:18:\"eg_sources_essgrid\";s:0:\"\";s:16:\"eg_featured_grid\";s:0:\"\";s:28:\"eg_settings_custom_meta_skin\";s:0:\"\";s:31:\"eg_settings_custom_meta_element\";s:0:\"\";s:31:\"eg_settings_custom_meta_setting\";s:0:\"\";s:29:\"eg_settings_custom_meta_style\";s:0:\"\";s:18:\"eg_custom_meta_216\";s:4:\"true\";s:14:\"eg_votes_count\";s:1:\"0\";s:25:\"_elementor_controls_usage\";a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:1;s:18:\"title_space_bottom\";i:1;s:10:\"ct_animate\";i:1;s:10:\"text_align\";i:1;}s:17:\"sub_title_section\";a:6:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:32:\"sub_title_typography_font_family\";i:1;s:32:\"sub_title_typography_font_weight\";i:1;s:15:\"sub_title_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:2;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}}s:14:\"_elementor_css\";a:6:{s:4:\"time\";i:1621619395;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}}','yes');
INSERT INTO `wp9s_options` VALUES (1471,'case_study_option','a:60:{s:17:\"_wp_page_template\";s:7:\"default\";s:13:\"custom_header\";s:1:\"1\";s:13:\"header_layout\";s:2:\"19\";s:11:\"p_logo_dark\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:12:\"p_logo_light\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:13:\"p_logo_mobile\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:12:\"page_h_phone\";s:0:\"\";s:11:\"page_h_time\";s:0:\"\";s:16:\"custom_pagetitle\";s:4:\"show\";s:12:\"custom_title\";s:18:\"League Information\";s:9:\"ptitle_bg\";a:2:{s:16:\"background-image\";s:64:\"https://sa7717.dev34.info/wp-content/uploads/2021/05/image-1.png\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"4509\";s:6:\"height\";s:3:\"360\";s:5:\"width\";s:4:\"1183\";s:9:\"thumbnail\";s:72:\"https://sa7717.dev34.info/wp-content/uploads/2021/05/image-1-150x150.png\";}}s:14:\"ptitle_padding\";a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:5:\"100px\";s:14:\"padding-bottom\";s:0:\"\";}s:16:\"content_bg_color\";a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}s:15:\"content_padding\";a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}s:17:\"show_sidebar_page\";s:0:\"\";s:16:\"sidebar_page_pos\";s:5:\"right\";s:12:\"loading_page\";s:11:\"themeoption\";s:12:\"loading_type\";s:6:\"style1\";s:13:\"loading_color\";s:0:\"\";s:13:\"custom_footer\";s:1:\"1\";s:20:\"footer_layout_custom\";s:4:\"3201\";s:15:\"page_back_totop\";s:11:\"themeoption\";s:20:\"_elementor_edit_mode\";s:7:\"builder\";s:24:\"_elementor_template_type\";s:7:\"wp-page\";s:18:\"_elementor_version\";s:5:\"3.2.2\";s:15:\"_elementor_data\";s:3246:\"[{\"id\":\"64fd72b8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"42\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"305603d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9da93fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the information below to sign up for the Dart and Pool Leagues\",\"sub_title\":\"League Information\",\"sub_title_color\":\"#595959\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"_css_classes\":\"line-sub-preset2\",\"ct_animate\":\"wow bounce\",\"text_align\":\"center\",\"sub_title_style\":\"style7\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"f725b8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"20124ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"df23ab3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"about-call\\\"><span style=\\\"color: #d90202;\\\">Dart League registration and info<\\/span><\\/h5><div><strong>Inland Empire Dart League<\\/strong><\\/div><div>\\u00a0<\\/div><div><a href=\\\"tel:509-389-6518\\\"><strong>509-389-6518<\\/strong><\\/a>\\u00a0 \\u00a0<em>Ask For Tammy (secretary)<\\/em><\\/div><div>\\u00a0<\\/div><div><strong><a href=\\\"mailto:info@dartleague.com\\\">info@dartleague.com<\\/a><\\/strong><\\/div><div>\\u00a0<\\/div><div><strong>The dart league is associated with the National Dart Association\\u00a0<\\/strong><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a6662f5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/nda.png\",\"id\":4504},\"image_size\":\"medium\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ab5c66a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ea0522\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"about-call\\\"><span style=\\\"color: #d90202;\\\">Pool League registration and info<\\/span><\\/h5><div><strong>APA of Spokane<\\/strong><\\/div><div>\\u00a0<\\/div><div><div><a href=\\\"tel:509-327-2591\\\"><strong>509-327-2591<\\/strong><\\/a><\\/div><\\/div><div>\\u00a0<\\/div><div><div><a href=\\\"http:\\/\\/poolplayers.com\\\"><strong>poolplayers.com<\\/strong><\\/a><\\/div><div>\\u00a0<\\/div><div><strong>The pool league is associated with the American Pool Players Association\\u00a0<\\/strong><\\/div><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"13ae9b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/apa.png\",\"id\":4505},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]\";s:10:\"_edit_lock\";s:12:\"1621619441:1\";s:10:\"_edit_last\";s:1:\"1\";s:10:\"p_h_style1\";s:11:\"themeoption\";s:13:\"h_custom_menu\";s:0:\"\";s:18:\"h_custom_menu_left\";s:0:\"\";s:19:\"h_custom_menu_right\";s:0:\"\";s:18:\"p_page_title_color\";s:0:\"\";s:14:\"ptitle_overlay\";s:11:\"themeoption\";s:22:\"ptitle_breadcrumb_page\";s:11:\"themeoption\";s:23:\"ptitle_breadcrumb_color\";s:0:\"\";s:12:\"p_bg_content\";a:6:{s:17:\"background-repeat\";s:0:\"\";s:15:\"background-size\";s:0:\"\";s:21:\"background-attachment\";s:0:\"\";s:19:\"background-position\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}s:20:\"eg_sources_html5_mp4\";s:0:\"\";s:18:\"eg_sources_youtube\";s:0:\"\";s:16:\"eg_sources_vimeo\";s:0:\"\";s:17:\"eg_sources_wistia\";s:0:\"\";s:16:\"eg_sources_image\";s:0:\"\";s:17:\"eg_sources_iframe\";s:0:\"\";s:21:\"eg_sources_soundcloud\";s:0:\"\";s:14:\"eg_vimeo_ratio\";s:1:\"1\";s:16:\"eg_youtube_ratio\";s:1:\"1\";s:15:\"eg_wistia_ratio\";s:1:\"1\";s:14:\"eg_html5_ratio\";s:1:\"1\";s:19:\"eg_soundcloud_ratio\";s:1:\"1\";s:20:\"eg_sources_revslider\";s:0:\"\";s:18:\"eg_sources_essgrid\";s:0:\"\";s:16:\"eg_featured_grid\";s:0:\"\";s:28:\"eg_settings_custom_meta_skin\";s:0:\"\";s:31:\"eg_settings_custom_meta_element\";s:0:\"\";s:31:\"eg_settings_custom_meta_setting\";s:0:\"\";s:29:\"eg_settings_custom_meta_style\";s:0:\"\";s:18:\"eg_custom_meta_216\";s:4:\"true\";s:14:\"eg_votes_count\";s:1:\"0\";s:25:\"_elementor_controls_usage\";a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:1;s:18:\"title_space_bottom\";i:1;s:10:\"ct_animate\";i:1;s:10:\"text_align\";i:1;}s:17:\"sub_title_section\";a:6:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:32:\"sub_title_typography_font_family\";i:1;s:32:\"sub_title_typography_font_weight\";i:1;s:15:\"sub_title_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:2;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}}s:14:\"_elementor_css\";a:6:{s:4:\"time\";i:1621619395;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}}','yes'),(3720,'_transient_timeout_wc_term_counts','1627083923','no'),(3721,'_transient_wc_term_counts','a:6:{i:9;s:1:\"2\";i:10;s:1:\"5\";i:11;s:1:\"3\";i:34;s:1:\"8\";i:38;s:1:\"2\";i:51;s:0:\"\";}','no'),(3851,'_transient_timeout__woocommerce_helper_updates','1625819736','no'),(3852,'_transient__woocommerce_helper_updates','a:4:{s:4:\"hash\";s:32:\"d751713988987e9331980363e24189ce\";s:7:\"updated\";i:1625776536;s:8:\"products\";a:0:{}s:6:\"errors\";a:1:{i:0;s:10:\"http-error\";}}','no'),(1472,'post_option','a:60:{s:17:\"_wp_page_template\";s:7:\"default\";s:13:\"custom_header\";s:1:\"1\";s:13:\"header_layout\";s:2:\"19\";s:11:\"p_logo_dark\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:12:\"p_logo_light\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:13:\"p_logo_mobile\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:12:\"page_h_phone\";s:0:\"\";s:11:\"page_h_time\";s:0:\"\";s:16:\"custom_pagetitle\";s:4:\"show\";s:12:\"custom_title\";s:18:\"League Information\";s:9:\"ptitle_bg\";a:2:{s:16:\"background-image\";s:64:\"https://sa7717.dev34.info/wp-content/uploads/2021/05/image-1.png\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"4509\";s:6:\"height\";s:3:\"360\";s:5:\"width\";s:4:\"1183\";s:9:\"thumbnail\";s:72:\"https://sa7717.dev34.info/wp-content/uploads/2021/05/image-1-150x150.png\";}}s:14:\"ptitle_padding\";a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:5:\"100px\";s:14:\"padding-bottom\";s:0:\"\";}s:16:\"content_bg_color\";a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}s:15:\"content_padding\";a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}s:17:\"show_sidebar_page\";s:0:\"\";s:16:\"sidebar_page_pos\";s:5:\"right\";s:12:\"loading_page\";s:11:\"themeoption\";s:12:\"loading_type\";s:6:\"style1\";s:13:\"loading_color\";s:0:\"\";s:13:\"custom_footer\";s:1:\"1\";s:20:\"footer_layout_custom\";s:4:\"3201\";s:15:\"page_back_totop\";s:11:\"themeoption\";s:20:\"_elementor_edit_mode\";s:7:\"builder\";s:24:\"_elementor_template_type\";s:7:\"wp-page\";s:18:\"_elementor_version\";s:5:\"3.2.2\";s:15:\"_elementor_data\";s:3246:\"[{\"id\":\"64fd72b8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"42\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"305603d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9da93fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the information below to sign up for the Dart and Pool Leagues\",\"sub_title\":\"League Information\",\"sub_title_color\":\"#595959\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"_css_classes\":\"line-sub-preset2\",\"ct_animate\":\"wow bounce\",\"text_align\":\"center\",\"sub_title_style\":\"style7\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"f725b8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"20124ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"df23ab3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"about-call\\\"><span style=\\\"color: #d90202;\\\">Dart League registration and info<\\/span><\\/h5><div><strong>Inland Empire Dart League<\\/strong><\\/div><div>\\u00a0<\\/div><div><a href=\\\"tel:509-389-6518\\\"><strong>509-389-6518<\\/strong><\\/a>\\u00a0 \\u00a0<em>Ask For Tammy (secretary)<\\/em><\\/div><div>\\u00a0<\\/div><div><strong><a href=\\\"mailto:info@dartleague.com\\\">info@dartleague.com<\\/a><\\/strong><\\/div><div>\\u00a0<\\/div><div><strong>The dart league is associated with the National Dart Association\\u00a0<\\/strong><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a6662f5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/nda.png\",\"id\":4504},\"image_size\":\"medium\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ab5c66a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ea0522\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"about-call\\\"><span style=\\\"color: #d90202;\\\">Pool League registration and info<\\/span><\\/h5><div><strong>APA of Spokane<\\/strong><\\/div><div>\\u00a0<\\/div><div><div><a href=\\\"tel:509-327-2591\\\"><strong>509-327-2591<\\/strong><\\/a><\\/div><\\/div><div>\\u00a0<\\/div><div><div><a href=\\\"http:\\/\\/poolplayers.com\\\"><strong>poolplayers.com<\\/strong><\\/a><\\/div><div>\\u00a0<\\/div><div><strong>The pool league is associated with the American Pool Players Association\\u00a0<\\/strong><\\/div><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"13ae9b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/apa.png\",\"id\":4505},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]\";s:10:\"_edit_lock\";s:12:\"1621619441:1\";s:10:\"_edit_last\";s:1:\"1\";s:10:\"p_h_style1\";s:11:\"themeoption\";s:13:\"h_custom_menu\";s:0:\"\";s:18:\"h_custom_menu_left\";s:0:\"\";s:19:\"h_custom_menu_right\";s:0:\"\";s:18:\"p_page_title_color\";s:0:\"\";s:14:\"ptitle_overlay\";s:11:\"themeoption\";s:22:\"ptitle_breadcrumb_page\";s:11:\"themeoption\";s:23:\"ptitle_breadcrumb_color\";s:0:\"\";s:12:\"p_bg_content\";a:6:{s:17:\"background-repeat\";s:0:\"\";s:15:\"background-size\";s:0:\"\";s:21:\"background-attachment\";s:0:\"\";s:19:\"background-position\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}s:20:\"eg_sources_html5_mp4\";s:0:\"\";s:18:\"eg_sources_youtube\";s:0:\"\";s:16:\"eg_sources_vimeo\";s:0:\"\";s:17:\"eg_sources_wistia\";s:0:\"\";s:16:\"eg_sources_image\";s:0:\"\";s:17:\"eg_sources_iframe\";s:0:\"\";s:21:\"eg_sources_soundcloud\";s:0:\"\";s:14:\"eg_vimeo_ratio\";s:1:\"1\";s:16:\"eg_youtube_ratio\";s:1:\"1\";s:15:\"eg_wistia_ratio\";s:1:\"1\";s:14:\"eg_html5_ratio\";s:1:\"1\";s:19:\"eg_soundcloud_ratio\";s:1:\"1\";s:20:\"eg_sources_revslider\";s:0:\"\";s:18:\"eg_sources_essgrid\";s:0:\"\";s:16:\"eg_featured_grid\";s:0:\"\";s:28:\"eg_settings_custom_meta_skin\";s:0:\"\";s:31:\"eg_settings_custom_meta_element\";s:0:\"\";s:31:\"eg_settings_custom_meta_setting\";s:0:\"\";s:29:\"eg_settings_custom_meta_style\";s:0:\"\";s:18:\"eg_custom_meta_216\";s:4:\"true\";s:14:\"eg_votes_count\";s:1:\"0\";s:25:\"_elementor_controls_usage\";a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:1;s:18:\"title_space_bottom\";i:1;s:10:\"ct_animate\";i:1;s:10:\"text_align\";i:1;}s:17:\"sub_title_section\";a:6:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:32:\"sub_title_typography_font_family\";i:1;s:32:\"sub_title_typography_font_weight\";i:1;s:15:\"sub_title_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:2;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}}s:14:\"_elementor_css\";a:6:{s:4:\"time\";i:1621619395;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}}','yes'),(2425,'_transient_wc_attribute_taxonomies','a:0:{}','yes'),(2406,'elementor_log','a:6:{s:32:\"30eb5a8810368771d2610cbe08763180\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-04-28 20:00:52\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.1.4\";s:2:\"to\";s:5:\"3.2.2\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-04-28 20:00:52\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.1.4\";s:2:\"to\";s:5:\"3.2.2\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"707b3eca974137383a6d62a1947c02cd\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-04-28 20:03:18\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-04-28 20:03:18\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"c162e94aec2befdc827c79ba04e1ffeb\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-04-28 20:03:18\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:70:\"Elementor/Upgrades - _v_3_2_0_migrate_breakpoints_to_new_system Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-04-28 20:03:18\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:70:\"Elementor/Upgrades - _v_3_2_0_migrate_breakpoints_to_new_system Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"78c1184ab8e398af059e3d3d5891cb7f\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-04-28 20:03:18\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:72:\"Elementor/Upgrades - _v_3_2_0_migrate_breakpoints_to_new_system Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-04-28 20:03:18\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:72:\"Elementor/Upgrades - _v_3_2_0_migrate_breakpoints_to_new_system Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"a3a7a2ec636d96706523326d56d2ebac\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-04-28 20:03:18\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.1.4\";s:2:\"to\";s:5:\"3.2.2\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-04-28 20:03:18\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.1.4\";s:2:\"to\";s:5:\"3.2.2\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"c216e47f0cd73b2890aecf1476dd7a9f\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-04-28 20:03:20\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.1.4\";s:2:\"to\";s:5:\"3.2.2\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-04-28 20:03:20\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.1.4\";s:2:\"to\";s:5:\"3.2.2\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}}','no'),(2409,'woocommerce_task_list_hidden','yes','yes'),(3816,'_transient_timeout_tnp_extensions_json','1625951744','no'),(3817,'_transient_tnp_extensions_json','[\n    {\n        \"id\": \"85\",\n        \"children_fileid\": \"\",\n        \"version\": \"1.1.4\",\n        \"title\": \"Addons Manager\",\n        \"description\": \"\",\n        \"slug\": \"newsletter-extensions\",\n        \"type\": \"manager\",\n        \"url\": \"https:\\/\\/www.thenewsletterplugin.com\\/account\",\n        \"image\": \"\",\n        \"status\": \"4\",\n        \"free\": true,\n        \"downloadable\": true,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=85\",\n        \"wp_slug\": \"newsletter-extensions\\/extensions.php\"\n    },\n    {\n        \"id\": \"87\",\n        \"children_fileid\": \"\",\n        \"version\": \"1.0.3\",\n        \"title\": \"Speed and Delivery Hours Control\",\n        \"description\": \"Configure a different delivery speed for each newsletter and the delivery hours window. Only for regular newsletters.\",\n        \"slug\": \"newsletter-speedcontrol\",\n        \"type\": \"legacy\",\n        \"url\": \"https:\\/\\/www.thenewsletterplugin.com\\/account\",\n        \"image\": \"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2018\\/12\\/speedcontrol.png\",\n        \"status\": \"3\",\n        \"free\": true,\n        \"downloadable\": true,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=87\",\n        \"wp_slug\": \"newsletter-speedcontrol\\/speedcontrol.php\"\n    },\n    {\n        \"id\": \"90\",\n        \"children_fileid\": \"\",\n        \"version\": \"1.0.4\",\n        \"title\": \"Sendinblue\",\n        \"description\": \"Integration with Sendinblue mailing service.\",\n        \"slug\": \"newsletter-sendinblue\",\n        \"type\": \"delivery\",\n        \"url\": \"https:\\/\\/www.thenewsletterplugin.com\\/documentation\\/?p=198432\",\n        \"image\": \"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/design-32px-outline_newsletter-dev.png\",\n        \"status\": \"3\",\n        \"free\": true,\n        \"downloadable\": true,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=90\",\n        \"wp_slug\": \"newsletter-sendinblue\\/sendinblue.php\"\n    },\n    {\n        \"id\": \"93\",\n        \"children_fileid\": \"\",\n        \"version\": \"1.0.0\",\n        \"title\": \"External SMTP\",\n        \"description\": \"Add SMTP support to Newsletter for sending emails.\",\n        \"slug\": \"newsletter-smtp\",\n        \"type\": \"delivery\",\n        \"url\": \"https:\\/\\/www.thenewsletterplugin.com\\/documentation\\/addons\\/delivery-addons\\/smtp-extension\\/\",\n        \"image\": \"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/design-32px-outline_newsletter-dev.png\",\n        \"status\": \"4\",\n        \"free\": true,\n        \"downloadable\": true,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=93\",\n        \"wp_slug\": \"newsletter-smtp\\/smtp.php\"\n    },\n    {\n        \"id\": \"97\",\n        \"children_fileid\": \"\",\n        \"version\": \"1.0.3\",\n        \"title\": \"Webhooks (BETA)\",\n        \"description\": \"Adds webhooks to trigger external services upon subscription and cancellation events.\",\n        \"slug\": \"newsletter-webhooks\",\n        \"type\": \"extension\",\n        \"url\": \"https:\\/\\/www.thenewsletterplugin.com\\/documentation\\/developers\\/newsletter-webhooks\\/\",\n        \"image\": \"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2017\\/10\\/bold-direction@2x-1.png\",\n        \"status\": \"2\",\n        \"free\": false,\n        \"downloadable\": false,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=97\",\n        \"wp_slug\": \"newsletter-webhooks\\/webhooks.php\"\n    },\n    {\n        \"id\": \"99\",\n        \"children_fileid\": \"\",\n        \"version\": \"1.0.2\",\n        \"title\": \"Elementor Forms Addon (ALPHA)\",\n        \"description\": \"Integrates Elementor forms with Newsletter to collect subscription by forms created with Elementor.\",\n        \"slug\": \"newsletter-elementor\",\n        \"type\": \"integration\",\n        \"url\": \"https:\\/\\/www.thenewsletterplugin.com\\/documentation\\/addons\\/integrations\\/elementor-extension\\/\",\n        \"image\": \"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2021\\/04\\/elementor.png\",\n        \"status\": \"2\",\n        \"free\": false,\n        \"downloadable\": false,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=99\",\n        \"wp_slug\": \"newsletter-elementor\\/elementor.php\"\n    },\n    {\n        \"id\": \"100\",\n        \"children_fileid\": \"\",\n        \"version\": \"1.0.0\",\n        \"title\": \"Easy Digital Downloads\",\n        \"description\": \"The Newsletter Plugin integration for Easy Digital Downloads.\",\n        \"slug\": \"\",\n        \"type\": \"integration\",\n        \"url\": \"https:\\/\\/www.thenewsletterplugin.com\\/premium\",\n        \"image\": \"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2021\\/04\\/edd-logo.png\",\n        \"status\": \"2\",\n        \"free\": false,\n        \"downloadable\": false,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=100\",\n        \"wp_slug\": \"\\/.php\"\n    },\n    {\n        \"id\": \"101\",\n        \"children_fileid\": \"\",\n        \"version\": \"1.0.1\",\n        \"title\": \"Gravity Forms\",\n        \"description\": \"Integration between Gravity Forms and Newsletter to collect subscriptions directly from Gravity designed forms.\",\n        \"slug\": \"newsletter-gravityforms\",\n        \"type\": \"integration\",\n        \"url\": \"https:\\/\\/www.thenewsletterplugin.com\\/documentation\\/addons\\/integrations\\/gravityforms-extension\\/\",\n        \"image\": \"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2021\\/04\\/gravityforms.png\",\n        \"status\": \"2\",\n        \"free\": false,\n        \"downloadable\": false,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=101\",\n        \"wp_slug\": \"newsletter-gravityforms\\/gravityforms.php\"\n    },\n    {\n        \"id\": \"91\",\n        \"children_fileid\": \"\",\n        \"version\": \"1.0.2\",\n        \"title\": \"Instasend\",\n        \"description\": \"Quickly create a newsletter from a post (free for limited time)\",\n        \"slug\": \"newsletter-instasend\",\n        \"type\": \"extension\",\n        \"url\": \"https:\\/\\/www.thenewsletterplugin.com\\/account\",\n        \"image\": \"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2020\\/05\\/instasend-32.png\",\n        \"status\": \"3\",\n        \"free\": true,\n        \"downloadable\": true,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=91\",\n        \"wp_slug\": \"newsletter-instasend\\/instasend.php\"\n    },\n    {\n        \"id\": \"61\",\n        \"children_fileid\": \"\",\n        \"version\": \"4.2.3\",\n        \"title\": \"Contact Form 7\",\n        \"description\": \"Adds the newsletter subscription feature to your Contact Form 7 forms.\",\n        \"slug\": \"newsletter-cf7\",\n        \"type\": \"integration\",\n        \"url\": \"http:\\/\\/www.thenewsletterplugin.com\\/plugins\\/newsletter\\/contact-form-7-extension\",\n        \"image\": \"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/users-32px-outline_badge-13.png\",\n        \"status\": \"2\",\n        \"free\": false,\n        \"downloadable\": false,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=61\",\n        \"wp_slug\": \"newsletter-cf7\\/cf7.php\"\n    },\n    {\n        \"id\": \"83\",\n        \"children_fileid\": \"\",\n        \"version\": \"1.0.4\",\n        \"title\": \"Ninja Forms Integration\",\n        \"description\": \"Integrate Ninja Forms with Newsletter collecting subscription from your contact form.\",\n        \"slug\": \"newsletter-ninjaforms\",\n        \"type\": \"integration\",\n        \"url\": \"https:\\/\\/www.thenewsletterplugin.com\\/premium\",\n        \"image\": \"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2018\\/10\\/forms-integration.png\",\n        \"status\": \"2\",\n        \"free\": false,\n        \"downloadable\": false,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=83\",\n        \"wp_slug\": \"newsletter-ninjaforms\\/ninjaforms.php\"\n    },\n    {\n        \"id\": \"84\",\n        \"children_fileid\": \"\",\n        \"version\": \"1.0.8\",\n        \"title\": \"WP Forms Integration\",\n        \"description\": \"Integration with WP-Forms plugin. You can add a subscription option to your contact forms.\",\n        \"slug\": \"newsletter-wpforms\",\n        \"type\": \"integration\",\n        \"url\": \"https:\\/\\/www.thenewsletterplugin.com\\/premium\",\n        \"image\": \"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2018\\/10\\/forms-integration.png\",\n        \"status\": \"2\",\n        \"free\": false,\n        \"downloadable\": false,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=84\",\n        \"wp_slug\": \"newsletter-wpforms\\/wpforms.php\"\n    },\n    {\n        \"id\": \"50\",\n        \"children_fileid\": \"\",\n        \"version\": \"4.4.0\",\n        \"title\": \"Reports\",\n        \"description\": \"Shows tables and diagrams of the collected data (opens, clicks, ...).\",\n        \"slug\": \"newsletter-reports\",\n        \"type\": \"extension\",\n        \"url\": \"http:\\/\\/www.thenewsletterplugin.com\\/reports\",\n        \"image\": \"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/business-32px-outline_chart-bar-33.png\",\n        \"status\": \"2\",\n        \"free\": false,\n        \"downloadable\": false,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=50\",\n        \"wp_slug\": \"newsletter-reports\\/reports.php\"\n    },\n    {\n        \"id\": \"62\",\n        \"children_fileid\": \"\",\n        \"version\": \"4.5.1\",\n        \"title\": \"Automated\",\n        \"description\": \"Automatically creates periodic newsletters with your blog contents. Multichannel.\",\n        \"slug\": \"newsletter-automated\",\n        \"type\": \"extension\",\n        \"url\": \"https:\\/\\/www.thenewsletterplugin.com\\/automated\",\n        \"image\": \"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2021\\/03\\/automated-32.png\",\n        \"status\": \"2\",\n        \"free\": false,\n        \"downloadable\": false,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=62\",\n        \"wp_slug\": \"newsletter-automated\\/automated.php\"\n    },\n    {\n        \"id\": \"63\",\n        \"children_fileid\": \"\",\n        \"version\": \"1.6.8\",\n        \"title\": \"WooCommerce\",\n        \"description\": \"The Newsletter Plugin integration for WooCommerce\\u2122. Unleash your marketing powers.\",\n        \"slug\": \"newsletter-woocommerce\",\n        \"type\": \"integration\",\n        \"url\": \"http:\\/\\/www.thenewsletterplugin.com\\/woocommerce\",\n        \"image\": \"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2018\\/03\\/woocommerce-extension-icon.png\",\n        \"status\": \"2\",\n        \"free\": false,\n        \"downloadable\": false,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=63\",\n        \"wp_slug\": \"newsletter-woocommerce\\/woocommerce.php\"\n    },\n    {\n        \"id\": \"67\",\n        \"children_fileid\": \"\",\n        \"version\": \"1.2.4\",\n        \"title\": \"Leads\",\n        \"description\": \"Add a popup or a fixed subscription bar to your website and offer your visitors a simple way to subscribe.\",\n        \"slug\": \"newsletter-leads\",\n        \"type\": \"extension\",\n        \"url\": \"http:\\/\\/www.thenewsletterplugin.com\\/plugins\\/newsletter\\/leads-extension\",\n        \"image\": \"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/ui-32px-outline-3_widget.png\",\n        \"status\": \"2\",\n        \"free\": false,\n        \"downloadable\": false,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=67\",\n        \"wp_slug\": \"newsletter-leads\\/leads.php\"\n    },\n    {\n        \"id\": \"68\",\n        \"children_fileid\": \"\",\n        \"version\": \"1.1.3\",\n        \"title\": \"Google Analytics\",\n        \"description\": \"Automatically add Google Analytics UTM campaign tracking to links\",\n        \"slug\": \"newsletter-analytics\",\n        \"type\": \"extension\",\n        \"url\": \"https:\\/\\/www.thenewsletterplugin.com\\/google-analytics\",\n        \"image\": \" https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/analytics.png\",\n        \"status\": \"2\",\n        \"free\": false,\n        \"downloadable\": false,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=68\",\n        \"wp_slug\": \"newsletter-analytics\\/analytics.php\"\n    },\n    {\n        \"id\": \"70\",\n        \"children_fileid\": null,\n        \"version\": \"1.0.7\",\n        \"title\": \"Subscribe on Comment\",\n        \"description\": \"Adds the subscription option to your blog comment form\",\n        \"slug\": \"newsletter-comments\",\n        \"type\": \"integration\",\n        \"url\": \"https:\\/\\/www.thenewsletterplugin.com\\/premium\",\n        \"image\": \"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2017\\/02\\/comment-notification.png\",\n        \"status\": \"2\",\n        \"free\": false,\n        \"downloadable\": false,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=70\",\n        \"wp_slug\": \"newsletter-comments\\/comments.php\"\n    },\n    {\n        \"id\": \"72\",\n        \"children_fileid\": \"\",\n        \"version\": \"1.3.1\",\n        \"title\": \"Autoresponder\",\n        \"description\": \"Create unlimited email series to follow-up your subscribers. Lessons, up-sells, conversations.\",\n        \"slug\": \"newsletter-autoresponder\",\n        \"type\": \"extension\",\n        \"url\": \"https:\\/\\/www.thenewsletterplugin.com\\/autoresponder\",\n        \"image\": \"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/emoticons-32px-outline_robot.png\",\n        \"status\": \"2\",\n        \"free\": false,\n        \"downloadable\": false,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=72\",\n        \"wp_slug\": \"newsletter-autoresponder\\/autoresponder.php\"\n    },\n    {\n        \"id\": \"74\",\n        \"children_fileid\": \"\",\n        \"version\": \"1.3.3\",\n        \"title\": \"Extended Composer Blocks\",\n        \"description\": \"Adds new blocks to the newsletter composer: list, video, gallery, full post.\",\n        \"slug\": \"newsletter-blocks\",\n        \"type\": \"extension\",\n        \"url\": \"https:\\/\\/www.thenewsletterplugin.com\\/premium\",\n        \"image\": \"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2017\\/04\\/ui-32px-outline-3_widget.png\",\n        \"status\": \"2\",\n        \"free\": false,\n        \"downloadable\": false,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=74\",\n        \"wp_slug\": \"newsletter-blocks\\/blocks.php\"\n    },\n    {\n        \"id\": \"75\",\n        \"children_fileid\": \"\",\n        \"version\": \"1.1.1\",\n        \"title\": \"Geolocation\",\n        \"description\": \"Geolocate the subscribers and target them by geolocation in your campaign.\",\n        \"slug\": \"newsletter-geo\",\n        \"type\": \"extension\",\n        \"url\": \"http:\\/\\/www.thenewsletterplugin.com\\/\",\n        \"image\": \"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2018\\/03\\/geo-extension-icon.png\",\n        \"status\": \"2\",\n        \"free\": false,\n        \"downloadable\": false,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=75\",\n        \"wp_slug\": \"newsletter-geo\\/geo.php\"\n    },\n    {\n        \"id\": \"77\",\n        \"children_fileid\": \"\",\n        \"version\": \"2.1.6\",\n        \"title\": \"Newsletter API\",\n        \"description\": \"Access programmatically to The Newsletter Plugin via REST calls.\",\n        \"slug\": \"newsletter-api\",\n        \"type\": \"extension\",\n        \"url\": \"https:\\/\\/www.thenewsletterplugin.com\\/account\",\n        \"image\": \"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2017\\/10\\/bold-direction@2x-1.png\",\n        \"status\": \"3\",\n        \"free\": true,\n        \"downloadable\": true,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=77\",\n        \"wp_slug\": \"newsletter-api\\/api.php\"\n    },\n    {\n        \"id\": \"55\",\n        \"children_fileid\": null,\n        \"version\": \"4.0.9\",\n        \"title\": \"Facebook\",\n        \"description\": \"One click subscription and confirmation with Facebook Connect.\",\n        \"slug\": \"newsletter-facebook\",\n        \"type\": \"integration\",\n        \"url\": \"http:\\/\\/www.thenewsletterplugin.com\\/plugins\\/newsletter\\/facebook-module\",\n        \"image\": \"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/Facebook.png\",\n        \"status\": \"2\",\n        \"free\": false,\n        \"downloadable\": false,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=55\",\n        \"wp_slug\": \"newsletter-facebook\\/facebook.php\"\n    },\n    {\n        \"id\": \"76\",\n        \"children_fileid\": \"\",\n        \"version\": \"1.1.6\",\n        \"title\": \"Bounce Management\",\n        \"description\": \"This experimental extension manages the bounces and keeps the list clean of invalid addresses.\",\n        \"slug\": \"newsletter-bounce\",\n        \"type\": \"extension\",\n        \"url\": \"https:\\/\\/www.thenewsletterplugin.com\\/premium\",\n        \"image\": \"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2017\\/10\\/ic_settings_backup_restore_32px.png\",\n        \"status\": \"2\",\n        \"free\": false,\n        \"downloadable\": false,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=76\",\n        \"wp_slug\": \"newsletter-bounce\\/bounce.php\"\n    },\n    {\n        \"id\": \"79\",\n        \"children_fileid\": \"\",\n        \"version\": \"1.1.4\",\n        \"title\": \"Events Manager Integration\",\n        \"description\": \"Integrates with Events Manager plugin to add events in your regular and automated newsletters.\",\n        \"slug\": \"newsletter-events\",\n        \"type\": \"integration\",\n        \"url\": \"https:\\/\\/www.thenewsletterplugin.com\\/documentation\\/addons\\/integrations\\/events-extension\\/\",\n        \"image\": \"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2019\\/02\\/events-manager-icon.png\",\n        \"status\": \"2\",\n        \"free\": false,\n        \"downloadable\": false,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=79\",\n        \"wp_slug\": \"newsletter-events\\/events.php\"\n    },\n    {\n        \"id\": \"82\",\n        \"children_fileid\": null,\n        \"version\": \"1.0.0\",\n        \"title\": \"Translatepress Bridge\",\n        \"description\": \"Enables few multilanguage Newsletter features for who is using Translatepress.\",\n        \"slug\": \"newsletter-translatepress\",\n        \"type\": \"integration\",\n        \"url\": \"https:\\/\\/www.thenewsletterplugin.com\\/account\",\n        \"image\": \"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2018\\/09\\/translatepress.png\",\n        \"status\": \"3\",\n        \"free\": true,\n        \"downloadable\": true,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=82\",\n        \"wp_slug\": \"newsletter-translatepress\\/translatepress.php\"\n    },\n    {\n        \"id\": \"86\",\n        \"children_fileid\": \"\",\n        \"version\": \"1.2.4\",\n        \"title\": \"Advanced Import\",\n        \"description\": \"An advanced import system with extended profile fields and mapping (beta version).\",\n        \"slug\": \"newsletter-import\",\n        \"type\": \"extension\",\n        \"url\": \"https:\\/\\/www.thenewsletterplugin.com\\/account\",\n        \"image\": \"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/file-upload-88.png\",\n        \"status\": \"3\",\n        \"free\": true,\n        \"downloadable\": true,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=86\",\n        \"wp_slug\": \"newsletter-import\\/import.php\"\n    },\n    {\n        \"id\": \"88\",\n        \"children_fileid\": \"\",\n        \"version\": \"1.1.5\",\n        \"title\": \"The Events Calendar (by Tribe)\",\n        \"description\": \"Adds a composer block which extracts the events managed by The Events Calendar plugin.\",\n        \"slug\": \"newsletter-tribeevents\",\n        \"type\": \"integration\",\n        \"url\": \"https:\\/\\/www.thenewsletterplugin.com\\/documentation\\/tribeevents-extension\",\n        \"image\": \"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2019\\/02\\/tribe-event-calendar-icon.png\",\n        \"status\": \"2\",\n        \"free\": false,\n        \"downloadable\": false,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=88\",\n        \"wp_slug\": \"newsletter-tribeevents\\/tribeevents.php\"\n    },\n    {\n        \"id\": \"58\",\n        \"children_fileid\": \"\",\n        \"version\": \"4.0.5\",\n        \"title\": \"Public Archive\",\n        \"description\": \"Generates a public archive of the sent newsletters for your blog.\",\n        \"slug\": \"newsletter-archive\",\n        \"type\": \"extension\",\n        \"url\": \"http:\\/\\/www.thenewsletterplugin.com\\/plugins\\/newsletter\\/newsletter-archive-extension\",\n        \"image\": \"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/files-32px-outline_archive-3d-content.png\",\n        \"status\": \"3\",\n        \"free\": true,\n        \"downloadable\": true,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=58\",\n        \"wp_slug\": \"newsletter-archive\\/archive.php\"\n    },\n    {\n        \"id\": \"71\",\n        \"children_fileid\": \"\",\n        \"version\": \"1.0.9\",\n        \"title\": \"Locked Content\",\n        \"description\": \"Boost your subscription rate locking out your premium contents with a subscription form.\",\n        \"slug\": \"newsletter-lock\",\n        \"type\": \"extension\",\n        \"url\": \"https:\\/\\/www.thenewsletterplugin.com\\/account\",\n        \"image\": \"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2017\\/04\\/ui-32px-outline-1_lock-open.png\",\n        \"status\": \"3\",\n        \"free\": true,\n        \"downloadable\": true,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=71\",\n        \"wp_slug\": \"newsletter-lock\\/lock.php\"\n    },\n    {\n        \"id\": \"73\",\n        \"children_fileid\": \"\",\n        \"version\": \"1.2.7\",\n        \"title\": \"WP Users Integration\",\n        \"description\": \"Connects the WordPress user registration with Newsletter subscription. Optionally imports all WP users as subscribers.\",\n        \"slug\": \"newsletter-wpusers\",\n        \"type\": \"integration\",\n        \"url\": \"https:\\/\\/www.thenewsletterplugin.com\\/account\",\n        \"image\": \"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2017\\/04\\/media-32px-outline-2_speaker-01.png\",\n        \"status\": \"3\",\n        \"free\": true,\n        \"downloadable\": true,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=73\",\n        \"wp_slug\": \"newsletter-wpusers\\/wpusers.php\"\n    },\n    {\n        \"id\": \"51\",\n        \"children_fileid\": \"\",\n        \"version\": \"4.1.3\",\n        \"title\": \"Feed by Mail\",\n        \"description\": \"Automatically creates and sends newsletters with the latest blog posts.\",\n        \"slug\": \"newsletter-feed\",\n        \"type\": \"legacy\",\n        \"url\": \"https:\\/\\/www.thenewsletterplugin.com\\/feed-by-mail-extension\",\n        \"image\": \"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/ui-32px-outline-3_playlist.png\",\n        \"status\": \"2\",\n        \"free\": false,\n        \"downloadable\": false,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=51\",\n        \"wp_slug\": \"newsletter-feed\\/feed.php\"\n    },\n    {\n        \"id\": \"53\",\n        \"children_fileid\": null,\n        \"version\": \"2.2.0\",\n        \"title\": \"Popup\",\n        \"description\": \"Configurable popup system to increase the subscription rate.\",\n        \"slug\": \"newsletter-popup\",\n        \"type\": \"legacy\",\n        \"url\": \"https:\\/\\/www.thenewsletterplugin.com\\/plugins\\/newsletter\\/popup-module\",\n        \"image\": \"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/ui-32px-outline-3_widget.png\",\n        \"status\": \"2\",\n        \"free\": false,\n        \"downloadable\": false,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=53\",\n        \"wp_slug\": \"newsletter-popup\\/popup.php\"\n    },\n    {\n        \"id\": \"54\",\n        \"children_fileid\": \"\",\n        \"version\": \"4.1.3\",\n        \"title\": \"Followup\",\n        \"description\": \"Automated email series sent upon subscription at defined intervals.\",\n        \"slug\": \"newsletter-followup\",\n        \"type\": \"legacy\",\n        \"url\": \"https:\\/\\/www.thenewsletterplugin.com\\/plugins\\/newsletter\\/follow-up-module\",\n        \"image\": \"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/ui-32px-outline-2_time-countdown.png\",\n        \"status\": \"2\",\n        \"free\": false,\n        \"downloadable\": false,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=54\",\n        \"wp_slug\": \"newsletter-followup\\/followup.php\"\n    },\n    {\n        \"id\": \"48\",\n        \"children_fileid\": \"\",\n        \"version\": \"4.2.3\",\n        \"title\": \"SendGrid\",\n        \"description\": \"Integrates the SendGrid delivery system and bounce detection.\",\n        \"slug\": \"newsletter-sendgrid\",\n        \"type\": \"delivery\",\n        \"url\": \"http:\\/\\/www.thenewsletterplugin.com\\/plugins\\/newsletter\\/sendgrid-module\",\n        \"image\": \"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/design-32px-outline_newsletter-dev.png\",\n        \"status\": \"2\",\n        \"free\": false,\n        \"downloadable\": false,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=48\",\n        \"wp_slug\": \"newsletter-sendgrid\\/sendgrid.php\"\n    },\n    {\n        \"id\": \"49\",\n        \"children_fileid\": \"\",\n        \"version\": \"4.0.0\",\n        \"title\": \"Mandrill\",\n        \"description\": \"Integrates the Mandrill delivery system and bounce detection.\",\n        \"slug\": \"newsletter-mandrill\",\n        \"type\": \"legacy\",\n        \"url\": \"http:\\/\\/www.thenewsletterplugin.com\\/plugins\\/newsletter\\/mandrill-module\",\n        \"image\": \"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/design-32px-outline_newsletter-dev.png\",\n        \"status\": \"2\",\n        \"free\": false,\n        \"downloadable\": false,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=49\",\n        \"wp_slug\": \"newsletter-mandrill\\/mandrill.php\"\n    },\n    {\n        \"id\": \"52\",\n        \"children_fileid\": \"\",\n        \"version\": \"4.0.8\",\n        \"title\": \"Mailjet\",\n        \"description\": \"Integrates the Mailjet delivery system and bounce detection.\",\n        \"slug\": \"newsletter-mailjet\",\n        \"type\": \"delivery\",\n        \"url\": \"http:\\/\\/www.thenewsletterplugin.com\\/plugins\\/newsletter\\/mailjet-module\",\n        \"image\": \"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/design-32px-outline_newsletter-dev.png\",\n        \"status\": \"2\",\n        \"free\": false,\n        \"downloadable\": false,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=52\",\n        \"wp_slug\": \"newsletter-mailjet\\/mailjet.php\"\n    },\n    {\n        \"id\": \"60\",\n        \"children_fileid\": \"\",\n        \"version\": \"1.3.2\",\n        \"title\": \"Amazon SES\",\n        \"description\": \"Integrates Newsletter with Amazon SES service for sending emails and processing bounces.\",\n        \"slug\": \"newsletter-amazon\",\n        \"type\": \"delivery\",\n        \"url\": \"http:\\/\\/www.thenewsletterplugin.com\\/plugins\\/newsletter\\/amazon-ses-extension\",\n        \"image\": \"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/design-32px-outline_newsletter-dev.png\",\n        \"status\": \"2\",\n        \"free\": false,\n        \"downloadable\": false,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=60\",\n        \"wp_slug\": \"newsletter-amazon\\/amazon.php\"\n    },\n    {\n        \"id\": \"65\",\n        \"children_fileid\": \"\",\n        \"version\": \"4.1.3\",\n        \"title\": \"Mailgun\",\n        \"description\": \"Integrates the Mailgun delivery system and bounce detection.\",\n        \"slug\": \"newsletter-mailgun\",\n        \"type\": \"delivery\",\n        \"url\": \"http:\\/\\/www.thenewsletterplugin.com\\/plugins\\/newsletter\\/mailgun-module\",\n        \"image\": \"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/design-32px-outline_newsletter-dev.png\",\n        \"status\": \"2\",\n        \"free\": false,\n        \"downloadable\": false,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=65\",\n        \"wp_slug\": \"newsletter-mailgun\\/mailgun.php\"\n    },\n    {\n        \"id\": \"66\",\n        \"children_fileid\": \"\",\n        \"version\": \"1.1.0\",\n        \"title\": \"ElasticEmail\",\n        \"description\": \"ElasticEmail integration\",\n        \"slug\": \"newsletter-elasticemail\",\n        \"type\": \"delivery\",\n        \"url\": \"http:\\/\\/www.thenewsletterplugin.com\\/premium\",\n        \"image\": \"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/design-32px-outline_newsletter-dev.png\",\n        \"status\": \"2\",\n        \"free\": false,\n        \"downloadable\": false,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=66\",\n        \"wp_slug\": \"newsletter-elasticemail\\/elasticemail.php\"\n    },\n    {\n        \"id\": \"69\",\n        \"children_fileid\": \"\",\n        \"version\": \"1.1.7\",\n        \"title\": \"SparkPost\",\n        \"description\": \"Integrates Newsletter with the SparkPost mail delivery service and bounce detection.\",\n        \"slug\": \"newsletter-sparkpost\",\n        \"type\": \"delivery\",\n        \"url\": \"https:\\/\\/www.thenewsletterplugin.com\\/premium\",\n        \"image\": \"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/design-32px-outline_newsletter-dev.png\",\n        \"status\": \"2\",\n        \"free\": false,\n        \"downloadable\": false,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=69\",\n        \"wp_slug\": \"newsletter-sparkpost\\/sparkpost.php\"\n    },\n    {\n        \"id\": \"56\",\n        \"children_fileid\": \"\",\n        \"version\": \"2.2.0\",\n        \"title\": \"Grabber\",\n        \"description\": \"Experimental! General subscription grabber from other forms. Requires technical skills.\",\n        \"slug\": \"newsletter-grabber\",\n        \"type\": \"legacy\",\n        \"url\": \"http:\\/\\/www.thenewsletterplugin.com\\/plugins\\/newsletter\\/grabber-module\",\n        \"image\": \"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/placeholder.png\",\n        \"status\": \"4\",\n        \"free\": true,\n        \"downloadable\": true,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=56\",\n        \"wp_slug\": \"newsletter-grabber\\/grabber.php\"\n    },\n    {\n        \"id\": \"96\",\n        \"children_fileid\": \"\",\n        \"version\": \"1.0.1\",\n        \"title\": \"Office 365 Header Removal\",\n        \"description\": \"This addon removes hidden headers from outgoing email to avoid Office365 SMTP block (or attempt to...). Install ONLY if you\'re using Office365 SMTP with an SMTP plugin!\",\n        \"slug\": \"newsletter-office365\",\n        \"type\": \"delivery\",\n        \"url\": \"https:\\/\\/www.thenewsletterplugin.com\\/account\",\n        \"image\": \"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/design-32px-outline_newsletter-dev.png\",\n        \"status\": \"3\",\n        \"free\": true,\n        \"downloadable\": true,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=96\",\n        \"wp_slug\": \"newsletter-office365\\/office365.php\"\n    }\n]','no'),(1473,'ct_page_options-transients','a:2:{s:14:\"changed_values\";a:0:{}s:9:\"last_save\";i:1621470130;}','yes'),(1709,'woocommerce_tracker_ua','a:4:{i:0;s:121:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36\";i:1;s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36\";i:2;s:82:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:78.0) Gecko/20100101 Firefox/78.0\";i:3;s:121:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36\";}','yes');
/*!40000 ALTER TABLE `wp9s_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp9s_postmeta`
--

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

--
-- Dumping data for table `wp9s_postmeta`
--

LOCK TABLES `wp9s_postmeta` WRITE;
/*!40000 ALTER TABLE `wp9s_postmeta` DISABLE KEYS */;
INSERT INTO `wp9s_postmeta` VALUES (1,237,'_wp_attached_file','2019/11/author-01.jpg'),(2,237,'_wp_attachment_wp_user_avatar','2'),(3,238,'_wp_attached_file','2019/11/author-02.jpg'),(4,238,'_wp_attachment_wp_user_avatar','3'),(5,397,'_wp_attached_file','2019/11/testimonial-01.jpg'),(6,398,'_wp_attached_file','2019/11/testimonial-02.jpg'),(7,399,'_wp_attached_file','2019/11/testimonial-03.jpg'),(8,400,'_wp_attached_file','2019/11/testimonial-04.jpg'),(9,401,'_wp_attached_file','2019/11/testimonial-05.jpg'),(10,402,'_wp_attached_file','2019/11/testimonial-06.jpg'),(11,997,'_wp_attached_file','2019/11/client-01.png'),(12,998,'_wp_attached_file','2019/11/client-02.png'),(13,999,'_wp_attached_file','2019/11/client-03.png'),(14,1000,'_wp_attached_file','2019/11/client-04.png'),(15,1512,'_wp_attached_file','2019/11/bg-page-title.jpg'),(16,1513,'_wp_attached_file','2019/10/logo-footer.png'),(17,1516,'_wp_attached_file','2019/10/bg-footer1.png'),(18,1522,'_wp_attached_file','2019/10/app-store.png'),(19,1524,'_wp_attached_file','2019/10/google-play.png'),(20,1530,'_wp_attached_file','2019/11/theme-01.jpg'),(21,1531,'_wp_attached_file','2019/11/theme-02.jpg'),(22,1532,'_wp_attached_file','2019/11/theme-03.jpg'),(23,1533,'_wp_attached_file','2019/11/theme-04.jpg'),(24,1534,'_wp_attached_file','2019/11/theme-05.jpg'),(25,1535,'_wp_attached_file','2019/11/theme-06.jpg'),(26,1536,'_wp_attached_file','2019/11/theme-07.jpg'),(27,1537,'_wp_attached_file','2019/11/theme-08.jpg'),(28,1538,'_wp_attached_file','2019/11/theme-09.jpg'),(29,1539,'_wp_attached_file','2019/11/theme-10.jpg'),(30,1540,'_wp_attached_file','2019/11/theme-11.jpg'),(31,1541,'_wp_attached_file','2019/11/theme-12.jpg'),(32,1542,'_wp_attached_file','2019/11/theme-13.jpg'),(33,1543,'_wp_attached_file','2019/11/theme-14.jpg'),(34,1552,'_wp_attached_file','2019/12/gallery-01.jpg'),(35,1553,'_wp_attached_file','2019/12/gallery-02.jpg'),(36,1554,'_wp_attached_file','2019/12/gallery-03.jpg'),(37,1555,'_wp_attached_file','2019/12/gallery-04.jpg'),(38,1556,'_wp_attached_file','2019/12/gallery-05.jpg'),(39,1557,'_wp_attached_file','2019/12/gallery-06.jpg'),(40,1558,'_wp_attached_file','2019/12/favicon.png'),(41,1568,'_wp_attached_file','2019/12/contact-about1.png'),(42,1656,'_wp_attached_file','2019/12/testimonial-07.jpg'),(43,1657,'_wp_attached_file','2019/12/testimonial-08.jpg'),(44,1658,'_wp_attached_file','2019/12/testimonial-09.jpg'),(45,1678,'_wp_attached_file','2019/12/client-05.png'),(46,1690,'_wp_attached_file','2019/12/team-01.jpg'),(47,1691,'_wp_attached_file','2019/12/team-02.jpg'),(48,1692,'_wp_attached_file','2019/12/team-03.jpg'),(49,1693,'_wp_attached_file','2019/12/team-04.jpg'),(50,1706,'_wp_attached_file','2019/12/team-single.jpg'),(51,1860,'_wp_attached_file','2019/12/theme-15.jpg'),(52,1877,'_wp_attached_file','2019/12/about1.png'),(53,1892,'_wp_attached_file','2019/12/signature.png'),(54,1896,'_wp_attached_file','2019/12/about-gap.png'),(55,1925,'_wp_attached_file','2019/12/BlackBlazer.jpg'),(56,1926,'_wp_attached_file','2019/12/BlackDress.jpg'),(57,1927,'_wp_attached_file','2019/12/BlackShoes.jpg'),(58,1928,'_wp_attached_file','2019/12/BlackSuit.jpg'),(59,1929,'_wp_attached_file','2019/12/CamiSkaterFront.jpg'),(60,1930,'_wp_attached_file','2019/12/ChelseaBoots.jpg'),(61,1931,'_wp_attached_file','2019/12/FlatShoes.jpg'),(62,1932,'_wp_attached_file','2019/12/GreyShirt.jpg'),(63,1933,'_wp_attached_file','2019/12/LightBlueShirt.jpg'),(64,1934,'_wp_attached_file','2019/12/MonochromeCamiMidi.jpg'),(65,1935,'_wp_attached_file','2019/12/PureSilkBlackTie.jpg'),(66,1936,'_wp_attached_file','2019/12/PureSilkBlueTie.jpg'),(67,1937,'_wp_attached_file','2019/12/PureSilkGreyTie.jpg'),(68,1938,'_wp_attached_file','2019/12/SlimFitBrightBlue.jpg'),(69,1939,'_wp_attached_file','2019/12/WhiteTailoredBlazer.jpg'),(70,1940,'_wp_attached_file','2019/12/theme-16.jpg'),(71,1941,'_wp_attached_file','2019/12/theme-17.jpg'),(72,1942,'_wp_attached_file','2019/12/theme-18.jpg'),(73,1943,'_wp_attached_file','2019/12/theme-19.jpg'),(74,1944,'_wp_attached_file','2019/12/theme-20.jpg'),(75,1945,'_wp_attached_file','2019/12/theme-21.jpg'),(76,1946,'_wp_attached_file','2019/12/theme-22.jpg'),(77,1985,'_wp_attached_file','2019/12/icon-google.png'),(78,1988,'_wp_attached_file','2019/12/icon-career.png'),(79,1989,'_wp_attached_file','2019/12/icon-codecanyon.png'),(80,1990,'_wp_attached_file','2019/12/icon-envato.png'),(81,1991,'_wp_attached_file','2019/12/icon-themeforest.png'),(82,2000,'_wp_attached_file','2019/12/bg-slider-01.jpg'),(83,2006,'_wp_attached_file','2019/12/slider-logo-01.png'),(84,2006,'_wp_attachment_image_alt','slider-logo-01'),(85,2007,'_wp_attached_file','2019/12/bg-slider-02.jpg'),(86,2008,'_wp_attached_file','2019/12/bg-slider-03.jpg'),(87,2046,'_wp_attached_file','2019/12/about-02.png'),(88,2056,'_wp_attached_file','2019/12/bg-section-01.png'),(89,2070,'_wp_attached_file','2019/12/bg-section-02.png'),(90,2074,'_wp_attached_file','2019/12/testimonial-10.jpg'),(91,2091,'_wp_attached_file','2019/12/bg-section-03.png'),(92,2114,'_wp_attached_file','2019/12/home-team-01.jpg'),(93,2115,'_wp_attached_file','2019/12/home-team-02.jpg'),(94,2116,'_wp_attached_file','2019/12/home-team-03.jpg'),(95,2117,'_wp_attached_file','2019/12/home-team-04.jpg'),(96,2125,'_wp_attached_file','2019/12/bg-section-04.png'),(97,2170,'_wp_attached_file','2019/12/home-author-01.jpg'),(98,2171,'_wp_attached_file','2019/12/home-author-02.jpg'),(99,2173,'_wp_attached_file','2019/12/award-01.jpg'),(100,2174,'_wp_attached_file','2019/12/award-02.jpg'),(101,2175,'_wp_attached_file','2019/12/award-03.jpg'),(102,2176,'_wp_attached_file','2019/12/award-04.jpg'),(103,2177,'_wp_attached_file','2019/12/award-05.jpg'),(104,2178,'_wp_attached_file','2019/12/award-06.jpg'),(105,2179,'_wp_attached_file','2019/12/award-year.png'),(106,2180,'_wp_attached_file','2019/12/award.png'),(107,2306,'_wp_attached_file','2019/12/banner-01.png'),(108,2319,'_wp_attached_file','2019/12/signature-02.png'),(109,2382,'_wp_attached_file','2019/12/bg-section-04.jpg'),(110,2391,'_wp_attached_file','2019/12/bg-section-05.png'),(111,2405,'_wp_attached_file','2019/12/marker-01.png'),(112,2523,'_wp_attached_file','2019/12/bg-section-06.jpg'),(113,2528,'_wp_attached_file','2019/12/bg-section-07.png'),(114,2567,'_wp_attached_file','2019/12/h3-icon-01.png'),(115,2569,'_wp_attached_file','2019/12/h3-icon-02.png'),(116,2576,'_wp_attached_file','2019/12/about-03.png'),(117,2602,'_wp_attached_file','2019/12/bg-section-07-1.png'),(118,2606,'_wp_attached_file','2019/12/h3-team-02.png'),(119,2608,'_wp_attached_file','2019/12/h3-team-01.jpg'),(120,2609,'_wp_attached_file','2019/12/h3-team-03.jpg'),(121,2610,'_wp_attached_file','2019/12/h3-team-04.jpg'),(122,2630,'_wp_attached_file','2019/12/theme-23.jpg'),(123,3212,'_wp_attached_file','2020/01/h6-logo-dark.png'),(124,3213,'_wp_attached_file','2020/01/h6-logo-light.png'),(125,3270,'_wp_attached_file','2020/01/h6-bg-slider-01.jpg'),(126,3274,'_wp_attached_file','2020/01/h6-slider-img1.png'),(127,3275,'_wp_attached_file','2020/01/h6-shape1.png'),(128,3276,'_wp_attached_file','2020/01/h6-shape2.png'),(129,3277,'_wp_attached_file','2020/01/h6-shape3.png'),(130,3278,'_wp_attached_file','2020/01/h6-shape4.png'),(131,3282,'_wp_attached_file','2020/01/h6-bg-section-01.png'),(132,3292,'_wp_attached_file','2020/01/h6-icon-service1.png'),(133,3294,'_wp_attached_file','2020/01/h6-icon-service2.png'),(134,3295,'_wp_attached_file','2020/01/h6-icon-service3.png'),(135,3304,'_wp_attached_file','2020/02/h6-bg-section-01.jpg'),(136,3315,'_wp_attached_file','2020/02/h6-counter-icon1.png'),(137,3316,'_wp_attached_file','2020/02/h6-counter-icon2.png'),(138,3317,'_wp_attached_file','2020/02/h6-counter-icon3.png'),(139,3318,'_wp_attached_file','2020/02/h6-counter-icon4.png'),(140,3348,'_wp_attached_file','2020/02/h6-shape-5.png'),(141,3349,'_wp_attached_file','2020/02/h6-shape-6.png'),(142,3350,'_wp_attached_file','2020/02/h6-shape-7.png'),(143,3364,'_wp_attached_file','2020/02/h6-service-icon4.png'),(144,3365,'_wp_attached_file','2020/02/h6-service-icon5.png'),(145,3366,'_wp_attached_file','2020/02/h6-service-icon6.png'),(146,3367,'_wp_attached_file','2020/02/h6-service-icon7.png'),(147,3368,'_wp_attached_file','2020/02/h6-service-icon8.png'),(148,3369,'_wp_attached_file','2020/02/h6-service-icon9.png'),(149,3376,'_wp_attached_file','2020/02/demo9.jpg'),(150,3383,'_wp_attached_file','2020/02/h6-team1.jpg'),(151,3399,'_wp_attached_file','2020/02/h6-team2.jpg'),(152,3400,'_wp_attached_file','2020/02/h6-team3.jpg'),(153,3401,'_wp_attached_file','2020/02/h6-team4.jpg'),(154,3411,'_wp_attached_file','2020/02/h6-bg-section-02.png'),(155,3468,'_wp_attached_file','2020/02/h6-tax.png'),(156,3614,'_wp_attached_file','2020/02/theme23.jpg'),(157,3628,'_wp_attached_file','2020/02/about-section-01.jpg'),(158,3663,'_wp_attached_file','2020/02/about4-icon1.png'),(159,3664,'_wp_attached_file','2020/02/about4-icon2.png'),(160,3665,'_wp_attached_file','2020/02/about4-icon3.png'),(161,3669,'_wp_attached_file','2020/02/about4-bg-section1.png'),(162,3679,'_wp_attached_file','2020/02/h4-about1.png'),(163,3681,'_wp_attached_file','2020/02/about4-shape1.png'),(164,3852,'_wp_attached_file','2020/02/contact-v4.png'),(165,3937,'_wp_attached_file','2020/02/h4-about1-1.png'),(166,3945,'_wp_attached_file','woocommerce-placeholder.png'),(167,20,'_wp_page_template','default'),(168,20,'_elementor_edit_mode','builder'),(169,20,'_elementor_template_type','wp-post'),(170,20,'_elementor_version','2.9.14'),(171,20,'post_views_count','0'),(172,20,'_elementor_data','[{\"id\":\"6e8fc7d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#0e0e0e\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"82\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer.png\",\"id\":87},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer1.png\",\"id\":1516},\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"e15e108\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.300000000000000710542735760100185871124267578125},\"elements\":[{\"id\":\"6e6de52\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/10\\/logo-footer.png\",\"id\":1513},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"47\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9850e24\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"30 Commercial Road<br\\/> Fratton, Australia\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"title\":\"\",\"icon_type\":\"icon\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"icon_box_color\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"content\":\"1-888-452-1505\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"title\":\"\",\"icon_type\":\"icon\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"icon_box_color\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"icon_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"4e199a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Open Hours:\",\"text_color\":\"#fe9a00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"ct-text-gradient\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cbefef9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Mon - Sat: 8 am - 5 pm,<br\\/>\\nSunday: CLOSED\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b5c9012\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.6640000000000014779288903810083866119384765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b58ffee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Links\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"7983775\",\"elType\":\"widget\",\"settings\":{\"menu\":\"3\",\"style\":\"tow-col-light\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"}],\"isInner\":false},{\"id\":\"8e70ce0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7000000000000028421709430404007434844970703125},\"elements\":[{\"id\":\"fdb760d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"30cb1de\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Send us a newsletter to get update\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e7cbaa1\",\"elType\":\"widget\",\"settings\":{\"id\":\"default\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"882a5b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/10\\/app-store.png\",\"id\":1522},\"image_size\":\"full\",\"align\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"#\",\"is_external\":\"on\",\"nofollow\":\"\"},\"_css_classes\":\"el-inline\",\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"096f9da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/10\\/google-play.png\",\"id\":1524},\"image_size\":\"full\",\"align\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"#\",\"is_external\":\"on\",\"nofollow\":\"\"},\"_css_classes\":\"el-inline\",\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"69767c7\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"d40f6fc\",\"ct_icon\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5da1c22\",\"ct_icon\":{\"value\":\"fab fa-behance\",\"library\":\"fa-brands\"}}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0e42c5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#242323\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\"},\"elements\":[{\"id\":\"363ded0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f8849b1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span class=\\\"ct-year\\\">2019<\\/span> \\u00a9 All rights reserved by <a href=\\\"https:\\/\\/themeforest.net\\/user\\/case-themes\\/portfolio\\\" target=\\\"_blank\\\" rel=\\\"nofollow noopener\\\">CaseThemes<\\/a>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"ct-copyright\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(173,20,'slide_template',''),(174,20,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:3;s:10:\"image_size\";i:3;s:7:\"link_to\";i:3;s:4:\"link\";i:3;s:5:\"align\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:3:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;s:10:\"icon_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:2:{s:4:\"menu\";i:1;s:5:\"style\";i:1;}}}}s:13:\"ct_newsletter\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:15:\"stretch_section\";i:2;s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:24:\"background_gradient_type\";i:1;}s:26:\"section_background_overlay\";a:5:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}}'),(175,1214,'_elementor_edit_mode','builder'),(176,1214,'_elementor_template_type','section'),(177,1214,'_elementor_version','2.8.2'),(178,1214,'_wp_page_template','default'),(179,1214,'_elementor_data','[{\"id\":\"c6873c8\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"9c326ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9c811c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Plan\",\"description\":\"The argument in favor of using to filler text goes something.\",\"content_list\":[{\"content\":\"<del>24\\/7 system monitoring<\\/del>\",\"_id\":\"351129b\",\"active\":\"no\"},{\"content\":\"Security management\",\"_id\":\"873275c\",\"active\":\"yes\"},{\"content\":\"<del>Secure finance backup<\\/del>\",\"_id\":\"730077f\",\"active\":\"no\"},{\"content\":\"<del>Remote support<\\/del>\",\"_id\":\"cb31418\",\"active\":\"no\"}],\"price\":\"$29\",\"time\":\"\\/ monthly\",\"button_text\":\"Get a free trial\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"ct_animate\":\"wow fadeIn\",\"_css_classes\":\"animate-time1\"},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false},{\"id\":\"ba9c4e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d726b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard Plan\",\"description\":\"The argument in favor of using to filler text goes something.\",\"content_list\":[{\"content\":\"24\\/7 system monitoring\",\"_id\":\"351129b\",\"active\":\"no\"},{\"content\":\"<del>Security management<\\/del>\",\"_id\":\"873275c\",\"active\":\"yes\"},{\"content\":\"Secure finance backup\",\"_id\":\"730077f\",\"active\":\"no\"},{\"content\":\"<del>Remote support<\\/del>\",\"_id\":\"cb31418\",\"active\":\"yes\"}],\"price\":\"$49\",\"time\":\"\\/ monthly\",\"button_text\":\"Get a free trial\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_css_classes\":\"animate-time2\",\"recommended\":\"Recommended\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false},{\"id\":\"9c8bcbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2836832\",\"elType\":\"widget\",\"settings\":{\"title\":\"Extended Plan\",\"description\":\"The argument in favor of using to filler text goes something.\",\"content_list\":[{\"content\":\"24\\/7 system monitoring\",\"_id\":\"351129b\",\"active\":\"yes\"},{\"content\":\"Security management\",\"_id\":\"873275c\",\"active\":\"no\"},{\"content\":\"Secure finance backup\",\"_id\":\"730077f\",\"active\":\"no\"},{\"content\":\"Remote support\",\"_id\":\"cb31418\",\"active\":\"yes\"}],\"price\":\"$59\",\"time\":\"\\/ monthly\",\"button_text\":\"Get a free trial\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_css_classes\":\"animate-time3\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false}],\"isInner\":false}]'),(180,1214,'post_views_count','10'),(181,1214,'_elementor_controls_usage','a:3:{s:10:\"ct_pricing\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_list\";a:8:{s:5:\"title\";i:3;s:11:\"description\";i:3;s:12:\"content_list\";i:3;s:5:\"price\";i:3;s:4:\"time\";i:3;s:11:\"button_text\";i:3;s:11:\"button_link\";i:3;s:11:\"recommended\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:10:\"ct_animate\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:3;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:13:\"margin_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}}'),(182,1217,'_elementor_edit_mode','builder'),(183,1217,'_elementor_template_type','section'),(184,1217,'_elementor_version','2.8.5'),(185,1217,'_wp_page_template','default'),(186,1217,'_elementor_data','[{\"id\":\"c6873c8\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"9c326ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9c811c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Plan\",\"description\":\"The argument in favor of using to filler text goes something.\",\"content_list\":[{\"content\":\"<del>24\\/7 system monitoring<\\/del>\",\"_id\":\"351129b\",\"active\":\"no\"},{\"content\":\"Security management\",\"_id\":\"873275c\",\"active\":\"yes\"},{\"content\":\"<del>Secure finance backup<\\/del>\",\"_id\":\"730077f\",\"active\":\"no\"},{\"content\":\"<del>Remote support<\\/del>\",\"_id\":\"cb31418\",\"active\":\"no\"}],\"price\":\"$49\",\"time\":\"\\/ year\",\"button_text\":\"Get a free trial\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"ct_animate\":\"wow fadeIn\",\"_css_classes\":\"animate-time1\"},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false},{\"id\":\"ba9c4e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d726b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard Plan\",\"description\":\"The argument in favor of using to filler text goes something.\",\"content_list\":[{\"content\":\"24\\/7 system monitoring\",\"_id\":\"351129b\",\"active\":\"no\"},{\"content\":\"<del>Security management<\\/del>\",\"_id\":\"873275c\",\"active\":\"yes\"},{\"content\":\"Secure finance backup\",\"_id\":\"730077f\",\"active\":\"no\"},{\"content\":\"<del>Remote support<\\/del>\",\"_id\":\"cb31418\",\"active\":\"yes\"}],\"price\":\"$89\",\"time\":\"\\/ year\",\"button_text\":\"Get a free trial\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_css_classes\":\"animate-time2\",\"recommended\":\"Recommended\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false},{\"id\":\"9c8bcbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2836832\",\"elType\":\"widget\",\"settings\":{\"title\":\"Extended Plan\",\"description\":\"The argument in favor of using to filler text goes something.\",\"content_list\":[{\"content\":\"24\\/7 system monitoring\",\"_id\":\"351129b\",\"active\":\"yes\"},{\"content\":\"Security management\",\"_id\":\"873275c\",\"active\":\"no\"},{\"content\":\"Secure finance backup\",\"_id\":\"730077f\",\"active\":\"no\"},{\"content\":\"Remote support\",\"_id\":\"cb31418\",\"active\":\"yes\"}],\"price\":\"$120\",\"time\":\"\\/ year\",\"button_text\":\"Get a free trial\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_css_classes\":\"animate-time3\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false}],\"isInner\":false}]'),(187,1217,'post_views_count','6'),(188,1217,'_elementor_controls_usage','a:3:{s:10:\"ct_pricing\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_list\";a:8:{s:5:\"title\";i:3;s:11:\"description\";i:3;s:12:\"content_list\";i:3;s:5:\"price\";i:3;s:4:\"time\";i:3;s:11:\"button_text\";i:3;s:11:\"button_link\";i:3;s:11:\"recommended\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:10:\"ct_animate\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:3;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:13:\"margin_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}}'),(189,1383,'_wp_page_template','default'),(190,1383,'_elementor_controls_usage','a:0:{}'),(191,1383,'slide_template','default'),(192,2331,'_elementor_edit_mode','builder'),(193,2331,'_elementor_template_type','page'),(194,2331,'_elementor_version','2.8.1'),(195,2331,'post_views_count','7'),(196,2331,'_wp_page_template','default'),(197,2331,'_elementor_data','[{\"id\":\"d1cb5f8\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"64b6c6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4cc1412\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Forging relationships between multi-national corporations, governments and global NGOs begins with connections between people. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b3cc92\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"Corporate\",\"percent\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"_id\":\"d6cdbb5\"},{\"title\":\"Commercial\",\"percent\":{\"unit\":\"%\",\"size\":98,\"sizes\":[]},\"_id\":\"49b0207\"},{\"title\":\"Business\",\"percent\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"4661156\"}],\"title_color\":\"#FFFFFF\",\"percent_color\":\"#FFFFFF\",\"bar_color\":\"#1A2742\"},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false}]'),(198,2331,'_elementor_controls_usage','a:4:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:14:\"ct_progressbar\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_title\";a:3:{s:11:\"title_color\";i:1;s:13:\"percent_color\";i:1;s:9:\"bar_color\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}}'),(199,2439,'_thumbnail_id','1540'),(200,2439,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(201,2439,'slide_template','default'),(202,2439,'_wp_page_template','default'),(203,2439,'case_study_content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(204,2439,'_elementor_edit_mode','builder'),(205,2439,'_elementor_template_type','wp-post'),(206,2439,'_elementor_version','2.8.1'),(207,2439,'post_views_count','0'),(208,2439,'_elementor_data','[{\"id\":\"340cbfdb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5cf659e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7372ea55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Case Studies\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2868029f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"2690ecfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1661230c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7fe8a59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53d82b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-11.jpg\",\"id\":1540},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"331e7402\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3deccc7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Data Analytics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"5318ff72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4ad17de4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e4da6f8\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42701245\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6ff1f6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"316e9fea\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(209,2440,'_thumbnail_id','1536'),(210,2440,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(211,2440,'slide_template','default'),(212,2440,'_wp_page_template','default'),(213,2440,'case_study_content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(214,2440,'_elementor_edit_mode','builder'),(215,2440,'_elementor_template_type','wp-post'),(216,2440,'_elementor_version','2.8.1'),(217,2440,'_elementor_data','[{\"id\":\"748ab28d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bc47420\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"aaa25c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Case Studies\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"660bb42\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"a0a7e9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73c74dc2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7bef493b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78442ac6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\",\"id\":1536},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"52b0f8e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1db03d66\",\"elType\":\"widget\",\"settings\":{\"title\":\"Data Analytics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"731d0d4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7270f1e7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e8e9f61\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"77721e8f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"71153a48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"658f843d\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(218,2441,'_thumbnail_id','1537'),(219,2441,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(220,2441,'slide_template','default'),(221,2441,'_wp_page_template','default'),(222,2441,'case_study_content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(223,2441,'_elementor_edit_mode','builder'),(224,2441,'_elementor_template_type','wp-post'),(225,2441,'_elementor_version','2.8.1'),(226,2441,'_elementor_data','[{\"id\":\"4b622493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"234c95f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d6d3f64\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Case Studies\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"34a4b4fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f4d334\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"208b03a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3559fe71\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4758f776\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-08.jpg\",\"id\":1537},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5bc799b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37f5a5ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Data Analytics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"386c6f32\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e5b84a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5386a630\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30fe9fbc\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1e70909a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3d3deaf6\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(227,2442,'_thumbnail_id','1541'),(228,2442,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(229,2442,'slide_template','default'),(230,2442,'_wp_page_template','default'),(231,2442,'case_study_content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(232,2442,'_elementor_edit_mode','builder'),(233,2442,'_elementor_template_type','wp-post'),(234,2442,'_elementor_version','2.8.1'),(235,2442,'_elementor_data','[{\"id\":\"76b672b7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2584e90f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"273f5ae9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Case Studies\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"5cb7221f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"1f5a4cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7059f46c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"54a846cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11e5f03c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-12.jpg\",\"id\":1541},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"677fe665\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"62c7ab10\",\"elType\":\"widget\",\"settings\":{\"title\":\"Data Analytics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"23bc3b25\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37bc7c6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1946a97a\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40019989\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"633b2d29\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"52624d78\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(236,2699,'_wp_page_template','default'),(237,2699,'slide_template',''),(238,2699,'_elementor_edit_mode','builder'),(239,2699,'_elementor_template_type','wp-post'),(240,2699,'_elementor_version','2.9.14'),(241,2699,'_elementor_data','[{\"id\":\"221fc7fb\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#0e0e0e\",\"padding\":{\"unit\":\"px\",\"top\":\"78\",\"right\":\"0\",\"bottom\":\"82\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-10.jpg\",\"id\":1539},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.939999999999999946709294817992486059665679931640625,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_color\":\"#0e0e0e\",\"z_index\":1},\"elements\":[{\"id\":\"3fd7959c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.300000000000000710542735760100185871124267578125},\"elements\":[{\"id\":\"f12b7c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/p-light-logo3.png\",\"id\":2704},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"47\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6d1e5283\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"30 Commercial Road<br\\/> Fratton, Australia\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"title\":\"\",\"icon_type\":\"icon\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"icon_box_color\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"content\":\"1-888-452-1505\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"title\":\"\",\"icon_type\":\"icon\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"icon_box_color\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"icon_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"589fe5e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Open Hours:\",\"text_color\":\"#6693f0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"ct-text-gradient\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"75161f7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Mon - Sat: 8 am - 5 pm,<br\\/>\\nSunday: CLOSED\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2077c2ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.6640000000000014779288903810083866119384765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3484ba51\",\"elType\":\"widget\",\"settings\":{\"title\":\"Links\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"67f13f95\",\"elType\":\"widget\",\"settings\":{\"menu\":\"3\",\"style\":\"tow-col-light\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"}],\"isInner\":false},{\"id\":\"48402a10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7000000000000028421709430404007434844970703125},\"elements\":[{\"id\":\"693a128e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"72a8ef47\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Send us a newsletter to get update\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"564aa42e\",\"elType\":\"widget\",\"settings\":{\"id\":\"default\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"7b23f24d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/10\\/app-store.png\",\"id\":1522},\"image_size\":\"full\",\"align\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"#\",\"is_external\":\"on\",\"nofollow\":\"\"},\"_css_classes\":\"el-inline\",\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"70850664\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/10\\/google-play.png\",\"id\":1524},\"image_size\":\"full\",\"align\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"#\",\"is_external\":\"on\",\"nofollow\":\"\"},\"_css_classes\":\"el-inline\",\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"60ba4189\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"d40f6fc\",\"ct_icon\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5da1c22\",\"ct_icon\":{\"value\":\"fab fa-behance\",\"library\":\"fa-brands\"}}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"372980f9\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#242323\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\"},\"elements\":[{\"id\":\"669250bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4519e259\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span class=\\\"ct-year\\\">2019<\\/span> \\u00a9 All rights reserved by <a class=\\\"link-preset\\\" href=\\\"https:\\/\\/themeforest.net\\/user\\/case-themes\\/portfolio\\\" target=\\\"_blank\\\" rel=\\\"nofollow noopener\\\">CaseThemes<\\/a>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"ct-copyright\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(242,2699,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:3;s:10:\"image_size\";i:3;s:7:\"link_to\";i:3;s:4:\"link\";i:3;s:5:\"align\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:3:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;s:10:\"icon_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:2:{s:4:\"menu\";i:1;s:5:\"style\";i:1;}}}}s:13:\"ct_newsletter\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:15:\"stretch_section\";i:2;s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:1;s:24:\"background_gradient_type\";i:1;}s:26:\"section_background_overlay\";a:5:{s:29:\"background_overlay_background\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:26:\"background_overlay_opacity\";i:1;s:24:\"background_overlay_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:1;s:7:\"z_index\";i:1;}}}}}'),(243,3201,'_wp_page_template','default'),(244,3201,'slide_template',''),(245,3201,'_elementor_edit_mode','builder'),(246,3201,'_elementor_template_type','wp-post'),(247,3201,'_elementor_version','3.1.4'),(248,3201,'_elementor_data','[{\"id\":\"200f95f0\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#0e0e0e\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"82\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.84999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_color\":\"#0E0E0E\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F10303\"},\"elements\":[{\"id\":\"75b76e32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33},\"elements\":[{\"id\":\"6eb9f72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Screen-Shot-2021-03-26-at-1.45.54-PM.png\",\"id\":4118},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d9a7164\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"509-326-1551\\u00a0\",\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"_id\":\"a8d66fd\",\"link\":{\"url\":\"tel: 509-326-1551\\u00a0\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"63a2907\",\"text\":\"systemamusement@comcast.net\",\"selected_icon\":{\"value\":\"fas fa-envelope-open-text\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"mailto: systemamusement@comcast.net\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mon - Sat: 8 am - 5 pm, Sunday: CLOSED\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"mailto: info@systemamusement.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf1ee1\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#E70707\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_self_align\":\"left\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"25a3a6a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"de96d27\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"ff13600\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"962c8f6\"}],\"shape\":\"circle\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false},{\"id\":\"28d85699\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ab3e769\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\",\"style\":\"style2\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6bf0c110\",\"elType\":\"widget\",\"settings\":{\"menu\":\"3\",\"style\":\"tow-col-light\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"}],\"isInner\":false},{\"id\":\"106b0ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.6640000000000014779288903810083866119384765625},\"elements\":[{\"id\":\"35f00ad3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\",\"style\":\"style2\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e644d17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Send us a newsletter to get update<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4032b906\",\"elType\":\"widget\",\"settings\":{\"id\":\"default\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"button_color1\":\"#4B58FF\",\"button_color2\":\"#4B58FF\"},\"elements\":[],\"widgetType\":\"ct_newsletter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1283aa2f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#0E0E0E\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EB0303\"},\"elements\":[{\"id\":\"2ee003fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"23c147c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p><span class=\\\"ct-year\\\">2021<\\/span> \\u00a9 System Amusements. All rights reserved.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"link_color\":\"#00C7D4\",\"link_color_hover\":\"#4B58FF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false}]'),(4761,4336,'_elementor_edit_mode','builder'),(4762,4336,'_elementor_template_type','wp-post'),(4763,4336,'_elementor_version','2.9.14'),(4764,4336,'_elementor_data','[{\"id\":\"200f95f0\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#0e0e0e\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"82\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.84999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_color\":\"#0E0E0E\"},\"elements\":[{\"id\":\"28d85699\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ab3e769\",\"elType\":\"widget\",\"settings\":{\"title\":\"Links\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6bf0c110\",\"elType\":\"widget\",\"settings\":{\"menu\":\"3\",\"style\":\"tow-col-light\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"}],\"isInner\":false},{\"id\":\"75b76e32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.6640000000000014779288903810083866119384765625},\"elements\":[{\"id\":\"6eb9f72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Screen-Shot-2021-03-26-at-1.45.54-PM.png\",\"id\":4118}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d9a7164\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"509-993-4955\",\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"_id\":\"a8d66fd\",\"link\":{\"url\":\"tel: 509-993-4955\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"63a2907\",\"text\":\"info@systemamusement.com\",\"selected_icon\":{\"value\":\"fas fa-envelope-open-text\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"mailto: info@systemamusement.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mon - Sat: 8 am - 5 pm, Sunday: CLOSED\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"mailto: info@systemamusement.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf1ee1\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#E70707\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_self_align\":\"left\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"106b0ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33},\"elements\":[{\"id\":\"35f00ad3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e644d17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Send us a newsletter to get update\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4032b906\",\"elType\":\"widget\",\"settings\":{\"id\":\"default\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_color1\":\"#4B58FF\",\"button_color2\":\"#4B58FF\"},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"1219b142\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"d40f6fc\",\"ct_icon\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5da1c22\",\"ct_icon\":{\"value\":\"fab fa-behance\",\"library\":\"fa-brands\"}}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1283aa2f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#0E0E0E\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"2ee003fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"23c147c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p><span class=\\\"ct-year\\\">2021<\\/span> \\u00a9 System Amusements. All rights reserved.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"link_color\":\"#00C7D4\",\"link_color_hover\":\"#4B58FF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false}]'),(4755,4335,'_wp_page_template','default'),(4756,4335,'_elementor_edit_mode','builder'),(4757,4335,'_elementor_template_type','wp-post'),(4758,4335,'_elementor_version','2.9.14'),(4759,4335,'_elementor_data','[{\"id\":\"200f95f0\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#0e0e0e\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"82\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\",\"id\":1538},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.84999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_color\":\"#0E0E0E\"},\"elements\":[{\"id\":\"75b76e32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.300000000000000710542735760100185871124267578125},\"elements\":[{\"id\":\"423d1374\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-logo-light.png\",\"id\":3213},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"47\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7280faf3\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"30 Commercial Road<br\\/> Fratton, Australia\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"title\":\"\",\"icon_type\":\"icon\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"icon_box_color\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"content\":\"1-888-452-1505\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"title\":\"\",\"icon_type\":\"icon\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"icon_box_color\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"icon_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"7f718835\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Open Hours:\",\"text_color\":\"#00C7D4\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7f83637e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Mon - Sat: 8 am - 5 pm,<br\\/>\\nSunday: CLOSED\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"28d85699\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.6640000000000014779288903810083866119384765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ab3e769\",\"elType\":\"widget\",\"settings\":{\"title\":\"Links\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6bf0c110\",\"elType\":\"widget\",\"settings\":{\"menu\":\"3\",\"style\":\"tow-col-light\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"}],\"isInner\":false},{\"id\":\"106b0ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7000000000000028421709430404007434844970703125},\"elements\":[{\"id\":\"35f00ad3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e644d17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Send us a newsletter to get update\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4032b906\",\"elType\":\"widget\",\"settings\":{\"id\":\"default\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_color1\":\"#4B58FF\",\"button_color2\":\"#4B58FF\"},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"108e4a02\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/10\\/app-store.png\",\"id\":1522},\"image_size\":\"full\",\"align\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"#\",\"is_external\":\"on\",\"nofollow\":\"\"},\"_css_classes\":\"el-inline\",\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"60b75838\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/10\\/google-play.png\",\"id\":1524},\"image_size\":\"full\",\"align\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"#\",\"is_external\":\"on\",\"nofollow\":\"\"},\"_css_classes\":\"el-inline\",\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1219b142\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"d40f6fc\",\"ct_icon\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5da1c22\",\"ct_icon\":{\"value\":\"fab fa-behance\",\"library\":\"fa-brands\"}}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1283aa2f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#0E0E0E\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"2ee003fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"23c147c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<span class=\\\"ct-year\\\">2019<\\/span> \\u00a9 All rights reserved by <a href=\\\"https:\\/\\/themeforest.net\\/user\\/case-themes\\/portfolio\\\" target=\\\"_blank\\\" rel=\\\"nofollow noopener\\\">CaseThemes<\\/a>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"link_color\":\"#00C7D4\",\"link_color_hover\":\"#4B58FF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false}]'),(250,3808,'_wp_page_template','default'),(251,3808,'slide_template',''),(252,3808,'_elementor_edit_mode','builder'),(253,3808,'_elementor_template_type','wp-post'),(254,3808,'_elementor_version','2.9.14'),(255,3808,'_elementor_data','[{\"id\":\"49a4799f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"css_classes\":\"footer-bg-content\"},\"elements\":[{\"id\":\"374b0b41\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"0\",\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dba57e6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"30\"},\"elements\":[{\"id\":\"3d69daec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":29,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true},{\"id\":\"116cf730\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":43.417000000000001591615728102624416351318359375,\"padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"15\",\"bottom\":\"24\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"cta-custom-bg box-shadow\",\"_inline_size_tablet\":55,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"15\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"67555815\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to learn details about us?\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"text_align_mobile\":\"left\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6431aa77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Download our brochure for details of our work\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6fda1b84\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.2469999999999998863131622783839702606201171875,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"59564dfb\",\"elType\":\"widget\",\"settings\":{\"style\":\"btn-round\",\"text\":\"Download Brochure\",\"align\":\"right\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37f870fd\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#0e0e0e\",\"padding\":{\"unit\":\"px\",\"top\":\"101\",\"right\":\"0\",\"bottom\":\"82\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-10.jpg\",\"id\":1539},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.939999999999999946709294817992486059665679931640625,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_color\":\"#0e0e0e\",\"z_index\":1},\"elements\":[{\"id\":\"47cfe808\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.300000000000000710542735760100185871124267578125},\"elements\":[{\"id\":\"2590587f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-logo-light.png\",\"id\":3213},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"47\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"61835cf\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"30 Commercial Road<br\\/> Fratton, Australia\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"title\":\"\",\"icon_type\":\"icon\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"icon_box_color\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"content\":\"1-888-452-1505\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"title\":\"\",\"icon_type\":\"icon\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"icon_box_color\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"icon_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"f1e6bb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Open Hours:\",\"text_color\":\"#6693f0\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"ct-text-gradient\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"27a101a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Mon - Sat: 8 am - 5 pm,<br\\/>\\nSunday: CLOSED\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2b4d822f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.6640000000000014779288903810083866119384765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17fbbbca\",\"elType\":\"widget\",\"settings\":{\"title\":\"Links\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"fef2821\",\"elType\":\"widget\",\"settings\":{\"menu\":\"3\",\"style\":\"tow-col-light\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"}],\"isInner\":false},{\"id\":\"62cbc3ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7000000000000028421709430404007434844970703125},\"elements\":[{\"id\":\"1b164699\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"28301162\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Send us a newsletter to get update\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1bd1a02f\",\"elType\":\"widget\",\"settings\":{\"id\":\"default\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"7f14558f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/10\\/app-store.png\",\"id\":1522},\"image_size\":\"full\",\"align\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"#\",\"is_external\":\"on\",\"nofollow\":\"\"},\"_css_classes\":\"el-inline\",\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"98c8da6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/10\\/google-play.png\",\"id\":1524},\"image_size\":\"full\",\"align\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"#\",\"is_external\":\"on\",\"nofollow\":\"\"},\"_css_classes\":\"el-inline\",\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2e711f96\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"d40f6fc\",\"ct_icon\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5da1c22\",\"ct_icon\":{\"value\":\"fab fa-behance\",\"library\":\"fa-brands\"}}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2650057e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#242323\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\"},\"elements\":[{\"id\":\"6191602c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65bbc359\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span class=\\\"ct-year\\\">2019<\\/span> \\u00a9 All rights reserved by <a class=\\\"link-preset\\\" href=\\\"https:\\/\\/themeforest.net\\/user\\/case-themes\\/portfolio\\\" target=\\\"_blank\\\" rel=\\\"nofollow noopener\\\">CaseThemes<\\/a>\",\"align\":\"center\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"ct-copyright\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(256,3808,'_elementor_controls_usage','a:11:{s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:7;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:3;s:11:\"css_classes\";i:1;s:14:\"padding_tablet\";i:1;s:14:\"padding_mobile\";i:3;s:6:\"margin\";i:2;s:7:\"z_index\";i:1;s:13:\"margin_mobile\";i:2;s:13:\"margin_tablet\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:6:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;}s:25:\"content_alignment_section\";a:1:{s:17:\"text_align_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:21:\"typography_typography\";i:5;s:20:\"typography_font_size\";i:5;s:12:\"align_mobile\";i:1;s:10:\"text_color\";i:4;s:22:\"typography_font_family\";i:4;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:4:{s:5:\"style\";i:1;s:4:\"text\";i:1;s:5:\"align\";i:1;s:12:\"align_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:2;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:1;s:24:\"background_gradient_type\";i:1;}s:26:\"section_background_overlay\";a:5:{s:29:\"background_overlay_background\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:26:\"background_overlay_opacity\";i:1;s:24:\"background_overlay_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:11:\"css_classes\";i:1;s:7:\"padding\";i:1;s:7:\"z_index\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:3;s:10:\"image_size\";i:3;s:7:\"link_to\";i:3;s:4:\"link\";i:3;s:5:\"align\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:3:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;s:10:\"icon_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:2:{s:4:\"menu\";i:1;s:5:\"style\";i:1;}}}}s:13:\"ct_newsletter\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}}'),(257,3872,'_elementor_edit_mode','builder'),(258,3872,'_elementor_template_type','section'),(259,3872,'_elementor_version','2.8.5'),(260,3872,'post_views_count','2'),(261,3872,'_wp_page_template','default'),(262,3872,'_elementor_data','[{\"id\":\"7f5cbd63\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"43484ebe\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b6dc952\",\"elType\":\"widget\",\"settings\":{\"title\":\"New Business\",\"description\":\"1-4 Employees\",\"content_list\":[{\"content\":\"<del>24\\/7 system monitoring<\\/del>\",\"_id\":\"351129b\",\"active\":\"no\"},{\"content\":\"Security management\",\"_id\":\"873275c\",\"active\":\"yes\"},{\"content\":\"<del>Secure finance backup<\\/del>\",\"_id\":\"730077f\",\"active\":\"no\"},{\"content\":\"<del>Remote support<\\/del>\",\"_id\":\"cb31418\",\"active\":\"no\"}],\"price\":\"$499\",\"time\":\"\\/ monthly\",\"button_text\":\"Try now\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_css_classes\":\"animate-time1\",\"layout\":\"2\",\"feature_l2\":\"Plus One-Time Bambee In-Depth HR Audit For: <cite>$500<\\/cite>\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/icon-pricing-01.png\",\"id\":3887},\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"}},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false},{\"id\":\"5ae0ebee\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"2a9c5d45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Small Business\",\"description\":\"5-19 Employees\",\"content_list\":[{\"content\":\"<del>24\\/7 system monitoring<\\/del>\",\"_id\":\"351129b\",\"active\":\"no\"},{\"content\":\"Security management\",\"_id\":\"873275c\",\"active\":\"yes\"},{\"content\":\"<del>Secure finance backup<\\/del>\",\"_id\":\"730077f\",\"active\":\"no\"},{\"content\":\"<del>Remote support<\\/del>\",\"_id\":\"cb31418\",\"active\":\"no\"}],\"price\":\"$599\",\"time\":\"\\/ monthly\",\"button_text\":\"Try now\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_css_classes\":\"animate-time1\",\"layout\":\"2\",\"feature_l2\":\"Plus One-Time Bambee In-Depth HR Audit For: <cite>$500<\\/cite>\",\"recommended\":\"Best choice\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/icon-pricing-02.png\",\"id\":3888},\"box_bg_color\":\"#000000\",\"content_color\":\"#FFFFFF\",\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"}},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false},{\"id\":\"609a9e8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"2b4161c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Growing Business\",\"description\":\"20-39 Employees\",\"content_list\":[{\"content\":\"<del>24\\/7 system monitoring<\\/del>\",\"_id\":\"351129b\",\"active\":\"no\"},{\"content\":\"Security management\",\"_id\":\"873275c\",\"active\":\"yes\"},{\"content\":\"<del>Secure finance backup<\\/del>\",\"_id\":\"730077f\",\"active\":\"no\"},{\"content\":\"<del>Remote support<\\/del>\",\"_id\":\"cb31418\",\"active\":\"no\"}],\"price\":\"$599\",\"time\":\"\\/ monthly\",\"button_text\":\"Try now\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_css_classes\":\"animate-time1\",\"layout\":\"2\",\"feature_l2\":\"Plus One-Time Bambee In-Depth HR Audit For: <cite>$1000<\\/cite>\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/icon-pricing-03.png\",\"id\":3889},\"selected_icon\":{\"value\":\"flaticon flaticon-leadership\",\"library\":\"flaticon\"}},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false},{\"id\":\"12576590\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4a12a6ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Large Business\",\"description\":\"Unlimited Employees\",\"content_list\":[{\"content\":\"<del>24\\/7 system monitoring<\\/del>\",\"_id\":\"351129b\",\"active\":\"no\"},{\"content\":\"Security management\",\"_id\":\"873275c\",\"active\":\"yes\"},{\"content\":\"<del>Secure finance backup<\\/del>\",\"_id\":\"730077f\",\"active\":\"no\"},{\"content\":\"<del>Remote support<\\/del>\",\"_id\":\"cb31418\",\"active\":\"no\"}],\"price\":\"$699\",\"time\":\"\\/ monthly\",\"button_text\":\"Try now\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_css_classes\":\"animate-time1\",\"layout\":\"2\",\"feature_l2\":\"Plus One-Time Bambee In-Depth HR Audit For: <cite>$1500<\\/cite>\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/icon-pricing-04.png\",\"id\":3890},\"selected_icon\":{\"value\":\"flaticon flaticon-bank\",\"library\":\"flaticon\"}},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false}],\"isInner\":false}]'),(263,3872,'_elementor_controls_usage','a:3:{s:10:\"ct_pricing\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_list\";a:13:{s:5:\"title\";i:4;s:11:\"description\";i:4;s:12:\"content_list\";i:4;s:5:\"price\";i:4;s:4:\"time\";i:4;s:11:\"button_text\";i:4;s:11:\"button_link\";i:4;s:10:\"feature_l2\";i:4;s:10:\"icon_image\";i:4;s:13:\"selected_icon\";i:4;s:11:\"recommended\";i:1;s:12:\"box_bg_color\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:4;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:4;s:19:\"_inline_size_tablet\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}}'),(264,3876,'_elementor_edit_mode','builder'),(265,3876,'_elementor_template_type','section'),(266,3876,'_elementor_version','2.8.5'),(267,3876,'post_views_count','1'),(268,3876,'_wp_page_template','default'),(269,3876,'_elementor_data','[{\"id\":\"33a40038\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5f276f89\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"488fdba\",\"elType\":\"widget\",\"settings\":{\"title\":\"New Business\",\"description\":\"1-4 Employees\",\"content_list\":[{\"content\":\"<del>24\\/7 system monitoring<\\/del>\",\"_id\":\"351129b\",\"active\":\"no\"},{\"content\":\"Security management\",\"_id\":\"873275c\",\"active\":\"yes\"},{\"content\":\"<del>Secure finance backup<\\/del>\",\"_id\":\"730077f\",\"active\":\"no\"},{\"content\":\"<del>Remote support<\\/del>\",\"_id\":\"cb31418\",\"active\":\"no\"}],\"price\":\"$99\",\"time\":\"\\/ monthly\",\"button_text\":\"Try now\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_css_classes\":\"animate-time1\",\"layout\":\"2\",\"feature_l2\":\"Plus One-Time Bambee In-Depth HR Audit For: <cite>$500<\\/cite>\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/icon-pricing-01.png\",\"id\":3887},\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"}},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false},{\"id\":\"8a7b665\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4d68f4b4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Small Business\",\"description\":\"5-19 Employees\",\"content_list\":[{\"content\":\"<del>24\\/7 system monitoring<\\/del>\",\"_id\":\"351129b\",\"active\":\"no\"},{\"content\":\"Security management\",\"_id\":\"873275c\",\"active\":\"yes\"},{\"content\":\"<del>Secure finance backup<\\/del>\",\"_id\":\"730077f\",\"active\":\"no\"},{\"content\":\"<del>Remote support<\\/del>\",\"_id\":\"cb31418\",\"active\":\"no\"}],\"price\":\"$199\",\"time\":\"\\/ monthly\",\"button_text\":\"Try now\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_css_classes\":\"animate-time1\",\"layout\":\"2\",\"feature_l2\":\"Plus One-Time Bambee In-Depth HR Audit For: <cite>$500<\\/cite>\",\"recommended\":\"Best choice\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/icon-pricing-02.png\",\"id\":3888},\"box_bg_color\":\"#000000\",\"content_color\":\"#FFFFFF\",\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"}},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false},{\"id\":\"f582dc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"559076c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Growing Business\",\"description\":\"20-39 Employees\",\"content_list\":[{\"content\":\"<del>24\\/7 system monitoring<\\/del>\",\"_id\":\"351129b\",\"active\":\"no\"},{\"content\":\"Security management\",\"_id\":\"873275c\",\"active\":\"yes\"},{\"content\":\"<del>Secure finance backup<\\/del>\",\"_id\":\"730077f\",\"active\":\"no\"},{\"content\":\"<del>Remote support<\\/del>\",\"_id\":\"cb31418\",\"active\":\"no\"}],\"price\":\"$299\",\"time\":\"\\/ monthly\",\"button_text\":\"Try now\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_css_classes\":\"animate-time1\",\"layout\":\"2\",\"feature_l2\":\"Plus One-Time Bambee In-Depth HR Audit For: <cite>$1000<\\/cite>\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/icon-pricing-03.png\",\"id\":3889},\"selected_icon\":{\"value\":\"flaticon flaticon-leadership\",\"library\":\"flaticon\"}},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false},{\"id\":\"4b28e043\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"a416d71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Large Business\",\"description\":\"Unlimited Employees\",\"content_list\":[{\"content\":\"<del>24\\/7 system monitoring<\\/del>\",\"_id\":\"351129b\",\"active\":\"no\"},{\"content\":\"Security management\",\"_id\":\"873275c\",\"active\":\"yes\"},{\"content\":\"<del>Secure finance backup<\\/del>\",\"_id\":\"730077f\",\"active\":\"no\"},{\"content\":\"<del>Remote support<\\/del>\",\"_id\":\"cb31418\",\"active\":\"no\"}],\"price\":\"$399\",\"time\":\"\\/ monthly\",\"button_text\":\"Try now\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_css_classes\":\"animate-time1\",\"layout\":\"2\",\"feature_l2\":\"Plus One-Time Bambee In-Depth HR Audit For: <cite>$1500<\\/cite>\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/icon-pricing-04.png\",\"id\":3890},\"selected_icon\":{\"value\":\"flaticon flaticon-bank\",\"library\":\"flaticon\"}},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false}],\"isInner\":false}]'),(270,3876,'_elementor_controls_usage','a:3:{s:10:\"ct_pricing\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_list\";a:13:{s:5:\"title\";i:4;s:11:\"description\";i:4;s:12:\"content_list\";i:4;s:5:\"price\";i:4;s:4:\"time\";i:4;s:11:\"button_text\";i:4;s:11:\"button_link\";i:4;s:10:\"feature_l2\";i:4;s:10:\"icon_image\";i:4;s:13:\"selected_icon\";i:4;s:11:\"recommended\";i:1;s:12:\"box_bg_color\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:4;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:4;s:19:\"_inline_size_tablet\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}}'),(271,3948,'_elementor_edit_mode','builder'),(272,3948,'_elementor_template_type','kit'),(273,3948,'_elementor_version','2.9.14'),(274,3953,'_wp_page_template','default'),(275,3953,'slide_template','default'),(276,3953,'_elementor_edit_mode','builder'),(277,3953,'_elementor_template_type','wp-post'),(278,3953,'_elementor_version','2.9.14'),(279,3953,'_elementor_data','[{\"id\":\"7f745fa1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"7a0c59a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"744d686c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Multi Pages\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6ec30e63\",\"elType\":\"widget\",\"settings\":{\"menu_item\":[{\"text\":\"Finance\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"665b039\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\"},{\"text\":\"Finance 2\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-finance2\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"996b269\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\"},{\"text\":\"Finance RTL\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-rtl\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"16340a3\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\"},{\"text\":\"Business 1\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\",\"_id\":\"f1b278e\"},{\"text\":\"Business 2\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-business2\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\",\"_id\":\"caca81d\"},{\"text\":\"Corporate 1\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-corporate1\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"dfebfc5\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\"},{\"text\":\"Corporate 2\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-corporate2\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"669959a\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\"},{\"text\":\"Corporate 3\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-corporate3\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ee551da\",\"label\":\"\"},{\"text\":\"Law\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-law\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\",\"_id\":\"51f926d\"},{\"text\":\"Startup\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-startup\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\",\"_id\":\"7d1a42f\"}]},\"elements\":[],\"widgetType\":\"ct_menu_item\"}],\"isInner\":false},{\"id\":\"7ba31669\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"40\",\"isLinked\":false},\"css_classes\":\"col-line-mega\"},\"elements\":[{\"id\":\"50713f58\",\"elType\":\"widget\",\"settings\":{\"title\":\"Multi Pages\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a8653e3\",\"elType\":\"widget\",\"settings\":{\"menu_item\":[{\"text\":\"Human Resource\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-hr\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"665b039\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\"},{\"text\":\"Life Coach\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-coach\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"dfebfc5\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\"},{\"text\":\"Marketing\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"669959a\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\"},{\"text\":\"Medical\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-medical\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d20a6af\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\"},{\"text\":\"IT Solution\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-it\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\",\"_id\":\"bd5c240\"},{\"text\":\"Tax Consulting\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\",\"_id\":\"882b4dc\"},{\"text\":\"Insurance\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-insurance\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\",\"_id\":\"c74ecc8\"},{\"text\":\"Corona\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-corona\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\",\"_id\":\"e79358f\"},{\"text\":\"Consulting\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-consulting\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\",\"_id\":\"d742a35\"},{\"text\":\"Software\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-software\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\",\"_id\":\"68a5a23\"}]},\"elements\":[],\"widgetType\":\"ct_menu_item\"}],\"isInner\":false},{\"id\":\"4d5c5322\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"40\",\"isLinked\":false},\"css_classes\":\"col-line-mega\"},\"elements\":[{\"id\":\"439b7e93\",\"elType\":\"widget\",\"settings\":{\"title\":\"One Page\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"20fbba88\",\"elType\":\"widget\",\"settings\":{\"menu_item\":[{\"text\":\"Finance\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"665b039\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\"},{\"text\":\"Finance 2\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-finance2\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"996b269\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\"},{\"text\":\"Finance RTL\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-rtl\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"16340a3\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\"},{\"text\":\"Business 1\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-business\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\",\"_id\":\"f1b278e\"},{\"text\":\"Business 2\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-business2\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\",\"_id\":\"caca81d\"},{\"text\":\"Corporate 1\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-corporate1\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"dfebfc5\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\"},{\"text\":\"Corporate 2\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-corporate2\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"669959a\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\"},{\"text\":\"Corporate 3\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-corporate3\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ee551da\",\"label\":\"\"},{\"text\":\"Law\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-law\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\",\"_id\":\"51f926d\"},{\"text\":\"Startup\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-startup\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\",\"_id\":\"7d1a42f\"}]},\"elements\":[],\"widgetType\":\"ct_menu_item\"}],\"isInner\":false},{\"id\":\"5b10b01e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"40\",\"isLinked\":false},\"css_classes\":\"col-line-mega\"},\"elements\":[{\"id\":\"329d154a\",\"elType\":\"widget\",\"settings\":{\"title\":\"One Page\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d78a2e3\",\"elType\":\"widget\",\"settings\":{\"menu_item\":[{\"text\":\"Human Resource\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-hr\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"665b039\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\"},{\"text\":\"Life Coach\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-coach\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"dfebfc5\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\"},{\"text\":\"Marketing\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-marketing\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"669959a\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\"},{\"text\":\"Medical\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-medical\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d20a6af\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\"},{\"text\":\"IT Solution\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-it\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\",\"_id\":\"bd5c240\"},{\"text\":\"Tax Consulting\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\",\"_id\":\"882b4dc\"},{\"text\":\"Insurance\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-insurance\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\",\"_id\":\"c74ecc8\"},{\"text\":\"Corona\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-corona\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\",\"_id\":\"e79358f\"},{\"text\":\"Consulting\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-consulting\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\",\"_id\":\"d742a35\"},{\"text\":\"Software\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-software\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\",\"_id\":\"68a5a23\"}]},\"elements\":[],\"widgetType\":\"ct_menu_item\"}],\"isInner\":false}],\"isInner\":false}]'),(280,3953,'_elementor_controls_usage','a:4:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:5:{s:5:\"title\";i:4;s:27:\"title_typography_typography\";i:4;s:26:\"title_typography_font_size\";i:4;s:28:\"title_typography_font_weight\";i:4;s:18:\"title_space_bottom\";i:4;}}}}s:12:\"ct_menu_item\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:9:\"menu_item\";i:4;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:4;s:11:\"css_classes\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}}}}'),(281,3955,'_wp_page_template','default'),(282,3955,'slide_template','default'),(283,3955,'_elementor_edit_mode','builder'),(284,3955,'_elementor_template_type','wp-post'),(285,3955,'_elementor_version','2.9.14'),(286,3955,'_elementor_data','[{\"id\":\"35d4a023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"4c3a6ff1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"78d5ebb6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interactive Elements\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"78638b22\",\"elType\":\"widget\",\"settings\":{\"menu_item\":[{\"text\":\"Testimonials\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/testimonials-2\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6651a5c\",\"ct_icon\":{\"value\":\"fas fa-quote-left\",\"library\":\"fa-solid\"},\"label\":\"\"},{\"text\":\"Blog Slider\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/blog-slider\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"flaticonv3 flaticonv3-newspaper\",\"library\":\"flaticonv3\"},\"_id\":\"25caa4d\",\"label\":\"\"},{\"text\":\"Portfolio Carousel\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/elements-portfolio-carousel\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"flaticonv3 flaticonv3-portfolio\",\"library\":\"flaticonv3\"},\"label\":\"\",\"_id\":\"d1a9a4f\"},{\"text\":\"Service Carousel\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/service-carousel\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"flaticonv3 flaticonv3-portfolio\",\"library\":\"flaticonv3\"},\"label\":\"\",\"_id\":\"be7ce10\"},{\"text\":\"Clients\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/clients\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"be34909\",\"label\":\"\"},{\"text\":\"History\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/history\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-history\",\"library\":\"fa-solid\"},\"label\":\"\",\"_id\":\"7c5833e\"},{\"text\":\"Video Button\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/video-button\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-play-circle\",\"library\":\"fa-solid\"},\"_id\":\"f422155\",\"label\":\"\"},{\"text\":\"Columns\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/columns\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-columns\",\"library\":\"fa-solid\"},\"_id\":\"29a7115\",\"label\":\"\"},{\"text\":\"Row background\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/row-background\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"material zmdi zmdi-open-in-browser\",\"library\":\"material\"},\"_id\":\"f15ef7b\",\"label\":\"\"}]},\"elements\":[],\"widgetType\":\"ct_menu_item\"}],\"isInner\":false},{\"id\":\"6da39e70\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"40\",\"isLinked\":false},\"css_classes\":\"col-line-mega\"},\"elements\":[{\"id\":\"35e5905d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard Elements\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"319295d5\",\"elType\":\"widget\",\"settings\":{\"menu_item\":[{\"text\":\"Team Variations\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/team-variations\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6651a5c\",\"ct_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"label\":\"\"},{\"text\":\"Buttons\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/buttons\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-dice-d6\",\"library\":\"fa-solid\"},\"label\":\"\",\"_id\":\"cf56e8c\"},{\"text\":\"Tabs & Tours\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/tabs-tours\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-ellipsis-h\",\"library\":\"fa-solid\"},\"label\":\"\",\"_id\":\"2c2b9ad\"},{\"text\":\"Accordions & Toggles\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/accordions-toggles\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-server\",\"library\":\"fa-solid\"},\"label\":\"\",\"_id\":\"0e5b944\"},{\"text\":\"Google Maps\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/google-maps\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"material zmdi zmdi-google-maps\",\"library\":\"material\"},\"label\":\"\",\"_id\":\"b20f99c\"},{\"text\":\"Contact Forms 7\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/contact-forms-7\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"material zmdi zmdi-account-box-phone\",\"library\":\"material\"},\"label\":\"\",\"_id\":\"ec42890\"},{\"text\":\"Dividers\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/dividers\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"material zmdi zmdi-cut\",\"library\":\"material\"},\"label\":\"\",\"_id\":\"3f7d182\"},{\"text\":\"Pricing Tables\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/pricing-tables\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-table\",\"library\":\"fa-solid\"},\"label\":\"\",\"_id\":\"06e7c95\"}]},\"elements\":[],\"widgetType\":\"ct_menu_item\"}],\"isInner\":false},{\"id\":\"5064b5d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"40\",\"isLinked\":false},\"css_classes\":\"col-line-mega\"},\"elements\":[{\"id\":\"1754edde\",\"elType\":\"widget\",\"settings\":{\"title\":\"Infographics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"62c7b631\",\"elType\":\"widget\",\"settings\":{\"menu_item\":[{\"text\":\"Counters\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/counters\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6651a5c\",\"ct_icon\":{\"value\":\"fas fa-sort-numeric-up\",\"library\":\"fa-solid\"},\"label\":\"\"},{\"text\":\"Progress Bars\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/progress-bars\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-chart-line\",\"library\":\"fa-solid\"},\"label\":\"\",\"_id\":\"53244c0\"},{\"text\":\"Icon With Text\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/icon-with-text\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-gift\",\"library\":\"fa-solid\"},\"label\":\"\",\"_id\":\"388c124\"},{\"text\":\"Icon Grid\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/icon-grid\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-crown\",\"library\":\"fa-solid\"},\"label\":\"\",\"_id\":\"10e9966\"},{\"text\":\"Image Box Fancy\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/image-box-fancy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"material zmdi zmdi-collection-folder-image\",\"library\":\"material\"},\"label\":\"\",\"_id\":\"ac49e20\"},{\"text\":\"Cover Boxes\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/cover-boxes\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-ticket-alt\",\"library\":\"fa-solid\"},\"label\":\"\",\"_id\":\"caed56f\"},{\"text\":\"Newsletters\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/newsletters\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-envelope-open-text\",\"library\":\"fa-solid\"},\"label\":\"\",\"_id\":\"d119127\"}]},\"elements\":[],\"widgetType\":\"ct_menu_item\"}],\"isInner\":false},{\"id\":\"620e8e1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"40\",\"isLinked\":false},\"css_classes\":\"col-line-mega\"},\"elements\":[{\"id\":\"3d20498e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Typography\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"43214088\",\"elType\":\"widget\",\"settings\":{\"menu_item\":[{\"text\":\"Custom Fonts\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/custom-fonts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6651a5c\",\"ct_icon\":{\"value\":\"material zmdi zmdi-font\",\"library\":\"material\"},\"label\":\"\"},{\"text\":\"Highlights\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/highlights\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-coffee\",\"library\":\"fa-solid\"},\"label\":\"\",\"_id\":\"ca12570\"},{\"text\":\"Blockquote\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/blockquote\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"flaticonv2 flaticonv2-right-quotation-mark\",\"library\":\"flaticonv2\"},\"label\":\"\",\"_id\":\"d26e2ad\"},{\"text\":\"Dropcaps\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/dropcaps\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-text-width\",\"library\":\"fa-solid\"},\"label\":\"\",\"_id\":\"ee9bbb6\"},{\"text\":\"Message Box\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/message-box\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"material zmdi zmdi-assignment-alert\",\"library\":\"material\"},\"label\":\"\",\"_id\":\"707a1d7\"},{\"text\":\"Lists\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/lists\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-list\",\"library\":\"fa-solid\"},\"label\":\"\",\"_id\":\"19f958e\"},{\"text\":\"Titles\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/titles\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-text-height\",\"library\":\"fa-solid\"},\"label\":\"\",\"_id\":\"e355a5d\"}]},\"elements\":[],\"widgetType\":\"ct_menu_item\"}],\"isInner\":false}],\"isInner\":false}]'),(287,3955,'_elementor_controls_usage','a:4:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:5:{s:5:\"title\";i:4;s:27:\"title_typography_typography\";i:4;s:26:\"title_typography_font_size\";i:4;s:18:\"title_space_bottom\";i:4;s:28:\"title_typography_font_weight\";i:4;}}}}s:12:\"ct_menu_item\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:9:\"menu_item\";i:4;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:4;s:11:\"css_classes\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}}}}'),(3604,4116,'_wp_page_template','default'),(3605,4116,'_elementor_edit_mode','builder'),(3606,4116,'_elementor_template_type','wp-page'),(3607,4116,'_elementor_version','3.1.4'),(3608,4116,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a609d52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1fdd1c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"73\",\"right\":\"0\",\"bottom\":\"95\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have appreciated by our clients!\",\"sub_title\":\"Testimonial\",\"sub_title_color\":\"#00C7D4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#00C7D4\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/author-02.jpg\",\"id\":238},\"title\":\"Maria Silverii\",\"position\":\"CEO of Blue Illusion\",\"description\":\"\\u201c I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail as a Leadership Program\\u2019 is Her passion.\\u201d\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/author-01.jpg\",\"id\":237},\"title\":\"Rebecca Leo \",\"position\":\"Web Designer\",\"description\":\"\\u201c I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail as a Leadership Program\\u2019 is Her passion.\\u201d\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"Blog\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"99958ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(3598,4115,'_wp_page_template','default'),(3599,4115,'_elementor_edit_mode','builder'),(3600,4115,'_elementor_template_type','wp-page'),(3601,4115,'_elementor_version','3.1.4'),(3602,4115,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a609d52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1fdd1c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"73\",\"right\":\"0\",\"bottom\":\"95\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have appreciated by our clients!\",\"sub_title\":\"Testimonial\",\"sub_title_color\":\"#00C7D4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#00C7D4\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/author-02.jpg\",\"id\":238},\"title\":\"Maria Silverii\",\"position\":\"CEO of Blue Illusion\",\"description\":\"\\u201c I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail as a Leadership Program\\u2019 is Her passion.\\u201d\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/author-01.jpg\",\"id\":237},\"title\":\"Rebecca Leo \",\"position\":\"Web Designer\",\"description\":\"\\u201c I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail as a Leadership Program\\u2019 is Her passion.\\u201d\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"Blog\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"99958ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(3563,4105,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:4:\"file\";s:72:\"2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:65:\"female-pool-player-taking-aim-at-the-cue-ball-PTXG426-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:66:\"female-pool-player-taking-aim-at-the-cue-ball-PTXG426-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:65:\"female-pool-player-taking-aim-at-the-cue-ball-PTXG426-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:65:\"female-pool-player-taking-aim-at-the-cue-ball-PTXG426-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:67:\"female-pool-player-taking-aim-at-the-cue-ball-PTXG426-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:67:\"female-pool-player-taking-aim-at-the-cue-ball-PTXG426-2048x1367.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1367;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:65:\"female-pool-player-taking-aim-at-the-cue-ball-PTXG426-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:65:\"female-pool-player-taking-aim-at-the-cue-ball-PTXG426-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:65:\"female-pool-player-taking-aim-at-the-cue-ball-PTXG426-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:65:\"female-pool-player-taking-aim-at-the-cue-ball-PTXG426-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:65:\"female-pool-player-taking-aim-at-the-cue-ball-PTXG426-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:65:\"female-pool-player-taking-aim-at-the-cue-ball-PTXG426-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:65:\"female-pool-player-taking-aim-at-the-cue-ball-PTXG426-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:65:\"female-pool-player-taking-aim-at-the-cue-ball-PTXG426-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D810\";s:7:\"caption\";s:105:\"Female pool player taking aim at the cue ball while happy friends with beer bottles stand around watching\";s:17:\"created_timestamp\";s:10:\"1484490894\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:45:\"Female pool player taking aim at the cue ball\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:50:{i:0;s:7:\"african\";i:1;s:9:\"caucasian\";i:2;s:8:\"hispanic\";i:3;s:9:\"billiards\";i:4;s:9:\"challenge\";i:5;s:4:\"club\";i:6;s:11:\"competition\";i:7;s:3:\"cue\";i:8;s:7:\"diverse\";i:9;s:9:\"enjoyment\";i:10;s:13:\"entertainment\";i:11;s:9:\"expertise\";i:12;s:7:\"friends\";i:13;s:3:\"fun\";i:14;s:4:\"game\";i:15;s:5:\"group\";i:16;s:5:\"hobby\";i:17;s:7:\"leisure\";i:18;s:3:\"men\";i:19;s:11:\"multiracial\";i:20;s:7:\"playing\";i:21;s:4:\"pool\";i:22;s:10:\"recreation\";i:23;s:8:\"relaxing\";i:24;s:5:\"skill\";i:25;s:5:\"table\";i:26;s:8:\"together\";i:27;s:9:\"unwinding\";i:28;s:5:\"women\";i:29;s:11:\"camaraderie\";i:30;s:6:\"joking\";i:31;s:8:\"laughing\";i:32;s:9:\"vivacious\";i:33;s:4:\"beer\";i:34;s:7:\"bottles\";i:35;s:8:\"drinking\";i:36;s:3:\"pub\";i:37;s:3:\"bar\";i:38;s:7:\"players\";i:39;s:9:\"gathering\";i:40;s:5:\"mates\";i:41;s:10:\"relaxation\";i:42;s:8:\"activity\";i:43;s:7:\"closeup\";i:44;s:5:\"happy\";i:45;s:6:\"jovial\";i:46;s:7:\"smiling\";i:47;s:3:\"aim\";i:48;s:8:\"watching\";i:49;s:7:\"alcohol\";}}s:14:\"original_image\";s:57:\"female-pool-player-taking-aim-at-the-cue-ball-PTXG426.jpg\";}'),(3591,4114,'_wp_page_template','default'),(3592,4114,'_elementor_edit_mode','builder'),(3593,4114,'_elementor_template_type','wp-page'),(3594,4114,'_elementor_version','3.1.4'),(3595,4114,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a609d52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1fdd1c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"73\",\"right\":\"0\",\"bottom\":\"95\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have appreciated by our clients!\",\"sub_title\":\"Testimonial\",\"sub_title_color\":\"#00C7D4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#00C7D4\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/author-02.jpg\",\"id\":238},\"title\":\"Maria Silverii\",\"position\":\"CEO of Blue Illusion\",\"description\":\"\\u201c I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail as a Leadership Program\\u2019 is Her passion.\\u201d\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/author-01.jpg\",\"id\":237},\"title\":\"Rebecca Leo \",\"position\":\"Web Designer\",\"description\":\"\\u201c I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail as a Leadership Program\\u2019 is Her passion.\\u201d\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"Blog\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"99958ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(3571,4107,'_wp_attached_file','2021/03/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg'),(3572,4107,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:60:\"2021/03/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:53:\"friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:54:\"friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:53:\"friends-playing-toy-grabbing-game-P5BQUY9-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:53:\"friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:55:\"friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:55:\"friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:53:\"friends-playing-toy-grabbing-game-P5BQUY9-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:53:\"friends-playing-toy-grabbing-game-P5BQUY9-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:53:\"friends-playing-toy-grabbing-game-P5BQUY9-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:53:\"friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:53:\"friends-playing-toy-grabbing-game-P5BQUY9-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:53:\"friends-playing-toy-grabbing-game-P5BQUY9-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:53:\"friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:53:\"friends-playing-toy-grabbing-game-P5BQUY9-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:15:\"Canon EOS 5DS R\";s:7:\"caption\";s:103:\"Young friends playing toy grabbing game at game room. Four young people playing at toy vending machine.\";s:17:\"created_timestamp\";s:10:\"1471378297\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:9:\"0.0015625\";s:5:\"title\";s:33:\"Friends playing toy grabbing game\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:31:{i:0;s:9:\"amusement\";i:1;s:6:\"arcade\";i:2;s:9:\"boyfriend\";i:3;s:4:\"claw\";i:4;s:12:\"claw machine\";i:5;s:6:\"couple\";i:6;s:6:\"female\";i:7;s:7:\"friends\";i:8;s:3:\"fun\";i:9;s:4:\"game\";i:10;s:5:\"games\";i:11;s:10:\"girlfriend\";i:12;s:5:\"girls\";i:13;s:8:\"grabbing\";i:14;s:5:\"happy\";i:15;s:7:\"leisure\";i:16;s:9:\"lifestyle\";i:17;s:7:\"looking\";i:18;s:7:\"machine\";i:19;s:4:\"male\";i:20;s:3:\"men\";i:21;s:4:\"park\";i:22;s:6:\"people\";i:23;s:7:\"smiling\";i:24;s:4:\"soft\";i:25;s:8:\"standing\";i:26;s:8:\"together\";i:27;s:4:\"toys\";i:28;s:5:\"women\";i:29;s:5:\"young\";i:30;s:5:\"youth\";}}s:14:\"original_image\";s:45:\"friends-playing-toy-grabbing-game-P5BQUY9.jpg\";}'),(3573,4108,'_wp_attached_file','2021/03/i-am-blue-C3X74HU-scaled.jpg'),(3574,4108,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1440;s:4:\"file\";s:36:\"2021/03/i-am-blue-C3X74HU-scaled.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"i-am-blue-C3X74HU-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"i-am-blue-C3X74HU-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"i-am-blue-C3X74HU-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"i-am-blue-C3X74HU-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:30:\"i-am-blue-C3X74HU-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:31:\"i-am-blue-C3X74HU-2048x1152.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:29:\"i-am-blue-C3X74HU-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:29:\"i-am-blue-C3X74HU-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"i-am-blue-C3X74HU-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:29:\"i-am-blue-C3X74HU-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"i-am-blue-C3X74HU-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:29:\"i-am-blue-C3X74HU-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:29:\"i-am-blue-C3X74HU-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"i-am-blue-C3X74HU-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G920T\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1436450115\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"4.3\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:17:\"0.041666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:21:\"i-am-blue-C3X74HU.jpg\";}'),(3575,4109,'_wp_attached_file','2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg'),(3576,4109,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1709;s:4:\"file\";s:76:\"2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:69:\"attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:70:\"attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:69:\"attractive-cheerful-women-singing-with-microphone-8GXPEDG-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:69:\"attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:71:\"attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:71:\"attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1367;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:69:\"attractive-cheerful-women-singing-with-microphone-8GXPEDG-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:69:\"attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:69:\"attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:69:\"attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:69:\"attractive-cheerful-women-singing-with-microphone-8GXPEDG-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:69:\"attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:69:\"attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:69:\"attractive-cheerful-women-singing-with-microphone-8GXPEDG-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D810\";s:7:\"caption\";s:60:\"attractive cheerful women singing with microphone in karaoke\";s:17:\"created_timestamp\";s:10:\"1537194664\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"46\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:60:\"attractive cheerful women singing with microphone in karaoke\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:1:{i:0;s:332:\"luxury,beautiful,celebration,happy,holiday,party,female,smiling,adult,people,women,beauty,relaxation,happiness,cheerful,caucasian,smile,girls,friendship,brunette,night,emotions,karaoke,microphone,together,togetherness,friends,celebrating,dance,blonde,singing,club,disco,glamor,attractive,social,backlit,glamorous,New Year,back light\";}}s:14:\"original_image\";s:61:\"attractive-cheerful-women-singing-with-microphone-8GXPEDG.jpg\";}'),(3579,4111,'_wp_attached_file','2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg'),(3577,4110,'_wp_attached_file','2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg'),(3578,4110,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:68:\"2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:61:\"young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:62:\"young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:61:\"young-couple-playing-together-pool-in-bar-96FRQW7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:61:\"young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:63:\"young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:63:\"young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:61:\"young-couple-playing-together-pool-in-bar-96FRQW7-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:61:\"young-couple-playing-together-pool-in-bar-96FRQW7-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:61:\"young-couple-playing-together-pool-in-bar-96FRQW7-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:61:\"young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:61:\"young-couple-playing-together-pool-in-bar-96FRQW7-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:61:\"young-couple-playing-together-pool-in-bar-96FRQW7-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:61:\"young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:61:\"young-couple-playing-together-pool-in-bar-96FRQW7-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:63:\"Young couple playing pool in bar while having night out in town\";s:17:\"created_timestamp\";s:10:\"1477676191\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:41:\"Young couple playing together pool in bar\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:40:{i:0;s:6:\"couple\";i:1;s:4:\"pool\";i:2;s:7:\"snooker\";i:3;s:8:\"billiard\";i:4;s:7:\"playing\";i:5;s:13:\"entertainment\";i:6;s:3:\"fun\";i:7;s:5:\"young\";i:8;s:9:\"beautiful\";i:9;s:3:\"pub\";i:10;s:4:\"love\";i:11;s:5:\"table\";i:12;s:6:\"aiming\";i:13;s:3:\"bar\";i:14;s:8:\"flirting\";i:15;s:10:\"recreation\";i:16;s:5:\"sport\";i:17;s:9:\"enjoyment\";i:18;s:6:\"people\";i:19;s:8:\"together\";i:20;s:5:\"women\";i:21;s:8:\"activity\";i:22;s:4:\"game\";i:23;s:7:\"leisure\";i:24;s:7:\"smiling\";i:25;s:6:\"social\";i:26;s:3:\"two\";i:27;s:4:\"male\";i:28;s:4:\"club\";i:29;s:10:\"relaxation\";i:30;s:3:\"man\";i:31;s:7:\"friends\";i:32;s:8:\"pointing\";i:33;s:11:\"socializing\";i:34;s:5:\"adult\";i:35;s:6:\"female\";i:36;s:7:\"indoors\";i:37;s:7:\"looking\";i:38;s:8:\"shooting\";i:39;s:9:\"caucasian\";}}s:14:\"original_image\";s:53:\"young-couple-playing-together-pool-in-bar-96FRQW7.jpg\";}'),(3562,4105,'_wp_attached_file','2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg'),(310,3968,'_menu_item_type','custom'),(311,3968,'_menu_item_menu_item_parent','0'),(312,3968,'_menu_item_object_id','3968'),(313,3968,'_menu_item_object','custom'),(314,3968,'_menu_item_target',''),(315,3968,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(316,3968,'_menu_item_xfn',''),(317,3968,'_menu_item_url','#'),(318,3968,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(319,3968,'_menu_item_ct_icon',''),(320,3968,'_menu_item_ct_megaprofile','0'),(321,3968,'_menu_item_ct_onepage','no-one-page'),(322,3968,'_menu_item_ct_onepage_offset',''),(323,3969,'_menu_item_type','custom'),(324,3969,'_menu_item_menu_item_parent','0'),(325,3969,'_menu_item_object_id','3969'),(326,3969,'_menu_item_object','custom'),(327,3969,'_menu_item_target',''),(328,3969,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(329,3969,'_menu_item_xfn',''),(330,3969,'_menu_item_url','#'),(331,3969,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(332,3969,'_menu_item_ct_icon',''),(333,3970,'_menu_item_type','custom'),(334,3970,'_menu_item_menu_item_parent','3968'),(335,3970,'_menu_item_object_id','3970'),(336,3970,'_menu_item_object','custom'),(337,3970,'_menu_item_target',''),(338,3970,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(339,3970,'_menu_item_xfn',''),(340,3970,'_menu_item_url','https://demo.casethemes.net/consultio-tax/404-page/'),(341,3970,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(342,3970,'_menu_item_ct_icon',''),(343,3971,'_menu_item_type','custom'),(344,3971,'_menu_item_menu_item_parent','0'),(345,3971,'_menu_item_object_id','3971'),(346,3971,'_menu_item_object','custom'),(347,3971,'_menu_item_target',''),(348,3971,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(349,3971,'_menu_item_xfn',''),(350,3971,'_menu_item_url','#'),(351,3971,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(352,3971,'_menu_item_ct_icon',''),(353,3971,'_menu_item_ct_megaprofile','0'),(354,3971,'_menu_item_ct_onepage','no-one-page'),(355,3971,'_menu_item_ct_onepage_offset',''),(356,3972,'_menu_item_type','custom'),(357,3972,'_menu_item_menu_item_parent','3971'),(358,3972,'_menu_item_object_id','3972'),(359,3972,'_menu_item_object','custom'),(360,3972,'_menu_item_target',''),(361,3972,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(362,3972,'_menu_item_xfn',''),(363,3972,'_menu_item_url','https://demo.casethemes.net/consultio-tax/404-page/'),(364,3972,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(365,3972,'_menu_item_ct_icon',''),(366,3973,'_menu_item_type','custom'),(367,3973,'_menu_item_menu_item_parent','0'),(368,3973,'_menu_item_object_id','3973'),(369,3973,'_menu_item_object','custom'),(370,3973,'_menu_item_target',''),(371,3973,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(372,3973,'_menu_item_xfn',''),(373,3973,'_menu_item_url','#'),(374,3973,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(375,3973,'_menu_item_ct_icon',''),(376,3973,'_menu_item_ct_megaprofile','3953'),(377,3973,'_menu_item_ct_onepage','no-one-page'),(378,3973,'_menu_item_ct_onepage_offset',''),(379,24,'_wp_page_template','default'),(380,24,'custom_header','1'),(381,24,'header_layout','19'),(382,24,'custom_pagetitle','show'),(383,24,'custom_title','Contact Us'),(384,24,'ptitle_bg','a:2:{s:16:\"background-image\";s:122:\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"4138\";s:6:\"height\";s:4:\"1398\";s:5:\"width\";s:4:\"2560\";s:9:\"thumbnail\";s:123:\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-150x150.jpg\";}}'),(385,24,'ptitle_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(386,24,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(387,24,'content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}'),(388,24,'show_sidebar_page',''),(389,24,'sidebar_page_pos','right'),(390,24,'custom_footer','1'),(391,24,'footer_layout_custom','3201'),(392,24,'_elementor_edit_mode','builder'),(393,24,'_elementor_template_type','wp-page'),(394,24,'_elementor_version','3.2.2'),(5408,24,'eg_sources_html5_mp4',''),(396,24,'_elementor_data','[{\"id\":\"d8bdc5a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4c2fc51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d6bfcba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact System Amusement Today\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"de8193b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/211037967555058\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"13f51f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9e16110\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Phone:\",\"description_text\":\"509-326-1551 \",\"list\":[],\"_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"485cc85\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"title_text\":\"Email:\",\"description_text\":\"systemamusement@comcast.net\",\"list\":[],\"_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"c8a2f48\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"title_text\":\"Hours:\",\"description_text\":\"Mon - Sat: 8 am - 5 pm, <br>Sunday: CLOSED\",\"list\":[],\"_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"12c802c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1c288d36\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFD500FC\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5baf77\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1133c0cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our 50+ Years of Dedication to our Clients!\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#00BCFF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_typography_font_weight\":\"400\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4c17575\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"240d045d\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"14bf715f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"682bb3dc\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F00000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"68788f1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"41c4abc8\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"581ad8e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3886a227\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"6541e512\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"457d6b60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5442,4413,'_elementor_edit_mode','builder'),(5443,4413,'_elementor_template_type','wp-page'),(5444,4413,'_elementor_version','2.7.5'),(5445,4413,'_elementor_data','[{\"id\":\"99fbaeb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"27\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e818542\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.667000000000001591615728102624416351318359375,\"margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"c8a2f48\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"title_text\":\"Hours:\",\"description_text\":\"Mon - Sat: 8 am - 5 pm, <br>Sunday: CLOSED\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":false},{\"id\":\"d5f3e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":29.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"9e16110\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Phone:\",\"description_text\":\"509-326-1551 \",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":false},{\"id\":\"729a4d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"485cc85\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"title_text\":\"Email:\",\"description_text\":\"systemamusement@comcast.net\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d8bdc5a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"57\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4c2fc51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d6bfcba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact System Amusement Today\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"de8193b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/211037967555058\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"13f51f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"12c802c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5429,4411,'_wp_page_template','default'),(5430,4411,'_elementor_edit_mode','builder'),(5431,4411,'_elementor_template_type','wp-page'),(5432,4411,'_elementor_version','2.7.5'),(5433,4411,'_elementor_data','[{\"id\":\"99fbaeb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"27\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e818542\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.667000000000001591615728102624416351318359375,\"margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"c8a2f48\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Head office address:\",\"description_text\":\"3556 Hartford Way Vlg, Mount\\nPleasant, SC, 29466, Australia.\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":false},{\"id\":\"d5f3e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":29.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"9e16110\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Call for help:\",\"description_text\":\"(734) 697-2907<br\\/>\\n(843) 971-1906\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":false},{\"id\":\"729a4d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"485cc85\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"title_text\":\"Mail for information:\",\"description_text\":\"noreply@envato.com<br\\/>\\nnoreply@consultio.com\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d8bdc5a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"57\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"13f51f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"12c802c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/contact-about1.png\",\"id\":1568},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4c2fc51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"96\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d6bfcba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make a free consultation with our expert team to solve your prolems.\",\"style\":\"st-line-top1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0f30a93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For any inquiries relating to my  Retail and Leadership Programs*\",\"text_color\":\"#37404c\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f409baa\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"91\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d33da39\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f37ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f688838\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"a08c2d1\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(398,26,'_wp_page_template','default'),(399,26,'custom_header','1'),(400,26,'header_layout','19'),(401,26,'custom_pagetitle','show'),(402,26,'custom_title','Equipment For Sale'),(403,26,'ptitle_bg','a:2:{s:16:\"background-image\";s:90:\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"4255\";s:6:\"height\";s:4:\"1080\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:98:\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-150x150.jpeg\";}}'),(404,26,'ptitle_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(405,26,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(406,26,'content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}'),(407,26,'show_sidebar_page',''),(408,26,'sidebar_page_pos','right'),(409,26,'custom_footer','1'),(410,26,'footer_layout_custom','3201'),(5621,26,'eg_sources_html5_mp4',''),(412,26,'_elementor_edit_mode','builder'),(413,26,'_elementor_template_type','wp-page'),(414,26,'_elementor_version','3.2.2'),(415,26,'_elementor_data','[{\"id\":\"6a533d2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1229601\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d091b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Available Machines For Sale\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-bottom1\",\"text_align\":\"center\",\"title_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"176c3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>If you are interested in any of the below machines, please contact the System Amusement team to inquire. We look forward to speaking with you soon!<\\/p><h5><strong>Call today at: <\\/strong><a href=\\\"tel:509-993-4655\\\"><strong>509-993-4655<\\/strong><\\/a><\\/h5>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a46b963\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"cdc72ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"66ee137\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Munsters Pinball Machine\",\"description_text\":\"Like new condition, with several new parts.\\n\",\"image_size\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"title_color\":\"#D20000\",\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"0455c5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ee1cf24\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Munsters Pinball Machine\",\"description_text\":\"Like new condition, with several new parts.\\n\",\"image_size\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"title_color\":\"#D20000\",\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35d76f2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"fcd8f82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1728f7a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Munsters Pinball Machine\",\"description_text\":\"Like new condition, with several new parts.\\n\",\"image_size\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"title_color\":\"#D20000\",\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"b72d60e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"bb7f7d9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Munsters Pinball Machine\",\"description_text\":\"Like new condition, with several new parts.\\n\",\"image_size\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"title_color\":\"#D20000\",\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"45\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interested in this equipment?\",\"desc\":\"Call us today!\",\"btn_text\":\"509-993-4655\",\"btn_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"btn_link\":{\"url\":\"tel:509-993-4655\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false}]'),(5589,4438,'_elementor_edit_mode','builder'),(5590,4438,'_elementor_template_type','wp-page'),(5591,4438,'_elementor_version','3.2.2'),(5592,4438,'_elementor_data','[{\"id\":\"6a533d2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1229601\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d091b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Available Machines For Sale\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-bottom1\",\"text_align\":\"center\",\"title_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"176c3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>If you are interested in any of the below machines, please contact the System Amusement team to inquire. We look forward to speaking with you soon!<\\/p><h5><strong>Call today at: <\\/strong><a href=\\\"tel:509-993-4655\\\"><strong>509-993-4655<\\/strong><\\/a><\\/h5>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a46b963\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"cdc72ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"66ee137\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Munsters Pinball Machine\",\"description_text\":\"Like new condition, with several new parts.\\n\",\"image_size\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"title_color\":\"#D20000\",\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"0455c5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ee1cf24\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Munsters Pinball Machine\",\"description_text\":\"Like new condition, with several new parts.\\n\",\"image_size\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"title_color\":\"#D20000\",\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35d76f2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"fcd8f82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1728f7a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Munsters Pinball Machine\",\"description_text\":\"Like new condition, with several new parts.\\n\",\"image_size\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"title_color\":\"#D20000\",\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"b72d60e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"bb7f7d9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Munsters Pinball Machine\",\"description_text\":\"Like new condition, with several new parts.\\n\",\"image_size\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"title_color\":\"#D20000\",\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"45\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interested in this equipment?\",\"desc\":\"Call us today!\",\"btn_text\":\"509-993-4655\",\"btn_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"btn_link\":{\"url\":\"tel:509-993-4655\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false}]'),(5541,4429,'_elementor_template_type','wp-page'),(5542,4429,'_elementor_version','2.7.5'),(5543,4429,'_elementor_data','[{\"id\":\"6a533d2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1229601\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d091b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Available Machines For Sale\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-bottom1\",\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"176c3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>If you are interested in any of the below machines, please contact the System Amusement team to inquire. We look forward to speaking with you soon!<\\/p><h5><strong>Call today at: <\\/strong><a href=\\\"tel:509-993-4655\\\"><strong>509-993-4655<\\/strong><\\/a><\\/h5>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a46b963\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"cdc72ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"66ee137\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Munsters Pinball Machine\",\"description_text\":\"Like new condition, with several new parts.\\n\",\"image_size\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"title_color\":\"#D20000\",\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"0455c5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ee1cf24\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Munsters Pinball Machine\",\"description_text\":\"Like new condition, with several new parts.\\n\",\"image_size\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"title_color\":\"#D20000\",\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35d76f2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"fcd8f82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1728f7a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Munsters Pinball Machine\",\"description_text\":\"Like new condition, with several new parts.\\n\",\"image_size\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"title_color\":\"#D20000\",\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"b72d60e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"bb7f7d9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Munsters Pinball Machine\",\"description_text\":\"Like new condition, with several new parts.\\n\",\"image_size\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"title_color\":\"#D20000\",\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bf4d915\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5282614\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"6b326e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71555f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4b32f49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We bring more than 24 years\\u2019 senior experience forging of\\ncollaborations across government.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11f730c\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"list\":[{\"title\":\"\",\"content\":\"Praesent feugiat sem mattis.\",\"_id\":\"5468f9e\"},{\"title\":\"\",\"content\":\"A wonderful serenity.\",\"_id\":\"e337312\"},{\"title\":\"\",\"content\":\"Premium services for you.\",\"_id\":\"a1fd6d3\"},{\"title\":\"\",\"content\":\"Set a link back to photo.\",\"_id\":\"7341c94\"}]},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"596ae67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"about-call\\\">Call to ask <a href=\\\"#\\\">any question<\\/a>  <span>540-325-1523<\\/span><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dffa2c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/about-gap.png\",\"id\":1896},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"41e6e03\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/signature.png\",\"id\":1892},\"title\":\"Natalia Duke\",\"sub_title\":\"(Chairman and founder)\"},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"07e4861\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"45\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more about us?\",\"desc\":\"Just download brochure...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false}]'),(5527,4427,'_wp_page_template','default'),(5528,4427,'_elementor_edit_mode','builder'),(5529,4427,'_elementor_template_type','wp-page'),(5530,4427,'_elementor_version','2.7.5'),(5531,4427,'_elementor_data','[{\"id\":\"bf4d915\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5282614\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"9d091b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re a global stakeholder relations and partnership building consultancy.\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b326e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71555f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"176c3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Collaborate Consulting exists to find the place where to being seemingly disparate interests meet. From that point of the connection, we create platforms.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4b32f49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We bring more than 24 years\\u2019 senior experience forging of\\ncollaborations across government.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11f730c\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"list\":[{\"title\":\"\",\"content\":\"Praesent feugiat sem mattis.\",\"_id\":\"5468f9e\"},{\"title\":\"\",\"content\":\"A wonderful serenity.\",\"_id\":\"e337312\"},{\"title\":\"\",\"content\":\"Premium services for you.\",\"_id\":\"a1fd6d3\"},{\"title\":\"\",\"content\":\"Set a link back to photo.\",\"_id\":\"7341c94\"}]},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"596ae67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"about-call\\\">Call to ask <a href=\\\"#\\\">any question<\\/a>  <span>540-325-1523<\\/span><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dffa2c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/about-gap.png\",\"id\":1896},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"41e6e03\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/signature.png\",\"id\":1892},\"title\":\"Natalia Duke\",\"sub_title\":\"(Chairman and founder)\"},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"07e4861\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1548748\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/about1.png\",\"id\":1877},\"image_size\":\"full\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-17\",\"bottom\":\"0\",\"left\":\"-22\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"45\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more about us?\",\"desc\":\"Just download brochure...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"ct_cta\"},{\"id\":\"b7c7989\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"58\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0f1e849\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4cae67e\",\"elType\":\"widget\",\"settings\":{\"title\":\"We position our clients at the forefront of their field by advanced services.\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0399c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"83f630e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We bring more than 20 years\\u2019 senior experience forging\\ncollaborations across government, private sector and\\ninternational forums.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"584b9d6\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"layout\":\"2\",\"source\":[\"law|service-category\"],\"limit\":4,\"col_md\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\",\"id\":1536},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(2,2,2,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.9369999999999976125764078460633754730224609375},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consultio is a professional consulting company\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.0630000000000023874235921539366245269775390625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku ssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"861b1e7\",\"elType\":\"widget\",\"settings\":{\"history\":[{\"title\":\"12th Jan, 2018\",\"content\":\"Establishment of Constrio\",\"_id\":\"d10d5c8\"},{\"title\":\"2nd Feb, 2018\",\"content\":\"Exhibition Planning & Exhibition Management\",\"_id\":\"94b661a\"},{\"title\":\"8th Jul, 2018\",\"content\":\"Registered as a construction company\",\"_id\":\"56108b1\"},{\"title\":\"21st Jul, 2018\",\"content\":\"Growth internationallyfirst half of the 2018s\",\"_id\":\"c00ee7f\"},{\"title\":\"18th Aug, 2018\",\"content\":\"Construction bought the Greek company Delta\",\"_id\":\"49c19e4\"},{\"title\":\"19th Aug, 2018\",\"content\":\"The purpose of the business plan\",\"_id\":\"60f348b\"},{\"title\":\"27th Sep, 2018\",\"content\":\"For lean business plans, operational plans, and strategic plans\",\"_id\":\"4c4e8fe\"},{\"title\":\"2nd Jan, 2019\",\"content\":\"Focus business history on what matters to planning\",\"_id\":\"094e427\"},{\"title\":\"8th Jul, 2019\",\"content\":\"Award winner\",\"_id\":\"cad9be1\"},{\"title\":\"22nd Sep, 2019\",\"content\":\"History to Unite and Inspire People\",\"_id\":\"8219566\"}],\"start_text\":\"Start\",\"end_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/theme-15.jpg\",\"id\":1860},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_history\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d781fc\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#e4eaee\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"957d09c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e4ee5a1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5805aec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.167000000000001591615728102624416351318359375},\"elements\":[{\"id\":\"876857f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have many reviews from our satisfied clients.\",\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"a69669a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.832999999999998408384271897375583648681640625},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f11685b\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-07.jpg\",\"id\":1656},\"title\":\"Kathleen Smith\",\"position\":\"Senior Director\",\"description\":\"We also bring a strong interest in coaching and capability building, with an emphasis on emotional.\",\"_id\":\"7f74b0d\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-08.jpg\",\"id\":1657},\"title\":\"Van Hunter\",\"position\":\"Senior Director\",\"description\":\"I love that moment when we find the connections between organisations and envisage the initiative or platform.\",\"_id\":\"d86d736\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-09.jpg\",\"id\":1658},\"title\":\"Macquarie Telecom\",\"position\":\"Leadership Group\",\"description\":\"He was great in planting the seed and allowing the group to transition into a collaborative discussion pertaining.\",\"_id\":\"1c9b8b4\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Fred L Smith \",\"position\":\"Senior Director\",\"description\":\"We also bring a strong interest in coaching and capability building, with an emphasis on emotional.\",\"_id\":\"d9784b9\"}],\"slides_to_show\":\"3\",\"arrows\":\"true\",\"infinite\":\"true\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"col_md\":\"2\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"720bd044\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1f6a8df8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"49fda913\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(417,28,'_wp_page_template','default'),(418,28,'custom_header',''),(419,28,'header_layout','1'),(420,28,'custom_pagetitle','show'),(421,28,'custom_title',''),(422,28,'ptitle_bg','a:2:{s:16:\"background-image\";s:81:\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-10.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1539\";s:6:\"height\";s:4:\"1200\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:89:\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-10-150x150.jpg\";}}'),(423,28,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(424,28,'content_bg_color','a:3:{s:5:\"color\";s:7:\"#eef2fb\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:19:\"rgba(238,242,251,1)\";}'),(425,28,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(426,28,'show_sidebar_page',''),(427,28,'sidebar_page_pos','right'),(428,28,'custom_footer',''),(429,28,'footer_layout_custom',''),(430,28,'slide_template','default'),(431,28,'_elementor_edit_mode','builder'),(432,28,'_elementor_template_type','wp-page'),(433,28,'_elementor_version','2.8.2'),(434,28,'_elementor_data','[{\"id\":\"53e9f59\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2d122fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.417000000000001591615728102624416351318359375},\"elements\":[{\"id\":\"a1dc510\",\"elType\":\"widget\",\"settings\":{\"title\":\"We draw on our global network to assemble a team of experts.\",\"sub_title\":\"Team\",\"sub_title_color\":\"#595959\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"603daca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.582999999999998408384271897375583648681640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d3ffe8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We also bring a strong interest in coaching and capability building, with an emphasis on emotional intelligence and effective stakeholder relationships.\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6dc6244\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"32\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d5aaa1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"88f2e7b\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-07.jpg\",\"id\":1656},\"title\":\"Donald Johnson\",\"position\":\"Executive Manager\",\"email\":\"\",\"phone\":\"\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"35409ba\",\"btn_text\":\"Details\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/team-01.jpg\",\"id\":1690},\"title\":\"Jewel D Smith\",\"position\":\"Executive Director\",\"email\":\"\",\"phone\":\"\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"80b51bd\",\"btn_text\":\"Details\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/team-02.jpg\",\"id\":1691},\"title\":\"Alan Smith\",\"position\":\"Managing Director\",\"email\":\"\",\"phone\":\"\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"46930fd\",\"btn_text\":\"Details\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/team-03.jpg\",\"id\":1692},\"title\":\"Brad Smith\",\"position\":\"Executive Manager\",\"email\":\"\",\"phone\":\"\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"82fc396\",\"btn_text\":\"Details\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Kathleen Smith\",\"position\":\"Senior Director\",\"email\":\"\",\"phone\":\"\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"71c9864\",\"btn_text\":\"Details\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/team-04.jpg\",\"id\":1693},\"title\":\"Joyce\\u00a0Thompson\",\"position\":\"Asistant Manager\",\"email\":\"\",\"phone\":\"\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"62b6c11\",\"btn_text\":\"Details\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-05.jpg\",\"id\":401},\"title\":\"Kathleen Smith\",\"position\":\"Executive Manager\",\"email\":\"\",\"phone\":\"\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"10be1e6\",\"btn_text\":\"Details\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-09.jpg\",\"id\":1658},\"title\":\"Joyce Thompson\",\"position\":\"Executive Manager\",\"email\":\"\",\"phone\":\"\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"ffd748f\",\"btn_text\":\"Details\"}],\"col_md\":\"2\",\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"100\",\"height\":\"100\"},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"186df5b5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1f140b8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"661063e1\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(435,28,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(436,28,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(437,28,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:6:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:32:\"sub_title_typography_font_family\";i:1;s:30:\"sub_title_typography_font_size\";i:1;s:32:\"sub_title_typography_font_weight\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:2;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:3;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_md\";i:1;s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:10:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(438,30,'_wp_page_template','default'),(439,30,'custom_header',''),(440,30,'header_layout','1'),(441,30,'custom_pagetitle','show'),(442,30,'custom_title',''),(443,30,'ptitle_bg','a:2:{s:16:\"background-image\";s:81:\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-06.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1535\";s:6:\"height\";s:4:\"1200\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:89:\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-06-150x150.jpg\";}}'),(444,30,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(445,30,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(446,30,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(447,30,'show_sidebar_page',''),(448,30,'sidebar_page_pos','right'),(449,30,'custom_footer',''),(450,30,'footer_layout_custom',''),(451,30,'slide_template','default'),(452,30,'_elementor_edit_mode','builder'),(453,30,'_elementor_template_type','wp-page'),(454,30,'_elementor_data','[{\"id\":\"595e705\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbf6e39\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e58aff6\",\"elType\":\"widget\",\"settings\":{\"title\":\"You can learn more from our asked questions\",\"sub_title\":\"FAQ\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"0bac2d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64b4dfa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku sendeno\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a8d88f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"74\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"32\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"325916e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"60e5f30\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"What should I include in my personal statement?\",\"ac_content\":\"Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiu smod tempor incididunt<\\/u> ut labore.\",\"_id\":\"98e146c\"},{\"ac_title\":\"Will membership plans be charged automatically?\",\"ac_content\":\"Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiu smod tempor incididunt<\\/u> ut labore.\",\"_id\":\"25b80e7\"},{\"ac_title\":\"How can I make a change to my application?\",\"ac_content\":\"Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiu smod tempor incididunt<\\/u> ut labore.\",\"_id\":\"5caa056\"}]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"0f620d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"346929e\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"Where can I find out about funding?\",\"ac_content\":\"Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiu smod tempor incididunt<\\/u> ut labore.\",\"_id\":\"98e146c\"},{\"ac_title\":\"What will happen when I\\u2019ve sent my application?\",\"ac_content\":\"Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiu smod tempor incididunt<\\/u> ut labore.\",\"_id\":\"25b80e7\"},{\"ac_title\":\"Can I get a free trial before I purchase?\",\"ac_content\":\"Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiu smod tempor incididunt<\\/u> ut labore.\",\"_id\":\"5caa056\"}]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d6e093c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"53\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f503527\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fee7573\",\"elType\":\"widget\",\"settings\":{\"title\":\"Still have you any problem  for solutions?\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"d0a7700\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d6687\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For any inquiries relating to my  Retail and Leadership\\nPrograms or Coaching and Mentoring services feel free to speak to me personally by call us during business hours.\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6783ba1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"53\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3dd5ac9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.582999999999998408384271897375583648681640625,\"margin\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"1bf7025\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Head office address:\",\"description_text\":\"3556 Hartford Way Vlg, Mount\\nPleasant, SC, 29466, Australia.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"1655275\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Call for help:\",\"description_text\":\"(734) 697-2907<br\\/>\\n(843) 971-1906\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"daf846a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"title_text\":\"Mail for information:\",\"description_text\":\"noreply@envato.com<br\\/>\\nnoreply@consultio.com\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":false},{\"id\":\"ee30c25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.417000000000001591615728102624416351318359375,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"6017a24\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"1615\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4290b7d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6fc683bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"65d291e6\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"a2d1f31\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(455,30,'_elementor_version','2.7.5'),(456,30,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(457,30,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(458,30,'_elementor_controls_usage','a:8:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:2;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:8;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:5;s:13:\"margin_tablet\";i:5;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_line_height\";i:2;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:5;s:16:\"content_position\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:5;s:7:\"padding\";i:1;s:14:\"padding_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:12:\"ct_accordion\";i:2;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:2:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(459,32,'_wp_page_template','default'),(460,32,'custom_header',''),(461,32,'header_layout','1'),(462,32,'custom_pagetitle','show'),(463,32,'custom_title',''),(464,32,'ptitle_bg','a:2:{s:16:\"background-image\";s:81:\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-13.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1542\";s:6:\"height\";s:4:\"1200\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:89:\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-13-150x150.jpg\";}}'),(465,32,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(466,32,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(467,32,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(468,32,'show_sidebar_page',''),(469,32,'sidebar_page_pos','right'),(470,32,'custom_footer',''),(471,32,'footer_layout_custom',''),(472,32,'slide_template','default'),(473,32,'_elementor_edit_mode','builder'),(474,32,'_elementor_template_type','wp-page'),(475,32,'_elementor_version','2.7.5'),(476,32,'_elementor_data','[{\"id\":\"47aaa16\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"67\",\"right\":0,\"bottom\":\"34\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2be9dea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e2740d\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re a global stakeholder relations and consultancy.\",\"sub_title\":\"Pricing\",\"sub_title_color\":\"#595959\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"e3c1a10\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42e8890\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Collaborate Consulting exists to find the place where to being seemingly disparate interests meet. From that point of the\\nconnection, we create platforms.\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5c8389a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"0632e7a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ba3c267\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Monthly\",\"content_type\":\"template\",\"tab_content\":\"Tab Content\",\"tab_content_template\":\"1214\",\"_id\":\"c8e97fc\"},{\"tab_title\":\"Yearly <span>Save 20%<\\/span>\",\"content_type\":\"template\",\"tab_content\":\"Tab Content\",\"tab_content_template\":\"1217\",\"_id\":\"6de80c2\"}],\"tab_style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_tabs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f5afa04\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2854a98b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1927c5f8\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(477,32,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(478,32,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(479,32,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:5:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:32:\"sub_title_typography_font_family\";i:1;s:32:\"sub_title_typography_font_weight\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:1;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:2;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(480,123,'_wp_page_template','default'),(481,123,'custom_header',''),(482,123,'header_layout','1'),(483,123,'custom_pagetitle','themeoption'),(484,123,'custom_title',''),(485,123,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(486,123,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(487,123,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(488,123,'content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(489,123,'show_sidebar_page',''),(490,123,'sidebar_page_pos','right'),(491,123,'custom_footer',''),(492,123,'footer_layout_custom',''),(493,123,'slide_template','default'),(494,123,'_elementor_edit_mode','builder'),(495,123,'_elementor_template_type','wp-page'),(496,123,'_elementor_version','2.8.1'),(497,123,'_elementor_data','[{\"id\":\"4f12f44b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"607e712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33eb12a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn something more from our blog\",\"sub_title\":\"Pricing\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"20cca318\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"45\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"1dc34528\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"984afbb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"baf5018\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"be0576a\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"true\",\"limit\":6,\"col_md\":\"2\",\"slides_to_scroll\":\"3\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33c065af\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8afbc6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2eb38a40\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(498,123,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(499,123,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(500,123,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:3:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;s:15:\"stretch_section\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:3;s:7:\"padding\";i:3;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"arrows\";i:1;s:4:\"dots\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(501,125,'_wp_page_template','default'),(502,125,'custom_header',''),(503,125,'header_layout','1'),(504,125,'custom_pagetitle','show'),(505,125,'custom_title','Blog Grid'),(506,125,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(507,125,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(508,125,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(509,125,'content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(510,125,'show_sidebar_page','1'),(511,125,'sidebar_page_pos','left'),(512,125,'custom_footer',''),(513,125,'footer_layout_custom',''),(514,125,'slide_template','default'),(515,125,'_elementor_edit_mode','builder'),(516,125,'_elementor_template_type','wp-page'),(517,125,'_elementor_version','2.8.2'),(518,125,'_elementor_data','[{\"id\":\"928f20f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"b1ac6d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c0262c\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_grid\"}],\"isInner\":false}],\"isInner\":false}]'),(519,125,'_elementor_controls_usage','a:3:{s:12:\"ct_blog_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}s:14:\"source_section\";a:1:{s:10:\"ct_animate\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}}}}}'),(520,127,'_wp_page_template','default'),(521,127,'custom_header',''),(522,127,'header_layout','1'),(523,127,'custom_pagetitle','show'),(524,127,'custom_title','Blog Grid'),(525,127,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(526,127,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(527,127,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(528,127,'content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(529,127,'show_sidebar_page','1'),(530,127,'sidebar_page_pos','right'),(531,127,'custom_footer',''),(532,127,'footer_layout_custom',''),(533,127,'slide_template','default'),(534,127,'_elementor_edit_mode','builder'),(535,127,'_elementor_template_type','wp-page'),(536,127,'_elementor_version','2.8.2'),(537,127,'_elementor_data','[{\"id\":\"9549dba\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"fba6296\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"94a4695\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_grid\"}],\"isInner\":false}],\"isInner\":false}]'),(538,127,'_elementor_controls_usage','a:3:{s:12:\"ct_blog_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}s:14:\"source_section\";a:1:{s:10:\"ct_animate\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}}}}}'),(539,129,'_wp_page_template','default'),(540,129,'custom_header',''),(541,129,'header_layout','1'),(542,129,'custom_pagetitle','show'),(543,129,'custom_title','Blog Grid'),(544,129,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(545,129,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(546,129,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(547,129,'content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(548,129,'show_sidebar_page',''),(549,129,'sidebar_page_pos','right'),(550,129,'custom_footer',''),(551,129,'footer_layout_custom',''),(552,129,'slide_template','default'),(553,129,'_elementor_edit_mode','builder'),(554,129,'_elementor_template_type','wp-page'),(555,129,'_elementor_data','[{\"id\":\"fb04492\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b3c5f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f1a14f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn something more from our blog\",\"sub_title\":\"Our Service area\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"f25fa3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"a6d957c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3df308c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"gap\":\"extended\"},\"elements\":[{\"id\":\"95c454c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b97f62b\",\"elType\":\"widget\",\"settings\":{\"limit\":6,\"filter_default_title\":\"All\",\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"filter_alignment\":\"right\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ef66b82\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4112df1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"30b600db\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(556,129,'_elementor_version','2.8.2'),(557,129,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_blog_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:10:\"ct_animate\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:16:\"filter_alignment\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:4:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;}}}}}'),(558,3974,'_menu_item_type','custom'),(559,3974,'_menu_item_menu_item_parent','0'),(560,3974,'_menu_item_object_id','3974'),(561,3974,'_menu_item_object','custom'),(562,3974,'_menu_item_target',''),(563,3974,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(564,3974,'_menu_item_xfn',''),(565,3974,'_menu_item_url','#'),(566,3974,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(567,3974,'_menu_item_ct_icon',''),(568,3974,'_menu_item_ct_megaprofile','3953'),(569,3974,'_menu_item_ct_onepage','no-one-page'),(570,3974,'_menu_item_ct_onepage_offset',''),(571,3975,'_menu_item_type','custom'),(572,3975,'_menu_item_menu_item_parent','0'),(573,3975,'_menu_item_object_id','3975'),(574,3975,'_menu_item_object','custom'),(575,3975,'_menu_item_target',''),(576,3975,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(577,3975,'_menu_item_xfn',''),(578,3975,'_menu_item_url','#'),(579,3975,'_menu_item_ct_megaprofile','3955'),(580,3975,'_menu_item_ct_icon',''),(581,3975,'_menu_item_ct_onepage','no-one-page'),(582,3975,'_menu_item_ct_onepage_offset',''),(583,3976,'_menu_item_type','custom'),(584,3976,'_menu_item_menu_item_parent','0'),(585,3976,'_menu_item_object_id','3976'),(586,3976,'_menu_item_object','custom'),(587,3976,'_menu_item_target',''),(588,3976,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(589,3976,'_menu_item_xfn',''),(590,3976,'_menu_item_url','#'),(591,3976,'_menu_item_ct_megaprofile','3955'),(592,3976,'_menu_item_ct_icon',''),(593,3976,'_menu_item_ct_onepage','no-one-page'),(594,3976,'_menu_item_ct_onepage_offset',''),(595,3977,'_menu_item_type','custom'),(596,3977,'_menu_item_menu_item_parent','0'),(597,3977,'_menu_item_object_id','3977'),(598,3977,'_menu_item_object','custom'),(599,3977,'_menu_item_target',''),(600,3977,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(601,3977,'_menu_item_xfn',''),(602,3977,'_menu_item_url','#section-home'),(603,3977,'_menu_item_ct_megaprofile','3953'),(604,3977,'_menu_item_ct_icon',''),(605,3977,'_menu_item_ct_onepage','is-one-page'),(606,3977,'_menu_item_ct_onepage_offset',''),(607,3978,'_menu_item_type','custom'),(608,3978,'_menu_item_menu_item_parent','0'),(609,3978,'_menu_item_object_id','3978'),(610,3978,'_menu_item_object','custom'),(611,3978,'_menu_item_target',''),(612,3978,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(613,3978,'_menu_item_xfn',''),(614,3978,'_menu_item_url','#section-about'),(615,3978,'_menu_item_ct_megaprofile','0'),(616,3978,'_menu_item_ct_icon',''),(617,3978,'_menu_item_ct_onepage','is-one-page'),(618,3978,'_menu_item_ct_onepage_offset','80'),(619,3979,'_menu_item_type','custom'),(620,3979,'_menu_item_menu_item_parent','0'),(621,3979,'_menu_item_object_id','3979'),(622,3979,'_menu_item_object','custom'),(623,3979,'_menu_item_target',''),(624,3979,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(625,3979,'_menu_item_xfn',''),(626,3979,'_menu_item_url','#section-services'),(627,3979,'_menu_item_ct_megaprofile','0'),(628,3979,'_menu_item_ct_icon',''),(629,3979,'_menu_item_ct_onepage','is-one-page'),(630,3979,'_menu_item_ct_onepage_offset','80'),(631,3980,'_menu_item_type','custom'),(632,3980,'_menu_item_menu_item_parent','0'),(633,3980,'_menu_item_object_id','3980'),(634,3980,'_menu_item_object','custom'),(635,3980,'_menu_item_target',''),(636,3980,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(637,3980,'_menu_item_xfn',''),(638,3980,'_menu_item_url','#section-team'),(639,3980,'_menu_item_ct_megaprofile','0'),(640,3980,'_menu_item_ct_icon',''),(641,3980,'_menu_item_ct_onepage','is-one-page'),(642,3980,'_menu_item_ct_onepage_offset','80'),(643,3981,'_menu_item_type','custom'),(644,3981,'_menu_item_menu_item_parent','0'),(645,3981,'_menu_item_object_id','3981'),(646,3981,'_menu_item_object','custom'),(647,3981,'_menu_item_target',''),(648,3981,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(649,3981,'_menu_item_xfn',''),(650,3981,'_menu_item_url','#section-project'),(651,3981,'_menu_item_ct_megaprofile','0'),(652,3981,'_menu_item_ct_icon',''),(653,3981,'_menu_item_ct_onepage','is-one-page'),(654,3981,'_menu_item_ct_onepage_offset','80'),(655,3982,'_menu_item_type','custom'),(656,3982,'_menu_item_menu_item_parent','0'),(657,3982,'_menu_item_object_id','3982'),(658,3982,'_menu_item_object','custom'),(659,3982,'_menu_item_target',''),(660,3982,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(661,3982,'_menu_item_xfn',''),(662,3982,'_menu_item_url','#section-testimonials'),(663,3982,'_menu_item_ct_megaprofile','0'),(664,3982,'_menu_item_ct_icon',''),(665,3982,'_menu_item_ct_onepage','is-one-page'),(666,3982,'_menu_item_ct_onepage_offset','80'),(667,3983,'_menu_item_type','custom'),(668,3983,'_menu_item_menu_item_parent','0'),(669,3983,'_menu_item_object_id','3983'),(670,3983,'_menu_item_object','custom'),(671,3983,'_menu_item_target',''),(672,3983,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(673,3983,'_menu_item_xfn',''),(674,3983,'_menu_item_url','#section-blog'),(675,3983,'_menu_item_ct_megaprofile','0'),(676,3983,'_menu_item_ct_icon',''),(677,3983,'_menu_item_ct_onepage','is-one-page'),(678,3983,'_menu_item_ct_onepage_offset','80'),(679,132,'_wp_page_template','default'),(680,132,'_elementor_controls_usage','a:0:{}'),(681,132,'custom_header',''),(682,132,'header_layout','1'),(683,132,'custom_pagetitle','themeoption'),(684,132,'custom_title',''),(685,132,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(686,132,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(687,132,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(688,132,'content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(689,132,'show_sidebar_page',''),(690,132,'sidebar_page_pos','right'),(691,132,'custom_footer',''),(692,132,'footer_layout_custom',''),(693,132,'slide_template','default'),(694,134,'_wp_page_template','template-parts/blog-classic.php'),(695,134,'_elementor_controls_usage','a:0:{}'),(696,134,'custom_header',''),(697,134,'header_layout','1'),(698,134,'custom_pagetitle','show'),(699,134,'custom_title','Blog Standard'),(700,134,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(701,134,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(702,134,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(703,134,'content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(704,134,'show_sidebar_page','1'),(705,134,'sidebar_page_pos','left'),(706,134,'custom_footer',''),(707,134,'footer_layout_custom',''),(708,134,'slide_template','default'),(709,136,'_wp_page_template','template-parts/blog-classic.php'),(710,136,'_elementor_controls_usage','a:0:{}'),(711,136,'custom_header',''),(712,136,'header_layout','1'),(713,136,'custom_pagetitle','show'),(714,136,'custom_title','Blog Standard'),(715,136,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(716,136,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(717,136,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(718,136,'content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(719,136,'show_sidebar_page',''),(720,136,'sidebar_page_pos','right'),(721,136,'custom_footer',''),(722,136,'footer_layout_custom',''),(723,136,'slide_template','default'),(724,362,'_wp_page_template','default'),(725,362,'custom_header',''),(726,362,'header_layout','1'),(727,362,'custom_pagetitle','themeoption'),(728,362,'custom_title',''),(729,362,'ptitle_bg','a:2:{s:16:\"background-image\";s:83:\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/gallery-02.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1553\";s:6:\"height\";s:3:\"600\";s:5:\"width\";s:3:\"600\";s:9:\"thumbnail\";s:91:\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/gallery-02-150x150.jpg\";}}'),(730,362,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(731,362,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(732,362,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(733,362,'show_sidebar_page',''),(734,362,'sidebar_page_pos','right'),(735,362,'custom_footer',''),(736,362,'footer_layout_custom',''),(737,362,'slide_template','default'),(738,362,'_elementor_edit_mode','builder'),(739,362,'_elementor_template_type','wp-page'),(740,362,'_elementor_version','2.7.5'),(741,362,'_elementor_data','[{\"id\":\"2645f20\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"33d032e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0f31e21\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will satisfy you by our work ideas\",\"sub_title\":\"FAQ\",\"style\":\"st-line-top1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"89f4b61\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80ad649\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku sendeno\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e2d4a6c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"de3f4f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"605e76d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/team-single.jpg\",\"id\":1706},\"title\":\"Ronald Dumple\",\"position\":\"Web Designer\",\"email\":\"info@consulio.com \",\"phone\":\"+123 (4567) 890\",\"address\":\"380 St Kilda Road, Melbourne VIC 3004, Australia\",\"icons\":[{\"ct_icon\":{\"value\":\"material zmdi zmdi-facebook\",\"library\":\"material\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"7cf43ed\"},{\"ct_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"def76d5\"},{\"ct_icon\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"35b4313\"},{\"ct_icon\":{\"value\":\"fab fa-behance\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"b97b712\"}],\"btn_text\":\"Appionment\",\"btn_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"ct_team_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b0ab90\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11c2a9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5f5bc25\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet consectetur adipiscing tofo dosed do eiusmod tempor incididunt ut labore  dolore sedodir magna aliqua.  Lorem Ipsum has been rode. Making good food choices takes on special significant for people living with diabetes.  Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magnaaliqua anim id est laborum. Sed ut perspiciatis unde.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3b73102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam. Ut enim ad minim veniam. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"32\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f3d2e30\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"45\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6b4a0ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17e0426\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"selected_icon\":{\"value\":\"flaticon flaticon-skill\",\"library\":\"flaticon\"},\"title_text\":\"Expert team member\",\"description_text\":\"Lorem ipsum dolor sit amet, cotu\\ntopsectetur adipisicing elit, sed.\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":false},{\"id\":\"eaf1b54\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"faff530\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"selected_icon\":{\"value\":\"flaticon flaticon-setting-spanner\",\"library\":\"flaticon\"},\"title_text\":\"24\\/7 Customer support\",\"description_text\":\"Lorem ipsum dolor sit amet, cotu\\ntopsectetur adipisicing elit, sed.\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1927758b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"9\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"aafda89\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"29260a70\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(742,362,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(743,362,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(744,362,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:2:{s:5:\"title\";i:1;s:5:\"style\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:4;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:3;s:6:\"margin\";i:3;}}}}s:15:\"ct_team_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_Content\";a:9:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:8:\"position\";i:1;s:5:\"email\";i:1;s:5:\"phone\";i:1;s:7:\"address\";i:1;s:5:\"icons\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:2;}}s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:13:\"selected_icon\";i:2;s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(745,367,'_wp_page_template','default'),(746,367,'custom_header',''),(747,367,'header_layout','1'),(748,367,'custom_pagetitle','show'),(749,367,'custom_title',''),(750,367,'ptitle_bg','a:2:{s:16:\"background-image\";s:81:\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-10.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1539\";s:6:\"height\";s:4:\"1200\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:89:\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-10-150x150.jpg\";}}'),(751,367,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(752,367,'content_bg_color','a:3:{s:5:\"color\";s:7:\"#e4eaee\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:19:\"rgba(228,234,238,1)\";}'),(753,367,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(754,367,'show_sidebar_page',''),(755,367,'sidebar_page_pos','right'),(756,367,'custom_footer',''),(757,367,'footer_layout_custom',''),(758,367,'slide_template','default'),(759,367,'_elementor_edit_mode','builder'),(760,367,'_elementor_template_type','wp-page'),(761,367,'_elementor_version','2.8.2'),(762,367,'_elementor_data','[{\"id\":\"d23e4f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cb9323b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.75},\"elements\":[{\"id\":\"7f58838\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have many reviews from our satisfied clients.\",\"style\":\"st-line-left1\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"daa1215\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.25,\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1cb6926\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It\\u2019s always a joy to hear that the work I do has positively impacted our clients and that they are happy to share their experience.\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01c0a8c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1695462\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b6c0336\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-07.jpg\",\"id\":1656},\"title\":\"Kathleen Smith\",\"position\":\"Senior Director\",\"description\":\"We also bring a strong interest in coaching and capability building, with an emphasis on emotional.\",\"_id\":\"802cda4\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-08.jpg\",\"id\":1657},\"title\":\"Van Hunter\",\"position\":\"Senior Director\",\"description\":\"I love that moment when we find the connections between organisations and envisage the initiative or platform.\",\"_id\":\"cae1995\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-09.jpg\",\"id\":1658},\"title\":\"Macquarie Telecom\",\"position\":\"Leadership Group\",\"description\":\"He was great in planting the seed and allowing the group to transition into a\\ncollaborative discussion pertaining.\",\"_id\":\"3804c9a\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Fred L Smith\",\"position\":\"Senior Director\",\"description\":\"We also bring a strong interest in coaching and capability building, with an emphasis on emotional.\",\"_id\":\"9cc7cf6\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-05.jpg\",\"id\":401},\"title\":\"Carolyn Smith\",\"position\":\"Senior Director\",\"description\":\"I love that moment when we find the connections between organisations and envisage the initiative or platform.\",\"_id\":\"45dd5f6\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-04.jpg\",\"id\":400},\"title\":\"Pamela Johnson\",\"position\":\"Leadership Group\",\"description\":\"He was great in planting the seed and allowing the group to transition into a\\ncollaborative discussion pertaining.\",\"_id\":\"5a0d1f7\"}],\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_testimonial_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ed0847\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"9\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68d04724\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7d8484a6\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(763,367,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(764,367,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(765,367,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:2:{s:5:\"title\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:1;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:2;}}}}s:19:\"ct_testimonial_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:10:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(766,407,'_wp_page_template','default'),(767,407,'custom_header',''),(768,407,'header_layout','1'),(769,407,'custom_pagetitle','show'),(770,407,'custom_title','Services'),(771,407,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(772,407,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(773,407,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(774,407,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(775,407,'show_sidebar_page',''),(776,407,'sidebar_page_pos','right'),(777,407,'custom_footer',''),(778,407,'footer_layout_custom',''),(779,407,'slide_template','default'),(780,407,'_elementor_edit_mode','builder'),(781,407,'_elementor_template_type','wp-page'),(782,407,'_elementor_version','2.8.2'),(783,407,'_elementor_data','[{\"id\":\"f019bad\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"76\",\"right\":0,\"bottom\":\"68\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5ce29c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.9909999999999996589394868351519107818603515625},\"elements\":[{\"id\":\"d3b6aca\",\"elType\":\"widget\",\"settings\":{\"title\":\"We position our clients at the forefront of their field by advancing an agenda.\",\"sub_title\":\"Services\",\"sub_title_color\":\"#0e0e0e\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"877c444\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.0090000000000003410605131648480892181396484375,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a619a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Easily apply to multiple jobs with one click! Quick Apply shows you recommended jobs based off your most recent search and allows you to apply to 25+ jobs in a matter of seconds!\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d640f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"1e2ce89\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"16d5b63\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"button_text\":\"Read more\",\"limit\":6,\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"source\":[\"consultant|service-category\"],\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b5b5683\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4106b489\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5b8ee2df\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(784,407,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:5:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:32:\"sub_title_typography_font_family\";i:1;s:32:\"sub_title_typography_font_weight\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:1;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:2;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:10:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(785,409,'_wp_page_template','default'),(786,409,'custom_header','1'),(787,409,'header_layout','19'),(788,409,'custom_pagetitle','show'),(789,409,'custom_title','Our Services'),(790,409,'ptitle_bg','a:2:{s:16:\"background-image\";s:70:\"https://sa7717.dev34.info/wp-content/uploads/2021/03/touch-tunes-.jpeg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"4125\";s:6:\"height\";s:3:\"612\";s:5:\"width\";s:4:\"1098\";s:9:\"thumbnail\";s:78:\"https://sa7717.dev34.info/wp-content/uploads/2021/03/touch-tunes--150x150.jpeg\";}}'),(791,409,'ptitle_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(792,409,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(793,409,'content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}'),(794,409,'show_sidebar_page',''),(795,409,'sidebar_page_pos','right'),(796,409,'custom_footer','1'),(797,409,'footer_layout_custom','3201'),(5927,409,'eg_sources_html5_mp4',''),(799,409,'_elementor_edit_mode','builder'),(800,409,'_elementor_template_type','wp-page'),(801,409,'_elementor_version','3.2.2'),(802,409,'_elementor_data','[{\"id\":\"21b714b5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"76\",\"right\":0,\"bottom\":\"68\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"69e72f28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2703b0d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"sub_title_color\":\"#0e0e0e\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"76dfc09b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. <\\/p><p style=\\\"text-align: center;\\\"><strong>Call now: <a href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/strong><\\/p>\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf63871\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"f889722\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04edce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Pinball Machines\",\"description_text\":\"We offer some of the most cutting edge and popular pinball machines you can have in your location. \",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a1da2cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"77e1090\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/127abec3ea6540c295af41d2eead0221.jpeg\",\"id\":4371},\"title_text\":\"ATM Machines\",\"description_text\":\"This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!\",\"image_size\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"bb2e693\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7efb4e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.43.33-PM.png\",\"id\":4383},\"title_text\":\"Ski Ball\",\"description_text\":\"Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.\",\"image_size\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"d279aa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"78f809c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-tee.jpeg\",\"id\":4121},\"title_text\":\"Games\",\"description_text\":\"We have the most poplur bar games of all time like Buck Hunter and Golden Tee Golf. Get your location setup with these modern classics.\",\"image_size\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e4245be\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"0b46440\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2b45973\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/darts.jpeg\",\"id\":4364},\"title_text\":\"Dart Boards\",\"description_text\":\"System Amusement offers the best dart boards such as the Arachnid Bullshooter. Dart boards provide a classic game that everyone loves, yet our cutting edge equipment gives a modern and interactive twist.\",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"1f6ffc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"13da9a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-28-at-4.11.46-PM.png\",\"id\":4471},\"title_text\":\"Pool Tables\",\"description_text\":\"Pool tables are a must for successful bars. We offer quarter pool machines that will keep your customers excited and in your location for hours.\",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a75e86d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e62ae8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/touch-tunes-717.jpg\",\"id\":4459},\"title_text\":\"Touch Tunes\",\"description_text\":\"System Amusement proudly provides the Touch Tunes music system, that will bring the entertainment in your location to a whole new level!\",\"image_space\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"f751212\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ac6cdef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.32.35-PM.png\",\"id\":4372},\"title_text\":\"Juke Boxes\",\"description_text\":\"These have been a classic for literally decades. System Amusement carries the highest tech juke boxes in the industry. Contact us today to order yours.\",\"image_size\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a79ccc9\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E1E1E1\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c39a3fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28b93cce\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact System Amusement Today\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c01f84d\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/211037967555058\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"69fe256c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"723d79e7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Phone:\",\"description_text\":\"509-326-1551 \",\"list\":[],\"_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"title_color\":\"#000000\",\"desc_color\":\"#000000\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"92f313d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"title_text\":\"Email:\",\"description_text\":\"systemamusement@comcast.net\",\"list\":[],\"_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"desc_color\":\"#000000\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"24d41eb7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"title_text\":\"Hours:\",\"description_text\":\"Mon - Sat: 8 am - 5 pm, <br>Sunday: CLOSED\",\"list\":[],\"_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"desc_color\":\"#000000\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"6597b9af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"56a3fd32\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFD500FC\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65346727\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2dad7100\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our 50+ Years of Dedication to our Clients!\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#00BCFF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_typography_font_weight\":\"400\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1b770690\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"254dc8ea\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"7ba82c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3137a63e\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F00000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"5e436bbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a88bea1\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"716a6f28\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5993e11b\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"452077d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"53078710\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1d3cff3b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"244e1256\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"2237d8e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"fae14ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1b779718\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"58bb2ff8\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5470fc0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"56713e08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5676,4443,'_elementor_edit_mode','builder'),(5677,4443,'_elementor_template_type','wp-page'),(5678,4443,'_elementor_version','2.8.2'),(5679,4443,'_elementor_data','[{\"id\":\"21b714b5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"76\",\"right\":0,\"bottom\":\"68\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"69e72f28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2703b0d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"sub_title_color\":\"#0e0e0e\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"76dfc09b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. <\\/p><p style=\\\"text-align: center;\\\"><strong>Call now: <a href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/strong><\\/p>\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(5680,4443,'_elementor_css','a:6:{s:4:\"time\";i:1619647135;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(5663,4441,'_wp_page_template','default'),(5664,4441,'_elementor_edit_mode','builder'),(5665,4441,'_elementor_template_type','wp-page'),(5666,4441,'_elementor_version','2.8.2'),(5667,4441,'_elementor_data','[{\"id\":\"21b714b5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"76\",\"right\":0,\"bottom\":\"68\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"69e72f28\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.9909999999999996589394868351519107818603515625},\"elements\":[{\"id\":\"2703b0d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We position our clients at the forefront of their field by advancing an agenda.\",\"sub_title\":\"Services\",\"sub_title_color\":\"#0e0e0e\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4b3f4661\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.0090000000000003410605131648480892181396484375,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76dfc09b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Easily apply to multiple jobs with one click! Quick Apply shows you recommended jobs based off your most recent search and allows you to apply to 25+ jobs in a matter of seconds!\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a8ea759\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68d2945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5249e166\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"button_text\":\"Read more\",\"limit\":6,\"col_lg\":\"3\",\"col_xl\":\"3\",\"source\":[\"law|service-category\"],\"ct_animate\":\"wow fadeInUp\",\"layout\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a50ed4\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"26c4891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6cbd01b9\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(804,415,'_wp_page_template','default'),(805,415,'custom_header',''),(806,415,'header_layout','1'),(807,415,'custom_pagetitle','themeoption'),(808,415,'custom_title',''),(809,415,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(810,415,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(811,415,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(812,415,'content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(813,415,'show_sidebar_page',''),(814,415,'sidebar_page_pos','right'),(815,415,'custom_footer',''),(816,415,'footer_layout_custom',''),(817,415,'slide_template','default'),(818,415,'_elementor_edit_mode','builder'),(819,415,'_elementor_template_type','wp-page'),(820,415,'_elementor_data','[{\"id\":\"934d137\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"071\",\"right\":0,\"bottom\":\"33\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b2993d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.082999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"d7e414a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our client, global analytical techno company, wanted to build market.\",\"sub_title\":\"FAQ\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"c5cb0c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.917000000000001591615728102624416351318359375,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"255149c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In this context, our approach was to build trusted and strategic relationships within key sectors, with the goal of advancing health, trade and business outcomes.<\\/p>\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"228c27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"42\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf73b30\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7856011\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"col_md\":\"2\",\"filter\":\"true\",\"pagination_type\":\"loadmore\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_portfolio_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"50dc1332\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"9\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7156578d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"782c88ec\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"ct_animate\":\"wow zoomIn\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(821,415,'_elementor_version','2.8.2'),(822,415,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:7:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:28:\"title_typography_line_height\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;s:5:\"style\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:1;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:3;}}}}s:17:\"ct_portfolio_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"grid_section\";a:4:{s:6:\"col_md\";i:1;s:6:\"filter\";i:1;s:15:\"pagination_type\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:10:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(823,417,'_wp_page_template','default'),(824,417,'custom_header',''),(825,417,'header_layout','1'),(826,417,'custom_pagetitle','themeoption'),(827,417,'custom_title',''),(828,417,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(829,417,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(830,417,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(831,417,'content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(832,417,'show_sidebar_page',''),(833,417,'sidebar_page_pos','right'),(834,417,'custom_footer',''),(835,417,'footer_layout_custom',''),(836,417,'slide_template','default'),(837,417,'_elementor_edit_mode','builder'),(838,417,'_elementor_template_type','wp-page'),(839,417,'_elementor_version','2.8.2'),(840,417,'_elementor_data','[{\"id\":\"480e3e3e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"071\",\"right\":0,\"bottom\":\"33\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"29909522\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.082999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"3a5a486b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our client, global analytical techno company, wanted to build market.\",\"sub_title\":\"FAQ\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2047a9dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.917000000000001591615728102624416351318359375,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9c91bb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In this context, our approach was to build trusted and strategic relationships within key sectors, with the goal of advancing health, trade and business outcomes.<\\/p>\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"437e1689\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"17\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2cfad8b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"52e98c5\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"col_md\":\"2\",\"filter\":\"true\",\"layout\":\"2\",\"limit\":5,\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_portfolio_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75ed166d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"9\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1c7084ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"185e01e3\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"ct_animate\":\"wow zoomIn\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(841,417,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:7:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:28:\"title_typography_line_height\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;s:5:\"style\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:1;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:3;}}}}s:17:\"ct_portfolio_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:1;s:6:\"filter\";i:1;s:10:\"ct_animate\";i:1;}s:14:\"source_section\";a:1:{s:5:\"limit\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:10:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(842,483,'_wp_page_template','default'),(843,483,'custom_header','1'),(844,483,'header_layout','0'),(845,483,'custom_pagetitle','hide'),(846,483,'custom_title',''),(847,483,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(848,483,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(849,483,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(850,483,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(851,483,'show_sidebar_page',''),(852,483,'sidebar_page_pos','right'),(853,483,'custom_footer','1'),(854,483,'footer_layout_custom','1383'),(855,483,'slide_template','default'),(856,483,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(857,483,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(858,483,'_elementor_edit_mode','builder'),(859,483,'_elementor_template_type','wp-page'),(860,483,'_elementor_version','2.8.5'),(861,483,'_elementor_data','[{\"id\":\"d606d5f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/bg-landing.jpg\",\"id\":2891},\"background_position\":\"top center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/overlay-landing.png\",\"id\":2892},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"165\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bae5981\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"eec96ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/10\\/logo-footer.png\",\"id\":1513},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-landing wow fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d5f8be1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"56fd2a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true},{\"id\":\"bf7474d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60,\"_inline_size_tablet\":80},\"elements\":[{\"id\":\"f7fa48e\",\"elType\":\"widget\",\"settings\":{\"title\":\"One solution for all kinds of Consulting <cite>business<\\/cite>\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"center\",\"_css_classes\":\"h-text-shadow\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"304d75c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.995999999999998664179656771011650562286376953125,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"aa90cd4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Consultio is a responsive corporate, business & financial services WordPress theme. It is suitable for all business & corporate websites. \",\"align\":\"center\",\"text_color\":\"#FEFEFE\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"11\",\"bottom\":\"0\",\"left\":\"11\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"48\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_css_classes\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4444c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"f63d86e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0562312\",\"elType\":\"widget\",\"settings\":{\"text\":\"Purchase Now!\",\"align\":\"right\",\"_css_classes\":\"btn-landing\",\"align_mobile\":\"center\",\"link\":{\"url\":\"https:\\/\\/themeforest.net\\/cart\\/add_items?ref=case-themes&item_ids=25376496\",\"is_external\":\"on\",\"nofollow\":\"\"},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":true},{\"id\":\"d4cb7ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c65eb9a\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Demos\",\"align\":\"left\",\"_css_classes\":\"btn-landing\",\"align_mobile\":\"center\",\"link\":{\"url\":\"#demos\",\"is_external\":\"\",\"nofollow\":\"\"},\"style\":\"btn-white\",\"ct_animate\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e456f8\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"48\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"demos\"},\"elements\":[{\"id\":\"c9aa27e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b1c96fa\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"31\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"da6ecc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"317aec2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.3319999999999936335370875895023345947265625},\"elements\":[{\"id\":\"640649d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Creat a successful website\",\"align\":\"center\",\"text_color\":\"#222222\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"45347a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"06+ Awesome Demos\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"text_align\":\"center\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"66de5f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Consultio is a Consulting, Finance &amp; Business Theme. It is a clean and modern Business design. You can use it for any kind website like consultancy, Adviser, Business, Consultant, Corporate, Finance, Financiall.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"0997322\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ca9218b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"css_classes\":\"landing-boxed\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"44\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8603d95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"9e8c713\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"extended\",\"structure\":\"30\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bf784fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"22\",\"left\":\"3\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d9c45d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/demo1.jpg\",\"id\":2901},\"title\":\"Consultio - <cite>FINANCE CONSULTING<\\/cite>\",\"btn_text\":\"View now\",\"button_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/\",\"is_external\":\"on\",\"nofollow\":\"\"},\"ct_effect\":\"ct-fade-in-up\",\"ct_animate\":\"wow fadeInUp\",\"_css_classes\":\"animate-time1\"},\"elements\":[],\"widgetType\":\"ct_showcase\"}],\"isInner\":true},{\"id\":\"c312ec5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"22\",\"left\":\"3\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab6e0e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/demo2.jpg\",\"id\":2902},\"title\":\"Consultio - <cite>BUSINESS CONSULTING<\\/cite>\",\"btn_text\":\"View now\",\"button_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/home-2\\/\",\"is_external\":\"on\",\"nofollow\":\"\"},\"ct_effect\":\"ct-fade-in-up\",\"ct_animate\":\"wow fadeInUp\",\"_css_classes\":\"animate-time2\"},\"elements\":[],\"widgetType\":\"ct_showcase\"}],\"isInner\":true},{\"id\":\"073bfcd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"22\",\"left\":\"3\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b5c5654\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/demo3.jpg\",\"id\":2903},\"title\":\"Consultio - <cite>LAW CONSULTING<\\/cite>\",\"btn_text\":\"View now\",\"button_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/home-3\\/\",\"is_external\":\"on\",\"nofollow\":\"\"},\"ct_effect\":\"ct-fade-in-up\",\"ct_animate\":\"wow fadeInUp\",\"_css_classes\":\"animate-time3\"},\"elements\":[],\"widgetType\":\"ct_showcase\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14dbe88\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"extended\",\"structure\":\"30\"},\"elements\":[{\"id\":\"12a8394\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"22\",\"left\":\"3\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"58bcb94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/demo4.jpg\",\"id\":2904},\"title\":\"Consultio - <cite>STARTUP CONSULTING<\\/cite>\",\"btn_text\":\"View now\",\"button_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/home-4\\/\",\"is_external\":\"on\",\"nofollow\":\"\"},\"ct_effect\":\"ct-fade-in-up\",\"ct_animate\":\"wow fadeInUp\",\"_css_classes\":\"animate-time4\"},\"elements\":[],\"widgetType\":\"ct_showcase\"}],\"isInner\":true},{\"id\":\"90a1285\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"22\",\"left\":\"3\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"52701aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/demo7.jpg\",\"id\":3021},\"title\":\"Consultio - <cite>IT SOLUTION<\\/cite>\",\"btn_text\":\"View now\",\"button_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/home-5\",\"is_external\":\"on\",\"nofollow\":\"\"},\"ct_effect\":\"ct-fade-in-up\",\"ct_animate\":\"wow fadeInUp\",\"_css_classes\":\"animate-time6\",\"label\":\"NEW\"},\"elements\":[],\"widgetType\":\"ct_showcase\"}],\"isInner\":true},{\"id\":\"2ecf0ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"22\",\"left\":\"3\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8e368b6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/demo8.jpg\",\"id\":3185},\"title\":\"Consultio - <cite>TAX CONSULTING<\\/cite>\",\"btn_text\":\"View now\",\"button_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/home-6\\/\",\"is_external\":\"on\",\"nofollow\":\"\"},\"ct_effect\":\"ct-fade-in-up\",\"ct_animate\":\"wow fadeInUp\",\"_css_classes\":\"animate-time5\",\"label\":\"New\"},\"elements\":[],\"widgetType\":\"ct_showcase\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ac6f27\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"extended\",\"structure\":\"30\"},\"elements\":[{\"id\":\"1d54154\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"22\",\"left\":\"3\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44960fa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/demo9.jpg\",\"id\":3376},\"title\":\"Consultio - <cite>HUMAN RESOURCE<\\/cite>\",\"btn_text\":\"View now\",\"button_link\":{\"url\":\"#\",\"is_external\":\"on\",\"nofollow\":\"\"},\"ct_effect\":\"ct-fade-in-up\",\"ct_animate\":\"wow fadeInUp\",\"_css_classes\":\"animate-time4\",\"label\":\"Coming Soon\"},\"elements\":[],\"widgetType\":\"ct_showcase\"}],\"isInner\":true},{\"id\":\"fa3e334\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"22\",\"left\":\"3\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"704416c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"22\",\"left\":\"3\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a8d41c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#C1282A\",\"background_color_b\":\"#D1651A\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/landing-section-01.png\",\"id\":2915},\"background_overlay_position\":\"top center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":2,\"blur\":10,\"spread\":0,\"color\":\"rgba(34,34,34,0.24)\"},\"padding\":{\"unit\":\"px\",\"top\":\"64\",\"right\":\"0\",\"bottom\":\"308\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"a5692be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23dd850\",\"elType\":\"widget\",\"settings\":{\"title\":\"# Fully Responsive and Retina Ready\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"text_align\":\"center\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4bff920\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"e4831ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c8a8285\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/devices.png\",\"id\":1437},\"image_size\":\"full\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-267\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"daed06b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/landing-devices.png\",\"id\":2917},\"image_size\":\"full\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-267\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"eeca8d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":0,\"bottom\":\"66\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"76c2577\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"b79ad4e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.3319999999999936335370875895023345947265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"05776c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Features of Our Theme\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"text_align\":\"center\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d4e6cef\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Consultio allows you to create beautiful website with some awesome features. We have built this theme as user friendly and we have made by Elementor.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_css_classes\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"c85d3e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"39a0830\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\"},\"elements\":[{\"id\":\"584d03b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"2caf3e6\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"1 Click Demo Install\",\"description_text\":\"This works by importing wordpress content, widgets and theme options.\",\"layout\":\"4\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/feature-icon-01.png\",\"id\":2920},\"ct_effect\":\"ct-fade-3d\",\"ct_animate\":\"wow fadeInUp\",\"_css_classes\":\"animate-time1\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"f5cb727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"0014491\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Elementor\",\"description_text\":\"By Elementor, the developers can find the easy way to work on theme.\",\"layout\":\"4\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/feature-icon-02.png\",\"id\":2921},\"ct_effect\":\"ct-fade-3d\",\"ct_animate\":\"wow fadeInUp\",\"_css_classes\":\"animate-time2\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"95d87fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"01ac667\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Redux Framework\",\"description_text\":\"Redux is a simple, truly extensible options framework for WordPress Theme. \",\"layout\":\"4\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/feature-icon-03.png\",\"id\":2922},\"ct_effect\":\"ct-fade-3d\",\"ct_animate\":\"wow fadeInUp\",\"_css_classes\":\"animate-time3\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"9ba3c5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f0b90c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Contact Form 7 \",\"description_text\":\"The extension can be of great help to embrace fast online payment facility. \",\"layout\":\"4\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/feature-icon-04.png\",\"id\":2923},\"ct_effect\":\"ct-fade-3d\",\"ct_animate\":\"wow fadeInUp\",\"_css_classes\":\"animate-time4\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ba0abe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\"},\"elements\":[{\"id\":\"c6aeed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"ffb13e2\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Slider Revolution\",\"description_text\":\"It includes Revolution Slider for easy slide building. $49 value FREE! \",\"layout\":\"4\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/feature-icon-05.png\",\"id\":2924},\"ct_effect\":\"ct-fade-3d\",\"ct_animate\":\"wow fadeInUp\",\"_css_classes\":\"animate-time5\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"9885322\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"aa01de9\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"SEO Friendly \",\"description_text\":\"Theme perfectly supports search engine algorithms. Fully SEO Friendly. \",\"layout\":\"4\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/feature-icon-06.png\",\"id\":2925},\"ct_effect\":\"ct-fade-3d\",\"ct_animate\":\"wow fadeInUp\",\"_css_classes\":\"animate-time6\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"e192870\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"c3edfad\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Great Support! \",\"description_text\":\"Get a high quality support service with us, Submit a ticket to our form. \",\"layout\":\"4\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/feature-icon-07.png\",\"id\":2926},\"ct_effect\":\"ct-fade-3d\",\"ct_animate\":\"wow fadeInUp\",\"_css_classes\":\"animate-time7\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"6450046\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"09d5e3a\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Fully Responsive \",\"description_text\":\"Fully responsive, retina ready created for all types of devices.\",\"layout\":\"4\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/feature-icon-08.png\",\"id\":2927},\"ct_effect\":\"ct-fade-3d\",\"ct_animate\":\"wow fadeInUp\",\"_css_classes\":\"animate-time8\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23f5a24\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"170\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"17a8858\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2182d6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/landing-footer.png\",\"id\":2937},\"image_size\":\"full\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95455bd\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#C1282A\",\"background_color_b\":\"#D1651A\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":-90,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"top center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":2,\"blur\":10,\"spread\":0,\"color\":\"rgba(34,34,34,0.24)\"},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f5d4bda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"8b8c224\",\"elType\":\"widget\",\"settings\":{\"title\":\"Thanks a lot!\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_weight\":\"700\",\"typography_font_style\":\"italic\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"_css_classes\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(862,483,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:4;s:10:\"image_size\";i:4;s:5:\"align\";i:4;s:7:\"link_to\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;s:7:\"_margin\";i:3;s:8:\"_z_index\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:35;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:28;s:19:\"_inline_size_tablet\";i:11;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:9;s:14:\"padding_mobile\";i:10;s:7:\"padding\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:10:{s:5:\"title\";i:4;s:11:\"title_color\";i:4;s:27:\"title_typography_typography\";i:4;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:4;s:28:\"title_typography_line_height\";i:1;s:18:\"title_space_bottom\";i:3;s:33:\"title_typography_font_size_mobile\";i:1;s:35:\"title_typography_line_height_mobile\";i:1;s:10:\"ct_animate\";i:4;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:16;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:14;s:15:\"stretch_section\";i:5;s:6:\"layout\";i:5;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:7:{s:7:\"padding\";i:5;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:4;s:11:\"_element_id\";i:1;s:14:\"padding_mobile\";i:1;s:11:\"css_classes\";i:1;s:13:\"margin_tablet\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:2;s:18:\"background_color_b\";i:2;s:25:\"background_gradient_angle\";i:2;}s:26:\"section_background_overlay\";a:6:{s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:2;s:27:\"background_overlay_position\";i:3;s:25:\"background_overlay_repeat\";i:3;s:23:\"background_overlay_size\";i:3;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:2;s:21:\"box_shadow_box_shadow\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:5:\"align\";i:4;s:10:\"text_color\";i:3;s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_line_height\";i:3;s:27:\"typography_font_size_mobile\";i:1;s:29:\"typography_line_height_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:8:\"_padding\";i:2;s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:4;s:15:\"_padding_tablet\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"text\";i:2;s:5:\"align\";i:2;s:12:\"align_mobile\";i:2;s:4:\"link\";i:2;s:10:\"ct_animate\";i:2;s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:2;}}}}s:11:\"ct_showcase\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:7;s:5:\"title\";i:7;s:8:\"btn_text\";i:7;s:11:\"button_link\";i:7;s:10:\"ct_animate\";i:7;s:5:\"label\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:7;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_content\";a:4:{s:10:\"title_text\";i:8;s:16:\"description_text\";i:8;s:9:\"icon_type\";i:8;s:10:\"icon_image\";i:8;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:8;s:10:\"ct_animate\";i:8;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:8;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:11:\"title_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:1;s:21:\"typography_font_style\";i:1;s:20:\"typography_font_size\";i:1;s:27:\"typography_font_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}}'),(863,748,'_elementor_controls_usage','a:0:{}'),(864,749,'_elementor_controls_usage','a:0:{}'),(865,750,'_elementor_controls_usage','a:0:{}'),(866,751,'_elementor_controls_usage','a:0:{}'),(867,783,'_wp_page_template','default'),(868,783,'_elementor_controls_usage','a:0:{}'),(869,783,'custom_header',''),(870,783,'header_layout','1'),(871,783,'custom_pagetitle','themeoption'),(872,783,'custom_title',''),(873,783,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(874,783,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(875,783,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(876,783,'content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(877,783,'show_sidebar_page',''),(878,783,'sidebar_page_pos','right'),(879,783,'custom_footer',''),(880,783,'footer_layout_custom',''),(881,783,'slide_template','default'),(882,1972,'_wp_page_template','default'),(883,1972,'custom_header',''),(884,1972,'header_layout','1'),(885,1972,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(886,1972,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(887,1972,'custom_pagetitle','show'),(888,1972,'custom_title',''),(889,1972,'ptitle_bg','a:2:{s:16:\"background-image\";s:81:\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-03.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1532\";s:6:\"height\";s:4:\"1200\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:89:\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-03-150x150.jpg\";}}'),(890,1972,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(891,1972,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(892,1972,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(893,1972,'show_sidebar_page',''),(894,1972,'sidebar_page_pos','right'),(895,1972,'custom_footer',''),(896,1972,'footer_layout_custom',''),(897,1972,'slide_template','default'),(898,1972,'_elementor_edit_mode','builder'),(899,1972,'_elementor_template_type','wp-page'),(900,1972,'_elementor_version','2.8.2'),(901,1972,'_elementor_data','[{\"id\":\"68c872\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"61\",\"right\":0,\"bottom\":\"27\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"553856d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4b6cccf6\",\"elType\":\"widget\",\"settings\":{\"title\":\"From startups to Fortune 500s, WayUp offers the best internships and jobs.\",\"sub_title\":\"Career\",\"sub_title_color\":\"#0e0e0e\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"7bfd02a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4ec2a151\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Easily apply to multiple jobs with one click! Quick Apply shows you recommended jobs based off your most recent search and allows you to apply to 25+ jobs in a matter of seconds!\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f8a622\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"ea0c095\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7bf4992\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/icon-google.png\",\"id\":1985},\"title\":\"Digital Designer\",\"btn_text\":\"Apply now fds\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"\",\"content_list\":[{\"_id\":\"95e24e9\"}],\"_id\":\"e535d05\",\"feature\":\"[{\\\"icon\\\":\\\"fa fa-paperclip\\\",\\\"content\\\":\\\"Jam Sports Productions LLC\\\"},{\\\"icon\\\":\\\"fa fa-user\\\",\\\"content\\\":\\\"Admin\\\"},{\\\"icon\\\":\\\"fa fa-map-marker\\\",\\\"content\\\":\\\"Newyork, SCT\\\"},{\\\"icon\\\":\\\"fa fa-life-ring\\\",\\\"content\\\":\\\"Remote\\\"}]\",\"description\":\"We would love to share a similar experience and how I learned some valuable lessons. \"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/icon-envato.png\",\"id\":1990},\"title\":\"Graphic Artist\",\"btn_text\":\"Apply now\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"\",\"content_list\":[{\"_id\":\"95e24e9\"}],\"_id\":\"4ad9249\",\"feature\":\"[{\\\"icon\\\":\\\"fa fa-paperclip\\\",\\\"content\\\":\\\"Jam Sports Productions LLC\\\"},{\\\"icon\\\":\\\"fa fa-user\\\",\\\"content\\\":\\\"Admin\\\"},{\\\"icon\\\":\\\"fa fa-map-marker\\\",\\\"content\\\":\\\"Newyork, SCT\\\"},{\\\"icon\\\":\\\"fa fa-life-ring\\\",\\\"content\\\":\\\"Remote\\\"}]\",\"description\":\"We would love to share a similar experience and how I learned some valuable lessons. \"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/icon-themeforest.png\",\"id\":1991},\"title\":\"Sales Reporter\",\"btn_text\":\"Apply now\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"\",\"content_list\":[{\"_id\":\"95e24e9\"}],\"_id\":\"0bfca0b\",\"feature\":\"[{\\\"icon\\\":\\\"fa fa-paperclip\\\",\\\"content\\\":\\\"Jam Sports Productions LLC\\\"},{\\\"icon\\\":\\\"fa fa-user\\\",\\\"content\\\":\\\"Admin\\\"},{\\\"icon\\\":\\\"fa fa-map-marker\\\",\\\"content\\\":\\\"Newyork, SCT\\\"},{\\\"icon\\\":\\\"fa fa-life-ring\\\",\\\"content\\\":\\\"Remote\\\"}]\",\"description\":\"We would love to share a similar experience and how I learned some valuable lessons. \"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/icon-codecanyon.png\",\"id\":1989},\"title\":\"Digital Marketer\",\"btn_text\":\"Apply now\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"\",\"content_list\":[{\"_id\":\"95e24e9\"}],\"_id\":\"cddfe0a\",\"feature\":\"[{\\\"icon\\\":\\\"fa fa-paperclip\\\",\\\"content\\\":\\\"Jam Sports Productions LLC\\\"},{\\\"icon\\\":\\\"fa fa-user\\\",\\\"content\\\":\\\"Admin\\\"},{\\\"icon\\\":\\\"fa fa-map-marker\\\",\\\"content\\\":\\\"Newyork, SCT\\\"},{\\\"icon\\\":\\\"fa fa-life-ring\\\",\\\"content\\\":\\\"Remote\\\"}]\",\"description\":\"We would love to share a similar experience and how I learned some valuable lessons. \"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/icon-google.png\",\"id\":1985},\"title\":\"Web Designer\",\"btn_text\":\"Apply now\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"\",\"content_list\":[{\"_id\":\"95e24e9\"}],\"_id\":\"24295dc\",\"feature\":\"[{\\\"icon\\\":\\\"fa fa-paperclip\\\",\\\"content\\\":\\\"Jam Sports Productions LLC\\\"},{\\\"icon\\\":\\\"fa fa-user\\\",\\\"content\\\":\\\"Admin\\\"},{\\\"icon\\\":\\\"fa fa-map-marker\\\",\\\"content\\\":\\\"Newyork, SCT\\\"},{\\\"icon\\\":\\\"fa fa-life-ring\\\",\\\"content\\\":\\\"Remote\\\"}]\",\"description\":\"We would love to share a similar experience and how I learned some valuable lessons. \"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/icon-career.png\",\"id\":1988},\"title\":\"Web Developer\",\"btn_text\":\"Apply now\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"\",\"content_list\":[{\"_id\":\"95e24e9\"}],\"_id\":\"be4c6df\",\"feature\":\"[{\\\"icon\\\":\\\"fa fa-paperclip\\\",\\\"content\\\":\\\"Jam Sports Productions LLC\\\"},{\\\"icon\\\":\\\"fa fa-user\\\",\\\"content\\\":\\\"Admin\\\"},{\\\"icon\\\":\\\"fa fa-map-marker\\\",\\\"content\\\":\\\"Newyork, SCT\\\"},{\\\"icon\\\":\\\"fa fa-life-ring\\\",\\\"content\\\":\\\"Remote\\\"}]\",\"description\":\"We would love to share a similar experience and how I learned some valuable lessons. \"}],\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_career_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"380c36d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"610f6d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379456c7\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(902,1972,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:5:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:32:\"sub_title_typography_font_family\";i:1;s:32:\"sub_title_typography_font_weight\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:1;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:2;}}}}s:14:\"ct_career_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:10:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(903,2269,'_wp_page_template','default'),(904,2269,'custom_header','0'),(905,2269,'header_layout','2'),(906,2269,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(907,2269,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(908,2269,'p_logo_mobile','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(909,2269,'custom_pagetitle','themeoption'),(910,2269,'custom_title',''),(911,2269,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(912,2269,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(913,2269,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(914,2269,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(915,2269,'show_sidebar_page',''),(916,2269,'sidebar_page_pos','right'),(917,2269,'custom_footer','0'),(918,2269,'footer_layout_custom','2249'),(919,2269,'slide_template',''),(920,2269,'_elementor_edit_mode','builder'),(921,2269,'_elementor_template_type','wp-page'),(922,2269,'_elementor_version','2.8.3'),(923,2269,'_elementor_data','[{\"id\":\"82a3368\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1064ab3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"30dc6e9\",\"elType\":\"widget\",\"settings\":{\"x_ax\":\"2020;2019;2018;2017;2016;2015\",\"values\":[{\"title\":\"Business\",\"y_ax\":\"5000;7500;4000;14000;9000;24000\",\"_id\":\"ff5b5d7\",\"border_color\":\"#00ADEF\",\"bg_color\":\"rgba(0, 173, 239, 0.3)\"},{\"title\":\"Finance\",\"y_ax\":\"12500;11000;22000;17000;27000;26500\",\"_id\":\"84d1c6a\",\"border_color\":\"#5080FC\",\"bg_color\":\"rgba(100, 144, 237, 0.3)\"},{\"title\":\"Consulting\",\"y_ax\":\"16000;19000;28000;24000;32000;36500\",\"_id\":\"ca8fa6d\",\"border_color\":\"#001BE7\",\"bg_color\":\"rgba(0, 27, 231, 0.2)\"}]},\"elements\":[],\"widgetType\":\"ct_line_chart\"}],\"isInner\":false}],\"isInner\":false}]'),(924,2269,'_elementor_controls_usage','a:3:{s:13:\"ct_line_chart\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:18:\"section_line_chart\";a:1:{s:6:\"values\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}}'),(925,3193,'_wp_page_template','default'),(926,3193,'custom_header','1'),(927,3193,'header_layout','19'),(928,3193,'p_logo_dark','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(5037,3193,'h_custom_menu_right',''),(929,3193,'p_logo_light','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(5036,3193,'h_custom_menu_left',''),(930,3193,'p_logo_mobile','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(5035,3193,'h_custom_menu',''),(931,3193,'custom_pagetitle','hide'),(932,3193,'custom_title',''),(933,3193,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(934,3193,'ptitle_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(935,3193,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(936,3193,'content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}'),(937,3193,'show_sidebar_page',''),(938,3193,'sidebar_page_pos','right'),(939,3193,'loading_page','custom'),(940,3193,'loading_type','style4'),(941,3193,'loading_color','#00c7d4'),(942,3193,'custom_footer','1'),(943,3193,'footer_layout_custom','3201'),(944,3193,'page_back_totop','themeoption'),(5043,3193,'eg_sources_html5_mp4',''),(946,3193,'_elementor_edit_mode','builder'),(947,3193,'_elementor_template_type','wp-page'),(948,3193,'_elementor_version','3.2.2'),(949,3193,'page_h_phone','(210) 123-451'),(950,3193,'page_h_time','Mon-Fri 8am - 6pm (Sunday closed)'),(951,3193,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"Entertainment Solutions for Every Business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"914214d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">System Amusement is your partner in providing top of the line entertainment and activities to your customers. We provide complete Keep-filled services and provide a Fully maintained solution for your business. Provide the very best entertainment and activities at a fraction of the cost!<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pinball Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Pinball is a type of arcade game in which a player uses paddles (called flippers) to manipulate one or more balls inside a pinball machine. A pinball machine is a glass-covered cabinet containing a play field populated with lights, targets, bumpers, ramps, and various other objects depending on its design. The primary objective of the game is to score as many points as possible by hitting targets and making various shots with the flippers, before all balls \\\"drain\\\" at an exit usually situated at the bottom of the play field.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Munsters-LE-Details-19.jpeg\",\"id\":4245},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67e2ef8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFD500FC\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9c14fbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our 50+ Years of Dedication to our Clients!\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#00BCFF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_typography_font_weight\":\"400\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"a9c9135\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9d75c94\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"abbd6d4\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F00000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"90408e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"21051e5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"27bc7b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d1b9bc\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"6f96213\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2234f19\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.3319999999999936335370875895023345947265625},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_border_color\":\"#747474\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn About Our Pool League, and Get Signed Up Today!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(3581,4112,'_wp_page_template','default'),(3582,4112,'_elementor_edit_mode','builder'),(3583,4112,'_elementor_template_type','wp-page'),(3584,4112,'_elementor_version','3.1.4'),(3585,4112,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"73\",\"right\":\"0\",\"bottom\":\"95\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have appreciated by our clients!\",\"sub_title\":\"Testimonial\",\"sub_title_color\":\"#00C7D4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#00C7D4\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/author-02.jpg\",\"id\":238},\"title\":\"Maria Silverii\",\"position\":\"CEO of Blue Illusion\",\"description\":\"\\u201c I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail as a Leadership Program\\u2019 is Her passion.\\u201d\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/author-01.jpg\",\"id\":237},\"title\":\"Rebecca Leo \",\"position\":\"Web Designer\",\"description\":\"\\u201c I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail as a Leadership Program\\u2019 is Her passion.\\u201d\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-tax.png\",\"id\":3468},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-180\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"Blog\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"99958ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(3580,4111,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1699;s:4:\"file\";s:73:\"2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:66:\"portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:67:\"portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:66:\"portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:66:\"portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:510;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:68:\"portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1019;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:68:\"portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1359;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:66:\"portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:66:\"portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:66:\"portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:66:\"portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:398;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:66:\"portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:66:\"portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:66:\"portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:398;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:66:\"portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:22:\"Monkey Business Images\";s:6:\"camera\";s:22:\"Canon EOS-1D X Mark II\";s:7:\"caption\";s:46:\"Portrait Of Male Bar Owner Standing By Counter\";s:17:\"created_timestamp\";s:10:\"1559745660\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:46:\"Portrait Of Male Bar Owner Standing By Counter\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:41:{i:0;s:3:\"man\";i:1;s:8:\"business\";i:2;s:5:\"owner\";i:3;s:3:\"bar\";i:4;s:5:\"drink\";i:5;s:7:\"alcohol\";i:6;s:8:\"portrait\";i:7;s:17:\"looking at camera\";i:8;s:11:\"testimonial\";i:9;s:6:\"waiter\";i:10;s:6:\"worker\";i:11;s:8:\"employee\";i:12;s:7:\"working\";i:13;s:12:\"professional\";i:14;s:10:\"copy space\";i:15;s:12:\"senior staff\";i:16;s:9:\"to camera\";i:17;s:9:\"confident\";i:18;s:10:\"successful\";i:19;s:14:\"small business\";i:20;s:13:\"businesswoman\";i:21;s:7:\"manager\";i:22;s:5:\"staff\";i:23;s:13:\"entertainment\";i:24;s:16:\"leisure industry\";i:25;s:14:\"food and drink\";i:26;s:10:\"restaurant\";i:27;s:7:\"counter\";i:28;s:3:\"men\";i:29;s:4:\"male\";i:30;s:10:\"one person\";i:31;s:6:\"people\";i:32;s:6:\"person\";i:33;s:9:\"caucasian\";i:34;s:8:\"close up\";i:35;s:10:\"horizontal\";i:36;s:3:\"30s\";i:37;s:8:\"thirties\";i:38;s:10:\"front view\";i:39;s:8:\"waist up\";i:40;s:7:\"smiling\";}}s:14:\"original_image\";s:58:\"portrait-of-male-bar-owner-standing-by-counter-K4LWCVT.jpg\";}'),(3586,4113,'_wp_page_template','default'),(3587,4113,'_elementor_edit_mode','builder'),(3588,4113,'_elementor_template_type','wp-page'),(3589,4113,'_elementor_version','3.1.4'),(3590,4113,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"73\",\"right\":\"0\",\"bottom\":\"95\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have appreciated by our clients!\",\"sub_title\":\"Testimonial\",\"sub_title_color\":\"#00C7D4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#00C7D4\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/author-02.jpg\",\"id\":238},\"title\":\"Maria Silverii\",\"position\":\"CEO of Blue Illusion\",\"description\":\"\\u201c I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail as a Leadership Program\\u2019 is Her passion.\\u201d\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/author-01.jpg\",\"id\":237},\"title\":\"Rebecca Leo \",\"position\":\"Web Designer\",\"description\":\"\\u201c I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail as a Leadership Program\\u2019 is Her passion.\\u201d\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-tax.png\",\"id\":3468},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-180\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"Blog\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"99958ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(3545,4102,'_wp_page_template','default'),(3546,4102,'_elementor_edit_mode','builder'),(3547,4102,'_elementor_template_type','wp-page'),(3548,4102,'_elementor_version','2.8.5'),(3549,4102,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a14fd35\",\"elType\":\"widget\",\"settings\":{\"content\":[{\"icon_type\":\"icon\",\"icon\":{\"value\":\"\",\"library\":\"\"},\"icon_image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"\",\"description\":\"\",\"button_text\":\"\",\"button_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"df0046f\"},{\"icon_type\":\"icon\",\"icon\":{\"value\":\"\",\"library\":\"\"},\"icon_image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"\",\"description\":\"\",\"button_text\":\"\",\"button_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"144974b\"}],\"content_fancy_box\":[{\"icon_type\":\"image\",\"icon\":{\"value\":\"flaticon flaticon-diagram\",\"library\":\"flaticon\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-icon-service1.png\",\"id\":3292},\"title\":\"Business Planning\",\"description\":\"We develop the relationships that under the next phase in your organisation.\",\"button_text\":\"Read more\",\"button_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/service\\/seo-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"e3dbcbe\"},{\"icon_type\":\"image\",\"icon\":{\"value\":\"flaticon flaticon-diagram\",\"library\":\"flaticon\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-icon-service2.png\",\"id\":3294},\"title\":\"Stakeholder relations\",\"description\":\"Developing a program to improve the best sanitation and alleviate poverty.\",\"button_text\":\"Read more\",\"button_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/service\\/seo-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"c36fabf\"},{\"icon_type\":\"image\",\"icon\":{\"value\":\"flaticon flaticon-diagram\",\"library\":\"flaticon\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-icon-service3.png\",\"id\":3295},\"title\":\"Risk management\",\"description\":\"Through nuanced stakeholder relations and astute partnership building.\",\"button_text\":\"Read more\",\"button_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/service\\/seo-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5b4e6a0\"},{\"icon_type\":\"image\",\"icon\":{\"value\":\"flaticon flaticon-diagram\",\"library\":\"flaticon\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-icon-service1.png\",\"id\":3292},\"title\":\"Business Planning\",\"description\":\"We develop the relationships that under the next phase in your organisation.\",\"button_text\":\"Read more\",\"button_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/service\\/seo-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"206cb42\"},{\"icon_type\":\"image\",\"icon\":{\"value\":\"flaticon flaticon-diagram\",\"library\":\"flaticon\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-icon-service2.png\",\"id\":3294},\"title\":\"Stakeholder relations\",\"description\":\"Developing a program to improve the best sanitation and alleviate poverty.\",\"button_text\":\"Read more\",\"button_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/service\\/seo-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"205af4f\"},{\"icon_type\":\"image\",\"icon\":{\"value\":\"flaticon flaticon-diagram\",\"library\":\"flaticon\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-icon-service3.png\",\"id\":3295},\"title\":\"Risk management\",\"description\":\"Through nuanced stakeholder relations and astute partnership building.\",\"button_text\":\"Read more\",\"button_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/service\\/seo-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ce109f\"}],\"col_md\":\"2\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_carousel\"},{\"id\":\"3a516fc\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"You can also find our <a href=\\\"#\\\" class=\\\"link-underline\\\">Consultant Service<\\/a> to contact for the consulting\",\"align\":\"center\",\"text_color\":\"#000000\",\"link_color\":\"#2635F5\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9664f51\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-bg-section-01.jpg\",\"id\":3304},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"f96b168\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9e41435\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"css_classes\":\"feature-offset\"},\"elements\":[{\"id\":\"3b4b403\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4691af72\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Strategic vision\",\"description_text\":\"A client once told us that where the others focus on one star one issue we see the whole sky. \",\"_margin\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"icon_color\":\"#4B58FF\",\"title_color\":\"#0E0E0E\",\"desc_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"ct_feature\"},{\"id\":\"7777c895\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Interpersonal skills\",\"description_text\":\"Forging relationships between\\nmulti-national corporations, govern ments and global NGOs begins.\",\"_margin\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"icon_color\":\"#4B58FF\",\"title_color\":\"#0E0E0E\",\"desc_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"ct_feature\"}],\"isInner\":true},{\"id\":\"708318e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"16ac3530\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Networks that span\",\"description_text\":\"Over more than 20 years, we\\u2019ve \\nfostered trusted relationships across government.\",\"_margin\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"icon_color\":\"#4B58FF\",\"title_color\":\"#0E0E0E\",\"desc_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"ct_feature\"},{\"id\":\"186c3405\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Flexible delivery\",\"description_text\":\"We adapt our delivery to the way your work, whether as an external provider or by providing senior.\",\"_margin\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"icon_color\":\"#4B58FF\",\"title_color\":\"#0E0E0E\",\"desc_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"ct_feature\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1383f02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"be402ff\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"particle\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-shape-6.png\",\"id\":3349},\"particle_animate\":\"shape-animate1\",\"top_positioon\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"_id\":\"ceb05ff\"},{\"particle\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-shape-7.png\",\"id\":3350},\"particle_animate\":\"shape-animate2\",\"top_positioon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"_id\":\"39fffe4\"},{\"particle\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-shape-5.png\",\"id\":3348},\"particle_animate\":\"shape-animate6\",\"top_positioon\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_id\":\"a3a57b0\"}]},\"elements\":[],\"widgetType\":\"ct_particle_animate\"},{\"id\":\"6ccf3b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Don\\u2019t misread here we have random & interesting facts will inspire you.\\n\",\"sub_title\":\"Why Choose us?\",\"sub_title_color\":\"#00C7D4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#00C7D4\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a745e15\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"b8c6e35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2453399\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_css_classes\":\"text-center\"},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":true},{\"id\":\"8566a64\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f8ae85\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"ending_number\":105,\"suffix\":\"+\",\"title\":\"Team <br\\/> Members\",\"show_icon\":\"true\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-counter-icon1.png\",\"id\":3315},\"ct_animate\":\"wow fadeInUp\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"156101f\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"ending_number\":18,\"suffix\":\"+\",\"title\":\"Winning <br\\/> Awards\",\"show_icon\":\"true\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-counter-icon2.png\",\"id\":3316},\"ct_animate\":\"wow fadeInUp\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"275cc9f\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"ending_number\":310,\"suffix\":\"+\",\"title\":\"Completed <br\\/> Works\",\"show_icon\":\"true\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-counter-icon3.png\",\"id\":3317},\"ct_animate\":\"wow fadeInUp\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"fea2c81\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"ending_number\":215,\"suffix\":\"+\",\"title\":\"Client\\u2019s <br\\/> Feedback\",\"show_icon\":\"true\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-counter-icon4.png\",\"id\":3318},\"ct_animate\":\"wow fadeInUp\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9c7403d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a1a6cd5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"95\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#0E0E0E\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"4a6e471\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d47d960\",\"elType\":\"widget\",\"settings\":{\"title\":\"Don\\u2019t misread here we have random & interesting facts will inspire you.\\n\",\"sub_title\":\"Why Choose us?\",\"sub_title_color\":\"#00C7D4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#00C7D4\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b5cdb15\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Strategic vision\",\"description_text\":\"A client once told us that where the others focus on one star one issue we see the whole sky. \",\"_margin\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"icon_color\":\"#4B58FF\",\"title_color\":\"#FFFFFF\",\"desc_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_feature\"},{\"id\":\"a02c1eb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Interpersonal skills\",\"description_text\":\"Forging relationships between\\nmulti-national corporations, govern ments and global NGOs begins.\",\"_margin\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"icon_color\":\"#4B58FF\",\"title_color\":\"#FFFFFF\",\"desc_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_feature\"},{\"id\":\"857db09\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Networks that span\",\"description_text\":\"Over more than 20 years, we\\u2019ve \\nfostered trusted relationships across government.\",\"_margin\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"icon_color\":\"#4B58FF\",\"title_color\":\"#FFFFFF\",\"desc_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_feature\"},{\"id\":\"f6c95b9\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Flexible delivery\",\"description_text\":\"We adapt our delivery to the way your work, whether as an external provider or by providing senior.\",\"_margin\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"icon_color\":\"#4B58FF\",\"title_color\":\"#FFFFFF\",\"desc_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_feature\"},{\"id\":\"4372fd7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"5dd01c0\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"ending_number\":105,\"suffix\":\"+\",\"title\":\"Team <br\\/> Members\",\"show_icon\":\"true\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-counter-icon1.png\",\"id\":3315},\"ct_animate\":\"wow fadeInUp\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"cc755c1\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"ending_number\":18,\"suffix\":\"+\",\"title\":\"Winning <br\\/> Awards\",\"show_icon\":\"true\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-counter-icon2.png\",\"id\":3316},\"ct_animate\":\"wow fadeInUp\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"68ad207\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"ending_number\":310,\"suffix\":\"+\",\"title\":\"Completed <br\\/> Works\",\"show_icon\":\"true\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-counter-icon3.png\",\"id\":3317},\"ct_animate\":\"wow fadeInUp\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"6e3d424\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"ending_number\":215,\"suffix\":\"+\",\"title\":\"Client\\u2019s <br\\/> Feedback\",\"show_icon\":\"true\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-counter-icon4.png\",\"id\":3318},\"ct_animate\":\"wow fadeInUp\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"41d68de\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fccf35d\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"particle\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-shape-6.png\",\"id\":3349},\"particle_animate\":\"shape-animate1\",\"top_positioon\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"_id\":\"ceb05ff\"},{\"particle\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-shape-7.png\",\"id\":3350},\"particle_animate\":\"shape-animate2\",\"top_positioon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"_id\":\"39fffe4\"},{\"particle\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-shape-5.png\",\"id\":3348},\"particle_animate\":\"shape-animate6\",\"top_positioon\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_id\":\"a3a57b0\"}]},\"elements\":[],\"widgetType\":\"ct_particle_animate\"},{\"id\":\"c275883\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"73\",\"right\":\"0\",\"bottom\":\"95\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"89fb46a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"ct_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"title\":\"Tax Consultancy\",\"description\":\"This is one of many areas of\\nprofessional services where our firm is well ahead of the competition.\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/service\\/business-strategy\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"ad3ffd2\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-service-icon4.png\",\"id\":3364}},{\"ct_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"title\":\"Audit & assurance\",\"description\":\"People are only as good as the tools they possess. So, to consistently deliver high-quality auditing services.\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/service\\/business-strategy\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-service-icon5.png\",\"id\":3365},\"_id\":\"549e205\"},{\"ct_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"title\":\"Value Added Tax\",\"description\":\"We are providing and dealing with all sorts of legal and professional services and matters to operate.\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/service\\/business-strategy\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-service-icon6.png\",\"id\":3366},\"_id\":\"c96dff0\"},{\"ct_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"title\":\"Accounting Services\",\"description\":\"Our professionals provide a range of accounting and assurance services of the highest standards.\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/service\\/business-strategy\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-service-icon7.png\",\"id\":3367},\"_id\":\"c5fa888\"},{\"ct_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"title\":\"Tax Outsourcing\",\"description\":\"Unlike our competitors we have in house qualified lawyers and accountants who can help you.\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/service\\/business-strategy\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-service-icon8.png\",\"id\":3368},\"_id\":\"70a20db\"},{\"ct_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"title\":\"Amazing Strategy\",\"description\":\"Operates an atmosphere that promote creative approach for clients needs.\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/service\\/business-strategy\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-service-icon9.png\",\"id\":3369},\"_id\":\"838b0fb\"}],\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b7bb6c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0E0E0E\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-bg-section-02.png\",\"id\":3411},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\"},\"elements\":[{\"id\":\"a796c56\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":28,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_inline_size_tablet\":40,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"3368f88\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2771f7f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have expert team members\",\"sub_title\":\"Team member \",\"sub_title_color\":\"#00C7D4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#00C7D4\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"16b2035\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Learn about the skills that are most useful in helping you to work effectively as part of a team, and how this fits with Belbin\'s Team Roles.\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"42\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"d268853\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"For any Emergency <b class=\\\"text-underline\\\">Call:<\\/b>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"86\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"5a80544\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<i class=\\\"h6-icon-phone fac fac-phone\\\">icon phone<\\/i>(210) 123-451\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"86\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"f6eeeb2\",\"elType\":\"widget\",\"settings\":{\"style\":\"btn-round2\",\"text\":\"Team details\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"btn_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_button\"},{\"id\":\"6684593\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"2dc2543\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":72,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"c6f767f\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"title\":\"\",\"position\":\"\",\"btn_text\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"8fd12a6\"}],\"content_list2\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-team1.jpg\",\"id\":3383},\"title\":\"Iven Rocky\",\"position\":\"Senior Web Developer\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-dribbble\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"1f79747\",\"progressbar\":\"[{\\\"title\\\":\\\"WordPress\\\",\\\"number\\\":\\\"90\\\"},{\\\"title\\\":\\\"Java\\\",\\\"number\\\":\\\"50\\\"},{\\\"title\\\":\\\"Css\\\",\\\"number\\\":\\\"70\\\"}]\",\"lists\":\"\",\"image_position\":\"img-right\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Rebecca Leo\",\"position\":\"Web Designer\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-youtube-play\\\",\\\"url\\\":\\\"#\\\"}]\",\"progressbar\":\"[{\\\"title\\\":\\\"Photoshop\\\",\\\"number\\\":\\\"90\\\"},{\\\"title\\\":\\\"Sketch\\\",\\\"number\\\":\\\"80\\\"},{\\\"title\\\":\\\"Css\\\",\\\"number\\\":\\\"70\\\"}]\",\"lists\":\"\",\"_id\":\"da16f47\",\"image_position\":\"img-right\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-team3.jpg\",\"id\":3400},\"title\":\"Adam Ivan\",\"position\":\"Chef Advisor\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-dribbble\\\",\\\"url\\\":\\\"#\\\"}]\",\"progressbar\":\"[{\\\"title\\\":\\\"Business Sense\\\",\\\"number\\\":\\\"90\\\"},{\\\"title\\\":\\\"Cleanliness\\\",\\\"number\\\":\\\"80\\\"},{\\\"title\\\":\\\"Creativity\\\",\\\"number\\\":\\\"70\\\"}]\",\"lists\":\"\",\"_id\":\"9d03385\",\"image_position\":\"img-left\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Obira Franc\",\"position\":\"Tax Consultant\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-dribbble\\\",\\\"url\\\":\\\"#\\\"}]\",\"progressbar\":\"[{\\\"title\\\":\\\"Negotiation\\\",\\\"number\\\":\\\"90\\\"},{\\\"title\\\":\\\"Tax law\\\",\\\"number\\\":\\\"50\\\"},{\\\"title\\\":\\\"Organisation\\\",\\\"number\\\":\\\"70\\\"}]\",\"lists\":\"\",\"_id\":\"f836421\",\"image_position\":\"img-left\"}],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a99864e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"115\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#0E0E0E\"},\"elements\":[{\"id\":\"1288a01c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e19352b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"44\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c7f8f11\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.332999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"943ec01\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are very happy for our awesome case studies!\",\"sub_title\":\"Case Studies\",\"sub_title_color\":\"#00C7D4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#00C7D4\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"13ed5210\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.62700000000000244426701101474463939666748046875},\"elements\":[{\"id\":\"486ee6f8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Like what you see? Contact us to see what type of solutions we can deploy for your business!\",\"text_color\":\"#ABABAB\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3f8eab43\",\"elType\":\"widget\",\"settings\":{\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"layout\":\"2\",\"col_sm\":\"1\",\"arrows\":\"true\",\"arrow_style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#151D85\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false}},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have appreciated by our clients!\",\"sub_title\":\"Testimonial\",\"sub_title_color\":\"#00C7D4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#00C7D4\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/author-02.jpg\",\"id\":238},\"title\":\"Maria Silverii\",\"position\":\"CEO of Blue Illusion\",\"description\":\"\\u201c I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail as a Leadership Program\\u2019 is Her passion.\\u201d\",\"_id\":\"f8dba69\",\"sub_title\":\"\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/author-01.jpg\",\"id\":237},\"title\":\"Rebecca Leo \",\"position\":\"Web Designer\",\"description\":\"\\u201c I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail as a Leadership Program\\u2019 is Her passion.\\u201d\",\"_id\":\"5f76277\",\"sub_title\":\"\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-tax.png\",\"id\":3468},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-180\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"Blog\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"99958ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4588050c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-14\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7b2eb799\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"30ef0fdc\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(953,3491,'_wp_page_template','default'),(954,3491,'custom_header','1'),(955,3491,'header_layout','19'),(956,3491,'p_logo_dark','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(5286,3491,'h_custom_menu_right',''),(957,3491,'p_logo_light','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(5285,3491,'h_custom_menu_left',''),(958,3491,'p_logo_mobile','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(5284,3491,'h_custom_menu',''),(959,3491,'page_h_phone',''),(960,3491,'page_h_time',''),(961,3491,'custom_pagetitle','show'),(962,3491,'custom_title','Pinball Machine Repair and Service'),(963,3491,'ptitle_bg','a:2:{s:16:\"background-image\";s:80:\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19.jpeg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"4245\";s:6:\"height\";s:4:\"1474\";s:5:\"width\";s:4:\"2208\";s:9:\"thumbnail\";s:88:\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-150x150.jpeg\";}}'),(964,3491,'ptitle_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(965,3491,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(966,3491,'content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}'),(967,3491,'show_sidebar_page',''),(968,3491,'sidebar_page_pos','right'),(969,3491,'loading_page','themeoption'),(970,3491,'loading_type','style1'),(971,3491,'loading_color',''),(972,3491,'custom_footer','1'),(973,3491,'footer_layout_custom','3201'),(974,3491,'page_back_totop','themeoption'),(5292,3491,'eg_sources_html5_mp4',''),(976,3491,'_elementor_edit_mode','builder'),(977,3491,'_elementor_template_type','wp-page'),(978,3491,'_elementor_version','3.1.4'),(979,3491,'_elementor_data','[{\"id\":\"40fd8216\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"67\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2a114ffb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"e7c34af\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Offer Top Notch Pinball Machine Service and Repairs\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sub_title\":\"Is Your Pinball Machine Broken?\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"title_color\":\"#B80202\",\"title_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"10df5e6a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #000000;\\\">System Amusement is happy to offer pinball machine repair and service to customers located throughout Eastern Washington and Western Idaho. Contact our support team today to setup an appointment.<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"align\":\"left\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"431858c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"160cdc54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/pinball-at-home-.jpeg\",\"id\":4384},\"image_size\":\"full\",\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"34e552a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#DEDEDE\"},\"elements\":[{\"id\":\"d1b9bb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9888c47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Complete The Form Below or Call or Email us Today\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"title_color\":\"#B80202\",\"title_typography_font_weight\":\"700\",\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0d58969\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a43d733\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67b4776\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/211037967555058\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true},{\"id\":\"c216f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ccb197\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Munsters-LE-Details-19.jpeg\",\"id\":4245}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a85a00b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"45\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5846a252\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"78aad6aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact our support team today!\",\"desc\":\"Click to call\",\"btn_text\":\"509-326-1551\",\"btn_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"btn_link\":{\"url\":\"te:509-326-1551\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d1b6189\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFD500FC\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2730b166\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"20bc5b41\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our 50+ Years of Dedication to our Clients!\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#00BCFF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_typography_font_weight\":\"400\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"198a73de\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"45ba1b04\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"6f99887\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"78f3fc3d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F00000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"47347a61\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"35a74b01\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"736b33de\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"330779f7\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"686210d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"649219a7\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b94ff5e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741f5926\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"5cb42d8f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"448e6df3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2241398e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"251307ec\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3dba6281\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"49656ebf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5206,4387,'_elementor_data','[{\"id\":\"40fd8216\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"67\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2a114ffb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"e7c34af\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Offer Top Notch Pinball Machine Service and Repairs\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sub_title\":\"Is Your Pinball Machine Broken?\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"10df5e6a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>System Amusement is happy to offer pinball machine repair and service to customers located throughout Eastern Washington and Western Idaho. Contact our support team today to setup an appointment.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"431858c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"160cdc54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/pinball-at-home-.jpeg\",\"id\":4384},\"image_size\":\"full\",\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a85a00b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"45\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5846a252\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"78aad6aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact our support team today!\",\"desc\":\"Click to call\",\"btn_text\":\"509-326-1551\",\"btn_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"btn_link\":{\"url\":\"te:509-326-1551\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false}]'),(5236,4394,'_wp_page_template','default'),(5237,4394,'_elementor_edit_mode','builder'),(5238,4394,'_elementor_template_type','wp-page'),(5239,4394,'_elementor_version','3.1.4'),(5240,4394,'_elementor_data','[{\"id\":\"40fd8216\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"67\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2a114ffb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"e7c34af\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Offer Top Notch Pinball Machine Service and Repairs\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sub_title\":\"Is Your Pinball Machine Broken?\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"10df5e6a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>System Amusement is happy to offer pinball machine repair and service to customers located throughout Eastern Washington and Western Idaho. Contact our support team today to setup an appointment.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"431858c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"160cdc54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/pinball-at-home-.jpeg\",\"id\":4384},\"image_size\":\"full\",\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a85a00b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"45\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5846a252\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"78aad6aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact our support team today!\",\"desc\":\"Click to call\",\"btn_text\":\"509-326-1551\",\"btn_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"btn_link\":{\"url\":\"te:509-326-1551\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false}]'),(5208,4388,'_elementor_edit_mode','builder'),(5209,4388,'_elementor_template_type','section'),(5210,4388,'_elementor_version','3.1.4'),(5211,4389,'_elementor_edit_mode','builder'),(5212,4389,'_elementor_template_type','section'),(5213,4389,'_elementor_version','3.1.4'),(5214,4388,'_wp_page_template','default'),(5215,4388,'_elementor_data','[{\"id\":\"35e2d42\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFD500FC\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"39c50211\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4fc2f8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our 50+ Years of Dedication to our Clients!\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#00BCFF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_typography_font_weight\":\"400\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52d9c71c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"7a01e2e9\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"6f6b63d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"204f8ff5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F00000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"40e34d9b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"47b89f4c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"6c603338\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1d349d2b\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"7413bd5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"17d93d5e\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5216,4390,'_elementor_edit_mode','builder'),(5217,4390,'_elementor_template_type','section'),(5218,4390,'_elementor_version','3.1.4'),(5219,4390,'_wp_page_template','default'),(5220,4390,'_elementor_data','[{\"id\":\"35e2d42\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFD500FC\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"39c50211\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4fc2f8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our 50+ Years of Dedication to our Clients!\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#00BCFF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_typography_font_weight\":\"400\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52d9c71c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"7a01e2e9\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"6f6b63d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"204f8ff5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F00000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"40e34d9b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"47b89f4c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"6c603338\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1d349d2b\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"7413bd5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"17d93d5e\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5221,4388,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:8:{s:5:\"title\";i:1;s:10:\"text_align\";i:1;s:5:\"style\";i:1;s:18:\"title_space_bottom\";i:1;s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;}s:17:\"sub_title_section\";a:8:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:32:\"sub_title_typography_font_family\";i:1;s:30:\"sub_title_typography_font_size\";i:1;s:32:\"sub_title_typography_font_weight\";i:1;s:22:\"sub_title_space_bottom\";i:1;s:14:\"sub_title_line\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;s:19:\"text_color_gradient\";i:1;s:26:\"link_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:8:\"_padding\";i:1;s:7:\"_margin\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:4:{s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:1:{s:12:\"number_color\";i:4;}s:13:\"section_title\";a:1:{s:11:\"title_color\";i:4;}s:12:\"section_icon\";a:1:{s:10:\"icon_color\";i:4;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:4;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:4;s:17:\"_background_color\";i:4;}s:15:\"_section_border\";a:4:{s:14:\"_border_border\";i:4;s:13:\"_border_width\";i:4;s:13:\"_border_color\";i:4;s:14:\"_border_radius\";i:4;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:5;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:1:{s:15:\"stretch_section\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}s:26:\"section_background_overlay\";a:6:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:29:\"background_overlay_attachment\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}}'),(5192,4385,'_wp_page_template','default'),(5193,4385,'_elementor_edit_mode','builder'),(5194,4385,'_elementor_template_type','wp-page'),(5195,4385,'_elementor_version','2.8.5'),(5196,4385,'_elementor_data','[{\"id\":\"40fd8216\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"67\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2a114ffb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"e7c34af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consulting is a law firm specialising in corporate finance work\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sub_title\":\"About us\",\"sub_title_style\":\"style2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"10df5e6a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Advice on comprehensive legal solutions and legal planning on all aspects of business, including: issues under Company Law & Exchange Control Regulations.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6638bf3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"36029746\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"721a687f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work<br\\/> Development\",\"percentage_value\":80,\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_piecharts\"}],\"isInner\":true},{\"id\":\"2500a52d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"407fce4e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Plan<br\\/> Fulfilled\",\"percentage_value\":90,\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_piecharts\"}],\"isInner\":true},{\"id\":\"63dd35a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"50076466\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI\\/UX<br\\/> Desigining\",\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_piecharts\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"431858c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"160cdc54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h4-about1-1.png\",\"id\":3937},\"image_size\":\"full\",\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a85a00b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"45\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5846a252\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"78aad6aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more about us?\",\"desc\":\"Just download brochure...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"271a828\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"216aa41\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bd79acf\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"284946a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.082999999999998408384271897375583648681640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2e424e89\",\"elType\":\"widget\",\"settings\":{\"title\":\"We deals with many services to take extra care of your problem solutions.\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sub_title\":\"Services\",\"sub_title_style\":\"style2\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"ebf2f68\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.87700000000000244426701101474463939666748046875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1e183e09\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Business services is a general term that describes work that supports a business but does not produce a tangible commodity. Information technology is important.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"654682a1\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"title\":\"Tax Consultancy\",\"description\":\"This is one of many areas of\\nprofessional services where our firm is well ahead of the competition.\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/service\\/business-strategy\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"ad3ffd2\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-service-icon4.png\",\"id\":3364}},{\"ct_icon\":{\"value\":\"flaticon flaticon-stats\",\"library\":\"flaticon\"},\"title\":\"Audit & assurance\",\"description\":\"People are only as good as the tools they possess. So, to consistently deliver high-quality auditing services.\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/service\\/business-strategy\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-service-icon5.png\",\"id\":3365},\"_id\":\"549e205\"},{\"ct_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"title\":\"Value Added Tax\",\"description\":\"We are providing and dealing with all sorts of legal and professional services and matters to operate.\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/service\\/business-strategy\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-service-icon6.png\",\"id\":3366},\"_id\":\"c96dff0\"},{\"ct_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"title\":\"Accounting Services\",\"description\":\"Our professionals provide a range of accounting and assurance services of the highest standards.\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/service\\/business-strategy\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-service-icon7.png\",\"id\":3367},\"_id\":\"c5fa888\"},{\"ct_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"title\":\"Tax Outsourcing\",\"description\":\"Unlike our competitors we have in house qualified lawyers and accountants who can help you.\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/service\\/business-strategy\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-service-icon8.png\",\"id\":3368},\"_id\":\"70a20db\"},{\"ct_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"title\":\"Amazing Strategy\",\"description\":\"Operates an atmosphere that promote creative approach for clients needs.\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/service\\/business-strategy\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-service-icon9.png\",\"id\":3369},\"_id\":\"838b0fb\"}],\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4b3b2339\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\",\"id\":1536},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/bg-section-04.png\",\"id\":2125},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.88000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed81794\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.5},\"elements\":[{\"id\":\"27093372\",\"elType\":\"widget\",\"settings\":{\"title\":\"Don\\u2019t misread here we have random & interesting facts.\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"title_color\":\"#ffffff\",\"sub_title\":\"Funfact\",\"sub_title_color\":\"#FFFFFF\",\"sub_title_style\":\"style2\",\"sub_title_space_top\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"309772db\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Starfish can re-grow their arms. In fact, a single arm can regenerate a whole body. Google\'s founders were willing\\nto sell & consult.\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"52\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"030\",\"bottom\":\"0\",\"left\":\"52\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"60671754\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"_margin\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"52\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"52\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"3c14ed29\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.5,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"65\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"196cdac9\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"3374a3ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"3acc5d5a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":105,\"suffix\":\"+\",\"title\":\"Team members\",\"show_icon\":\"\",\"bg_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/gallery-01.jpg\",\"id\":1552},\"size\":\"size2\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"65\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"-10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"1f51f75f\",\"elType\":\"widget\",\"settings\":{\"ending_number\":8,\"suffix\":\"+\",\"title\":\"Winning Awards\",\"show_icon\":\"\",\"bg_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/gallery-06.jpg\",\"id\":1557},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"5489227e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"54cf5f11\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"suffix\":\"+\",\"title\":\"Client\\u2019s Feedback\",\"show_icon\":\"\",\"bg_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/gallery-02.jpg\",\"id\":1553},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"-25\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"32e87dd0\",\"elType\":\"widget\",\"settings\":{\"ending_number\":310,\"suffix\":\"+\",\"title\":\"Completed Works\",\"show_icon\":\"\",\"bg_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/gallery-03.jpg\",\"id\":1554},\"size\":\"size2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"41b62b34\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/bg-section-01.png\",\"id\":2056},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\"},\"elements\":[{\"id\":\"5a7cd766\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"353bac17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"35\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"30b6a483\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3e61afcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"It\\u2019s always a joy to hear that the work we do, has positively reviews.\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sub_title\":\"Testimonial\",\"sub_title_style\":\"style2\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"139f6854\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cdda213\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We have spent 9 years working for one of Australia\\u2019s most\\nrecognised and successful retailers so we have many good\\nreview of works.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"73f8dd0c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-04.jpg\",\"id\":400},\"title\":\"Maria Silverii\",\"position\":\"CEO of Blue Illusion\",\"description\":\"I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24\\/24.\",\"_id\":\"4bedbf5\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-05.jpg\",\"id\":401},\"title\":\"Phillip Macintyre\",\"position\":\"CEO of Blue Illusion\",\"description\":\"I love Consultio! It really looks more original than many others.Support deserves 7 stars but, unfortunately, you do not have that option. I really suggest you to work with them.\",\"_id\":\"1d1720d\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/team-01.jpg\",\"id\":1690},\"title\":\"Amy Harrison\",\"position\":\"Contiki Holidays\",\"description\":\"Great, versatile theme with lots of customisability. But - above all that the customer support is amazing, useful and quick! I must recommand\\nthem.\",\"_id\":\"b234799\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Maria Silverii\",\"position\":\"CEO of Blue Illusion\",\"description\":\"I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24\\/24.\",\"_id\":\"b2dfe23\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/home-author-01.jpg\",\"id\":2170},\"title\":\"Amy Harrison\",\"position\":\"Contiki Holidays\",\"description\":\"Great, versatile theme with lots of customisability. But - above all that the customer support is amazing, useful and quick! I must recommand\\nthem.\",\"_id\":\"1ed2282\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/home-author-02.jpg\",\"id\":2171},\"title\":\"Phillip Macintyre\",\"position\":\"CEO of Blue Illusion\",\"description\":\"I love Consultio! It really looks more original than many others.Support deserves 7 stars but, unfortunately, you do not have that option. I really suggest you to work with them.\",\"_id\":\"9ebe622\"}],\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"infinite\":\"true\",\"col_sm\":\"1\",\"col_md\":\"2\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d76413c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3f88cefe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"397ee275\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(981,3493,'_wp_page_template','default'),(982,3493,'custom_header','1'),(983,3493,'header_layout','19'),(984,3493,'p_logo_dark','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(6043,3493,'h_custom_menu_right',''),(985,3493,'p_logo_light','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(6042,3493,'h_custom_menu_left',''),(986,3493,'p_logo_mobile','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(6041,3493,'h_custom_menu',''),(987,3493,'page_h_phone',''),(988,3493,'page_h_time',''),(989,3493,'custom_pagetitle','show'),(990,3493,'custom_title','League Information'),(991,3493,'ptitle_bg','a:2:{s:16:\"background-image\";s:64:\"https://sa7717.dev34.info/wp-content/uploads/2021/05/image-1.png\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"4509\";s:6:\"height\";s:3:\"360\";s:5:\"width\";s:4:\"1183\";s:9:\"thumbnail\";s:72:\"https://sa7717.dev34.info/wp-content/uploads/2021/05/image-1-150x150.png\";}}'),(992,3493,'ptitle_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:5:\"100px\";s:14:\"padding-bottom\";s:0:\"\";}'),(993,3493,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(994,3493,'content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}'),(995,3493,'show_sidebar_page',''),(996,3493,'sidebar_page_pos','right'),(997,3493,'loading_page','themeoption'),(998,3493,'loading_type','style1'),(999,3493,'loading_color',''),(1000,3493,'custom_footer','1'),(1001,3493,'footer_layout_custom','3201'),(1002,3493,'page_back_totop','themeoption'),(6049,3493,'eg_sources_html5_mp4',''),(1004,3493,'_elementor_edit_mode','builder'),(1005,3493,'_elementor_template_type','wp-page'),(1006,3493,'_elementor_version','3.2.2'),(1007,3493,'_elementor_data','[{\"id\":\"64fd72b8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"42\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"305603d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9da93fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the information below to sign up for the Dart and Pool Leagues\",\"sub_title\":\"League Information\",\"sub_title_color\":\"#595959\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"_css_classes\":\"line-sub-preset2\",\"ct_animate\":\"wow bounce\",\"text_align\":\"center\",\"sub_title_style\":\"style7\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"f725b8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"20124ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"df23ab3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"about-call\\\"><span style=\\\"color: #d90202;\\\">Dart League registration and info<\\/span><\\/h5><div><strong>Inland Empire Dart League<\\/strong><\\/div><div>\\u00a0<\\/div><div><a href=\\\"tel:509-389-6518\\\"><strong>509-389-6518<\\/strong><\\/a>\\u00a0 \\u00a0<em>Ask For Tammy (secretary)<\\/em><\\/div><div>\\u00a0<\\/div><div><strong><a href=\\\"mailto:info@dartleague.com\\\">info@dartleague.com<\\/a><\\/strong><\\/div><div>\\u00a0<\\/div><div><strong>The dart league is associated with the National Dart Association\\u00a0<\\/strong><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a6662f5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/nda.png\",\"id\":4504},\"image_size\":\"medium\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ab5c66a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ea0522\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"about-call\\\"><span style=\\\"color: #d90202;\\\">Pool League registration and info<\\/span><\\/h5><div><strong>APA of Spokane<\\/strong><\\/div><div>\\u00a0<\\/div><div><div><a href=\\\"tel:509-327-2591\\\"><strong>509-327-2591<\\/strong><\\/a><\\/div><\\/div><div>\\u00a0<\\/div><div><div><a href=\\\"http:\\/\\/poolplayers.com\\\"><strong>poolplayers.com<\\/strong><\\/a><\\/div><div>\\u00a0<\\/div><div><strong>The pool league is associated with the American Pool Players Association\\u00a0<\\/strong><\\/div><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"13ae9b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/apa.png\",\"id\":4505},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6014,4498,'_wp_page_template','default'),(6015,4498,'_elementor_edit_mode','builder'),(6016,4498,'_elementor_template_type','wp-page'),(6017,4498,'_elementor_version','3.2.2'),(6018,4498,'_elementor_data','[{\"id\":\"64fd72b8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"42\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"305603d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9da93fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the information belowto sign up for the Dart and Pool Leagues\",\"sub_title\":\"League Information\",\"sub_title_color\":\"#595959\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"_css_classes\":\"line-sub-preset2\",\"ct_animate\":\"wow bounce\",\"text_align\":\"center\",\"sub_title_style\":\"style7\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"f725b8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"20124ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ea0522\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"about-call\\\">For Dart League registration please use the following information below:<\\/div><div>\\u00a0<\\/div><div>info@dartleague.com<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"ab5c66a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1fb7224d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"about-call\\\">For Dart League registration please use the following information below:<\\/div><div>\\u00a0<\\/div><div>info@dartleague.com<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6019,4499,'_wp_page_template','default'),(6020,4499,'_elementor_edit_mode','builder'),(6021,4499,'_elementor_template_type','wp-page'),(6022,4499,'_elementor_version','3.2.2'),(6023,4499,'_elementor_data','[{\"id\":\"64fd72b8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"42\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"305603d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9da93fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the information belowto sign up for the Dart and Pool Leagues\",\"sub_title\":\"League Information\",\"sub_title_color\":\"#595959\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"_css_classes\":\"line-sub-preset2\",\"ct_animate\":\"wow bounce\",\"text_align\":\"center\",\"sub_title_style\":\"style7\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"f725b8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"20124ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ea0522\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"about-call\\\">For Dart League registration please use the following information below:<\\/div><div>\\u00a0<\\/div><div>info@dartleague.com<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"ab5c66a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1fb7224d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"about-call\\\">For Dart League registration please use the following information below:<\\/div><div>\\u00a0<\\/div><div>info@dartleague.com<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6024,4500,'_wp_page_template','default'),(6025,4500,'_elementor_edit_mode','builder'),(6026,4500,'_elementor_template_type','wp-page'),(6027,4500,'_elementor_version','3.2.2'),(6028,4500,'_elementor_data','[{\"id\":\"64fd72b8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"42\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"305603d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9da93fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the information below to sign up for the Dart and Pool Leagues\",\"sub_title\":\"League Information\",\"sub_title_color\":\"#595959\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"_css_classes\":\"line-sub-preset2\",\"ct_animate\":\"wow bounce\",\"text_align\":\"center\",\"sub_title_style\":\"style7\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"f725b8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"20124ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ea0522\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"about-call\\\">For Dart League registration please use the following information below:<\\/div><div>\\u00a0<\\/div><div>info@dartleague.com<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"ab5c66a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1fb7224d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"about-call\\\">For Dart League registration please use the following information below:<\\/div><div>\\u00a0<\\/div><div>info@dartleague.com<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6095,4506,'_wp_page_template','default'),(6096,4506,'_elementor_edit_mode','builder'),(6097,4506,'_elementor_template_type','wp-page'),(6098,4506,'_elementor_version','3.2.2'),(6099,4506,'_elementor_data','[{\"id\":\"64fd72b8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"42\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"305603d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9da93fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the information below to sign up for the Dart and Pool Leagues\",\"sub_title\":\"League Information\",\"sub_title_color\":\"#595959\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"_css_classes\":\"line-sub-preset2\",\"ct_animate\":\"wow bounce\",\"text_align\":\"center\",\"sub_title_style\":\"style7\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"f725b8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"20124ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ea0522\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"about-call\\\">For Dart League registration please use the following information below:<\\/div><div>\\u00a0<\\/div><div>info@dartleague.com<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"ab5c66a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1fb7224d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"about-call\\\">For Dart League registration please use the following information below:<\\/div><div>\\u00a0<\\/div><div>info@dartleague.com<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6091,4504,'_wp_attached_file','2021/05/nda.png'),(6092,4504,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1425;s:6:\"height\";i:394;s:4:\"file\";s:15:\"2021/05/nda.png\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"nda-300x83.png\";s:5:\"width\";i:300;s:6:\"height\";i:83;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"nda-1024x283.png\";s:5:\"width\";i:1024;s:6:\"height\";i:283;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"nda-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"nda-768x212.png\";s:5:\"width\";i:768;s:6:\"height\";i:212;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:15:\"nda-900x313.png\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:15:\"nda-600x394.png\";s:5:\"width\";i:600;s:6:\"height\";i:394;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:15:\"nda-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:15:\"nda-600x166.png\";s:5:\"width\";i:600;s:6:\"height\";i:166;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:15:\"nda-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:15:\"nda-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:15:\"nda-600x166.png\";s:5:\"width\";i:600;s:6:\"height\";i:166;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:15:\"nda-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6031,3493,'_edit_lock','1621619441:1'),(6032,4501,'_wp_page_template','default'),(6033,4501,'_elementor_edit_mode','builder'),(6034,4501,'_elementor_template_type','wp-page'),(6035,4501,'_elementor_version','3.2.2'),(6036,4501,'_elementor_data','[{\"id\":\"64fd72b8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"42\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"305603d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9da93fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the information below to sign up for the Dart and Pool Leagues\",\"sub_title\":\"League Information\",\"sub_title_color\":\"#595959\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"_css_classes\":\"line-sub-preset2\",\"ct_animate\":\"wow bounce\",\"text_align\":\"center\",\"sub_title_style\":\"style7\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"f725b8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"20124ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ea0522\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"about-call\\\">For Dart League registration please use the following information below:<\\/div><div>\\u00a0<\\/div><div>info@dartleague.com<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"ab5c66a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1fb7224d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"about-call\\\">For Dart League registration please use the following information below:<\\/div><div>\\u00a0<\\/div><div>info@dartleague.com<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6037,4501,'_elementor_controls_usage','a:4:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:1;s:18:\"title_space_bottom\";i:1;s:10:\"ct_animate\";i:1;s:10:\"text_align\";i:1;}s:17:\"sub_title_section\";a:6:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:32:\"sub_title_typography_font_family\";i:1;s:32:\"sub_title_typography_font_weight\";i:1;s:15:\"sub_title_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}}'),(6038,4501,'_elementor_css','a:6:{s:4:\"time\";i:1621470123;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(6039,3493,'_edit_last','1'),(6040,3493,'p_h_style1','themeoption'),(6044,3493,'p_page_title_color',''),(6045,3493,'ptitle_overlay','themeoption'),(6046,3493,'ptitle_breadcrumb_page','themeoption'),(6047,3493,'ptitle_breadcrumb_color',''),(6048,3493,'p_bg_content','a:6:{s:17:\"background-repeat\";s:0:\"\";s:15:\"background-size\";s:0:\"\";s:21:\"background-attachment\";s:0:\"\";s:19:\"background-position\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(6050,3493,'eg_sources_youtube',''),(6051,3493,'eg_sources_vimeo',''),(6052,3493,'eg_sources_wistia',''),(6053,3493,'eg_sources_image',''),(6054,3493,'eg_sources_iframe',''),(6055,3493,'eg_sources_soundcloud',''),(6056,3493,'eg_vimeo_ratio','1'),(6057,3493,'eg_youtube_ratio','1'),(6058,3493,'eg_wistia_ratio','1'),(6059,3493,'eg_html5_ratio','1'),(6060,3493,'eg_soundcloud_ratio','1'),(6061,3493,'eg_sources_revslider',''),(6062,3493,'eg_sources_essgrid',''),(6063,3493,'eg_featured_grid',''),(6064,3493,'eg_settings_custom_meta_skin',''),(6065,3493,'eg_settings_custom_meta_element',''),(6066,3493,'eg_settings_custom_meta_setting',''),(6067,3493,'eg_settings_custom_meta_style',''),(6068,3493,'eg_custom_meta_216','true'),(6069,3493,'eg_votes_count','0'),(6070,4502,'_wp_page_template','default'),(6071,4502,'_elementor_edit_mode','builder'),(6072,4502,'_elementor_template_type','wp-page'),(6073,4502,'_elementor_version','3.2.2'),(6074,4502,'_elementor_data','[{\"id\":\"64fd72b8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"42\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"305603d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9da93fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the information below to sign up for the Dart and Pool Leagues\",\"sub_title\":\"League Information\",\"sub_title_color\":\"#595959\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"_css_classes\":\"line-sub-preset2\",\"ct_animate\":\"wow bounce\",\"text_align\":\"center\",\"sub_title_style\":\"style7\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"f725b8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"20124ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ea0522\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"about-call\\\">For Dart League registration please use the following information below:<\\/div><div>\\u00a0<\\/div><div>info@dartleague.com<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"ab5c66a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1fb7224d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"about-call\\\">For Dart League registration please use the following information below:<\\/div><div>\\u00a0<\\/div><div>info@dartleague.com<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6075,4502,'_elementor_controls_usage','a:4:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:1;s:18:\"title_space_bottom\";i:1;s:10:\"ct_animate\";i:1;s:10:\"text_align\";i:1;}s:17:\"sub_title_section\";a:6:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:32:\"sub_title_typography_font_family\";i:1;s:32:\"sub_title_typography_font_weight\";i:1;s:15:\"sub_title_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}}'),(6076,4502,'_elementor_css','a:6:{s:4:\"time\";i:1621470123;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(6077,4343,'_wp_old_date','2021-04-28'),(5998,4495,'_wp_page_template','default'),(5999,4495,'_elementor_edit_mode','builder'),(6000,4495,'_elementor_template_type','wp-page'),(6001,4495,'_elementor_version','2.8.5'),(6002,4495,'_elementor_data','[{\"id\":\"64fd72b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"55\",\"right\":0,\"bottom\":\"42\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"305603d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9da93fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re a global stakeholder relations and consultancy.\",\"sub_title\":\"About us\",\"sub_title_color\":\"#595959\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"_css_classes\":\"line-sub-preset2\",\"ct_animate\":\"wow bounce\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"398fa9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku sendeno\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_css_classes\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"311bc37\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We bring more than 24 years\\u2019 senior experience forging of\\ncollaborations across government.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_css_classes\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ef13cfd\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"list\":[{\"title\":\"\",\"content\":\"Praesent feugiat sem.\",\"_id\":\"5468f9e\"},{\"title\":\"\",\"content\":\"A wonderful serenity.\",\"_id\":\"e337312\"},{\"title\":\"\",\"content\":\"Premium services for you.\",\"_id\":\"a1fd6d3\"},{\"title\":\"\",\"content\":\"Set a link back to photo.\",\"_id\":\"7341c94\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"59\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"1fb7224d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"about-call\\\">Call to ask <a class=\\\"link-preset2\\\" href=\\\"#\\\">any question<\\/a> 540-325-1523<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78f3a28d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/about-gap.png\",\"id\":1896},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e20b32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/signature-02.png\",\"id\":2319},\"title\":\"Natalia Duke\",\"sub_title\":\"(Chairman and founder)\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":false},{\"id\":\"1bb8bef0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40e6861c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/banner-01.png\",\"id\":2306},\"title\":\"24 Years of Experience\",\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"38f7332b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7dba3a7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"735a4111\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44317976\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.082999999999998408384271897375583648681640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e36d3ea\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'re ready to share our advice and experience.\",\"sub_title\":\"Pricing\",\"sub_title_color\":\"#595959\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"_css_classes\":\"line-sub-preset2\",\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"4edf15d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.87700000000000244426701101474463939666748046875,\"margin\":{\"unit\":\"px\",\"top\":\"030\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"54c181e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"The main difference between Statistic and Statistics is that the Statistic is a single measure of some attribute of a sample and Statistics is a study of the collection.\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"21927eaa\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"title\":\"Tax Consultancy\",\"description\":\"This is one of many areas of\\nprofessional services where our firm is well ahead of the competition.\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/service\\/business-strategy\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"ad3ffd2\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-service-icon4.png\",\"id\":3364}},{\"ct_icon\":{\"value\":\"flaticon flaticon-stats\",\"library\":\"flaticon\"},\"title\":\"Audit & assurance\",\"description\":\"People are only as good as the tools they possess. So, to consistently deliver high-quality auditing services.\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/service\\/business-strategy\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-service-icon5.png\",\"id\":3365},\"_id\":\"549e205\"},{\"ct_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"title\":\"Value Added Tax\",\"description\":\"We are providing and dealing with all sorts of legal and professional services and matters to operate.\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/service\\/business-strategy\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-service-icon6.png\",\"id\":3366},\"_id\":\"c96dff0\"},{\"ct_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"title\":\"Accounting Services\",\"description\":\"Our professionals provide a range of accounting and assurance services of the highest standards.\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/service\\/business-strategy\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-service-icon7.png\",\"id\":3367},\"_id\":\"c5fa888\"},{\"ct_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"title\":\"Tax Outsourcing\",\"description\":\"Unlike our competitors we have in house qualified lawyers and accountants who can help you.\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/service\\/business-strategy\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-service-icon8.png\",\"id\":3368},\"_id\":\"70a20db\"},{\"ct_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"title\":\"Amazing Strategy\",\"description\":\"Operates an atmosphere that promote creative approach for clients needs.\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/service\\/business-strategy\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-service-icon9.png\",\"id\":3369},\"_id\":\"838b0fb\"}],\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c752131\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/theme23.jpg\",\"id\":3614},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"b425f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"ce65c69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"css_classes\":\"col-offset-right\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"7af3a6b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":108,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"95f59e2\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Like What We Offer\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"color-gradient-from\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"9211325\",\"elType\":\"widget\",\"settings\":{\"title\":\"DO BUSINESS<br\\/>\\nWITH US!\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"58fe444\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"text_editor\":\"In order to acquire our services please kindly send us your inquiry of interest. We shall revert back\\nimmediately.\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"03068b7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"btn_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"02\",\"right\":\"36\",\"bottom\":\"2\",\"left\":\"36\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_button\"},{\"id\":\"202a22e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7044b92\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/about-section-01.jpg\",\"id\":3628},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43e18f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"_inline_size_tablet\":90},\"elements\":[{\"id\":\"b570126\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Our Value\",\"content_type\":\"text_editor\",\"tab_content\":\"<div class=\\\"tab-sub\\\">We Have Over 3000 Registered Human Resource Portals To Seek out the Best For Your Company.<\\/div>\\n\\nNetworks of our affiliates spreads all over the world inorder to provide a good grip in the Global Human Resource Recruitment System.\",\"tab_content_template\":\"\",\"_id\":\"91aeee6\"},{\"tab_title\":\"Our Mission\",\"content_type\":\"text_editor\",\"tab_content\":\"<div class=\\\"tab-sub\\\">Our professionals provide a range of accounting and assurance services of the highest standards.<\\/div>\\n\\nNetworks of our affiliates spreads all over the world inorder to provide a good grip in the Global Human Resource Recruitment System.\",\"tab_content_template\":\"\",\"_id\":\"8303bab\"},{\"tab_title\":\"Payroll Service\",\"content_type\":\"text_editor\",\"tab_content\":\"<div class=\\\"tab-sub\\\">People are only as good as the tools they possess. So, to consistently deliver high-quality auditing.<\\/div>\\nNetworks of our affiliates spreads all over the world inorder to provide a good grip in the Global Human Resource Recruitment System.\",\"tab_content_template\":\"\",\"_id\":\"bdab1d1\"}],\"tab_type\":\"vertical\",\"title_color_type\":\"#FFFFFF\",\"content_color_type\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_tabs\"}],\"isInner\":false},{\"id\":\"c7ad8c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41.96000000000000085265128291212022304534912109375,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"78e91ef\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"padding\":{\"unit\":\"px\",\"top\":\"81\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"918186f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"1ab16bbd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We draw on our global network to\\nassemble a team of experts.\",\"sub_title\":\"Team\",\"sub_title_color\":\"#595959\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"_css_classes\":\"line-sub-preset2\",\"ct_animate\":\"wow fadeInLeft\",\"title_typography_typography\":\"custom\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"8c051a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"d62d9b3\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"content_list3\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/team-single.jpg\",\"id\":1706},\"title\":\"Fran Bostick\",\"position\":\"Founder & CEO\",\"desc\":\"He has extensive experience in\\norganizational design, business process reengineering.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-youtube-play\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-skype\\\",\\\"url\\\":\\\"#\\\"}]\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"cdc1c54\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Tina Holt\",\"position\":\"Federal Contractor\",\"desc\":\"He has extensive experience in\\norganizational design, business process reengineering.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-youtube-play\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-skype\\\",\\\"url\\\":\\\"\\\"}]\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"784ebc9\"}],\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"360\",\"height\":\"360\"},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a676f2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"d088f8f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"38dd266\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"content_list3\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-team3.jpg\",\"id\":3400},\"title\":\"Charles Wilkinson\",\"position\":\"Founder & CEO\",\"desc\":\"He has extensive experience in\\norganizational design, business process reengineering.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-youtube-play\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-skype\\\",\\\"url\\\":\\\"#\\\"}]\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"cdc1c54\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Michael Alan Tate\",\"position\":\"Vice President\",\"desc\":\"He has extensive experience in\\norganizational design, business process reengineering.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-youtube-play\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-skype\\\",\\\"url\\\":\\\"\\\"}]\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"784ebc9\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-team1.jpg\",\"id\":3383},\"title\":\"Suzanne Higgins\",\"position\":\"Senior Consultant\",\"desc\":\"He has extensive experience in\\norganizational design, business process reengineering.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-youtube-play\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-skype\\\",\\\"url\\\":\\\"\\\"}]\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5fa0e23\"}],\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"360\",\"height\":\"360\"},\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"51a18258\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ca2bbec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f546273\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#F0F0F1\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"168b53c2\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(1009,569,'slide_template','default'),(1010,569,'portfolio_sub_title','Plan Estimations'),(1011,569,'_wp_page_template','default'),(1012,569,'portfolio_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(1013,569,'_elementor_edit_mode','builder'),(1014,569,'_elementor_template_type','wp-post'),(1015,569,'_elementor_version','2.7.5'),(1016,569,'_elementor_data','[{\"id\":\"1ef46e13\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"767baefc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"20c4bd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Portfolio\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4d2f320e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b770116\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"100163c6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"67225c89\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"411b8936\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-12.jpg\",\"id\":1541},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2b8bdd35\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bf80737\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fund Management\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"65162c9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed4b5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f51c582\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46012a39\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6cb5cf64\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"64fa3143\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(1017,569,'_wp_old_slug','rupayan-taj'),(1018,569,'_thumbnail_id','1541'),(1019,569,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(1020,571,'slide_template','default'),(1021,571,'portfolio_sub_title','Exterior Design'),(1022,571,'_wp_page_template','default'),(1023,571,'portfolio_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(1024,571,'_elementor_edit_mode','builder'),(1025,571,'_elementor_template_type','wp-post'),(1026,571,'_elementor_version','2.7.5'),(1027,571,'_elementor_data','[{\"id\":\"277bf312\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fc56f49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"624674ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Portfolio\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"340c8a4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c9ecac7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"51426840\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"67eae2ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"303d0652\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\",\"id\":1538},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"141dc37\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eb2aea0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial Analysis\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"141fe9f9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"747aff36\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e895bd\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10eb7f3e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"efe11f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6ac9c126\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(1028,571,'_wp_old_slug','razia-tower'),(1029,571,'_thumbnail_id','1538'),(1030,571,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(1031,573,'slide_template','default'),(1032,573,'portfolio_sub_title','Plan Certification'),(1033,573,'_wp_page_template','default'),(1034,573,'portfolio_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(1035,573,'_elementor_edit_mode','builder'),(1036,573,'_elementor_template_type','wp-post'),(1037,573,'_elementor_version','2.7.5'),(1038,573,'_elementor_data','[{\"id\":\"57ce9589\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71b35ef3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6681b63f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Portfolio\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"391d5678\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"391b9f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"29b45b4c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"31b2a3a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"72434400\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\",\"id\":1536},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"335ce718\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"645505c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Market Expansion\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"68730ac3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9e6a449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"678da7c9\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"476936cb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1880b368\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"41c2b24b\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(1039,573,'_wp_old_slug','fr-tower'),(1040,573,'_thumbnail_id','1536'),(1041,573,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(1042,1738,'_wp_page_template','default'),(1043,1738,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(1044,1738,'portfolio_sub_title',''),(1045,1738,'portfolio_content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(1046,1738,'slide_template','default'),(1047,1738,'_wp_old_date','2019-12-03'),(1048,1738,'_thumbnail_id','1543'),(1049,1738,'_elementor_edit_mode','builder'),(1050,1738,'_elementor_template_type','wp-post'),(1051,1738,'_elementor_version','2.7.5'),(1052,1738,'_elementor_data','[{\"id\":\"4cc8a858\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7a9bf111\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1dacb188\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Portfolio\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"29c0a65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"28ccba79\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"364c6a73\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"121febed\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74bd74cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-14.jpg\",\"id\":1543},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"33db605f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b1ad1e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consumer Products\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"588e191\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"356281be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4caa3bf3\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d2447a2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7ae03e60\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"34a7476f\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(1053,1740,'_wp_page_template','default'),(1054,1740,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(1055,1740,'portfolio_sub_title',''),(1056,1740,'portfolio_content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(1057,1740,'slide_template','default'),(1058,1740,'_wp_old_date','2019-12-03'),(1059,1740,'_thumbnail_id','1542'),(1060,1740,'_elementor_edit_mode','builder'),(1061,1740,'_elementor_template_type','wp-post'),(1062,1740,'_elementor_version','2.7.5'),(1063,1740,'_elementor_data','[{\"id\":\"43507583\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1cf40545\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b4c8c08\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Portfolio\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"6d7538c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d10b19e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32acc966\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7a4ca7b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"700a2a24\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e4e5ba7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68b48f5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Management\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"68c26d42\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ccdfb2f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31d7d807\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f447e11\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"432e9342\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69919d4b\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(1064,1766,'_thumbnail_id','1537'),(1065,1766,'_wp_page_template','default'),(1066,1766,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(1067,1766,'portfolio_content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(1068,1766,'slide_template',''),(1069,1766,'_wp_old_date','2019-12-03'),(1070,1766,'_elementor_edit_mode','builder'),(1071,1766,'_elementor_template_type','wp-post'),(1072,1766,'_elementor_version','2.7.5'),(1073,1766,'_elementor_data','[{\"id\":\"5bba157\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7bbc1efb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d608d10\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Portfolio\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"58fafd73\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"6d5571d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5988917e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2fc73221\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3caff8c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-08.jpg\",\"id\":1537},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5f41740e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"288149d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"StartUp Business\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"78cd2015\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5fb53d40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7b3c379\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"25631488\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"59578091\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a06c1f7\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(1074,3495,'_wp_page_template','default'),(1075,3495,'custom_header','1'),(1076,3495,'header_layout','2'),(1077,3495,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1078,3495,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1079,3495,'p_logo_mobile','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1080,3495,'page_h_phone',''),(1081,3495,'page_h_time',''),(1082,3495,'custom_pagetitle','show'),(1083,3495,'custom_title','About us'),(1084,3495,'ptitle_bg','a:2:{s:16:\"background-image\";s:81:\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-10.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1539\";s:6:\"height\";s:4:\"1200\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:89:\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-10-150x150.jpg\";}}'),(1085,3495,'ptitle_padding','a:3:{s:11:\"padding-top\";s:5:\"217px\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(1086,3495,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(1087,3495,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(1088,3495,'show_sidebar_page',''),(1089,3495,'sidebar_page_pos','right'),(1090,3495,'loading_page','themeoption'),(1091,3495,'loading_type','style1'),(1092,3495,'loading_color',''),(1093,3495,'custom_footer','1'),(1094,3495,'footer_layout_custom','3808'),(1095,3495,'page_back_totop','themeoption'),(1096,3495,'slide_template','default'),(1097,3495,'_elementor_edit_mode','builder'),(1098,3495,'_elementor_template_type','wp-page'),(1099,3495,'_elementor_version','2.8.5'),(1100,3495,'_elementor_data','[{\"id\":\"de5dcd5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F4\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/about4-bg-section1.png\",\"id\":3669},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38d98e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fcdca76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/about4-icon1.png\",\"id\":3663},\"title_text\":\"Business Growth\",\"description_text\":\"The argument in favor of using filler text goes some labore et dolore magna aliqua consectetur.\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/service\\/business-consulting\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":false},{\"id\":\"2c21843\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cc207a7\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/about4-icon2.png\",\"id\":3664},\"title_text\":\"Strategy Process\",\"description_text\":\"The argument in favor of using filler text goes some labore et dolore magna aliqua consectetur.\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/service\\/business-consulting\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":false},{\"id\":\"80ee074\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a9d6069\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/about4-icon3.png\",\"id\":3665},\"title_text\":\"Finance Manage\",\"description_text\":\"The argument in favor of using filler text goes some labore et dolore magna aliqua consectetur.\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/service\\/business-consulting\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bca8448\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"8630a61\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5ab3233\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are here to manage your finance with <i>experience<\\/i>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title\":\"about us\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"sub_title_typography_text_transform\":\"uppercase\",\"sub_title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"12e6001\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"particle\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/about4-shape1.png\",\"id\":3681},\"particle_animate\":\"animate-none\",\"top_positioon\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_id\":\"29d6673\"}]},\"elements\":[],\"widgetType\":\"ct_particle_animate\"},{\"id\":\"942af5f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"80813fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a3c8047\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h4-about1.png\",\"id\":3679},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f269e39\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de663bd\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"Finance\",\"percent\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"_id\":\"36ee43c\"},{\"title\":\"Business\",\"percent\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_id\":\"48a4889\"},{\"title\":\"Investment\",\"percent\":{\"unit\":\"%\",\"size\":93,\"sizes\":[]},\"_id\":\"fdae678\"}],\"layout\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"0\",\"bottom\":\"53\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_progressbar\"},{\"id\":\"39ccfa7\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The argument in favor of using filler text goes something like this: If you use real content in the <b><u>design process<\\/u><\\/b>, anytime you reach a review point you\\u2019ll end up reviewing and negotiating the content itself and not the design.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"7206656\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"\\nAenean tincidunt id mauris id auctor. Donec at ligula lacus. Nulla dignissim mi quis neque interdum, quis porta sem finibus.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a46ffb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\",\"id\":1536},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"48\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e67a90\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0336159\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\"},\"elements\":[{\"id\":\"9559d14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"_inline_size_tablet\":20},\"elements\":[],\"isInner\":true},{\"id\":\"7aad221\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.33200000000000073896444519050419330596923828125,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"fd46c38\",\"elType\":\"widget\",\"settings\":{\"title\":\"See how we work with\\ntouch of <i>experience<\\/i>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title\":\"Video\",\"sub_title_color\":\"#FFFFFF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"sub_title_typography_text_transform\":\"uppercase\",\"sub_title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"020\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3d043c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"_inline_size_tablet\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f0564eb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"ct_animate\":\"wow fadeInUp\",\"_css_classes\":\"text-center\"},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a4ee903\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8351f6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b931bb1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6844e09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"512d7c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"There are many companies\\nbut why <i>choose us<\\/i>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title\":\"Why choose us\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"sub_title_typography_text_transform\":\"uppercase\",\"sub_title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"9a78b44\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"b70c597\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The argument in favor of using filler text goes something like this: If you use real content in the design process, anytime you reach a review point you\\u2019ll end up reviewing and negotiating the content itself.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"bc1417d\",\"elType\":\"widget\",\"settings\":{\"active_tab\":3,\"tabs\":[{\"tab_title\":\"Expert team\",\"tab_content\":\"The argument in favorite of using filler to text goes some thing like this top\",\"banner\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-02.jpg\",\"id\":1531},\"_id\":\"ce4f709\"},{\"tab_title\":\"Best Finance Brand\",\"tab_content\":\"The argument in favorite of using filler to text goes some thing like this top\",\"banner\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\",\"id\":1534},\"_id\":\"a8a721c\"},{\"tab_title\":\"Best Leadership Ideas\",\"tab_content\":\"The argument in favorite of using filler to text goes some thing like this top\",\"banner\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-10.jpg\",\"id\":1539},\"_id\":\"a1fe66a\"}]},\"elements\":[],\"widgetType\":\"ct_tab_banner\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"16733087\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d57564b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"8992f4e\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#F0F0F1\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"55\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39845ef8\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(1101,3495,'_elementor_controls_usage','a:12:{s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:3;s:10:\"ct_animate\";i:3;}}s:7:\"content\";a:1:{s:15:\"section_content\";a:5:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:13;s:19:\"_inline_size_tablet\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:13:\"margin_mobile\";i:2;s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:7;s:15:\"stretch_section\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;s:16:\"background_image\";i:2;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:5;s:6:\"margin\";i:2;s:14:\"padding_tablet\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:3;s:27:\"title_typography_typography\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_line_height\";i:3;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:9:{s:9:\"sub_title\";i:3;s:15:\"sub_title_color\";i:3;s:31:\"sub_title_typography_typography\";i:3;s:30:\"sub_title_typography_font_size\";i:3;s:35:\"sub_title_typography_text_transform\";i:3;s:32:\"sub_title_typography_line_height\";i:3;s:35:\"sub_title_typography_letter_spacing\";i:3;s:22:\"sub_title_space_bottom\";i:3;s:14:\"sub_title_line\";i:3;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:3;s:7:\"_margin\";i:3;s:14:\"_margin_mobile\";i:1;s:15:\"_padding_tablet\";i:2;s:15:\"_padding_mobile\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}}}s:14:\"ct_progressbar\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:2:{s:16:\"progressbar_list\";i:1;s:6:\"layout\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:13:\"ct_tab_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:10:\"active_tab\";i:1;s:4:\"tabs\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:1:{s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}}'),(1102,3497,'_wp_page_template','default'),(1103,3497,'custom_header','1'),(1104,3497,'header_layout','2'),(1105,3497,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1106,3497,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1107,3497,'p_logo_mobile','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1108,3497,'page_h_phone',''),(1109,3497,'page_h_time',''),(1110,3497,'custom_pagetitle','show'),(1111,3497,'custom_title','Testimonials'),(1112,3497,'ptitle_bg','a:2:{s:16:\"background-image\";s:81:\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-10.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1539\";s:6:\"height\";s:4:\"1200\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:89:\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-10-150x150.jpg\";}}'),(1113,3497,'ptitle_padding','a:3:{s:11:\"padding-top\";s:5:\"217px\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(1114,3497,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(1115,3497,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(1116,3497,'show_sidebar_page',''),(1117,3497,'sidebar_page_pos','right'),(1118,3497,'loading_page','themeoption'),(1119,3497,'loading_type','style1'),(1120,3497,'loading_color',''),(1121,3497,'custom_footer','1'),(1122,3497,'footer_layout_custom','3808'),(1123,3497,'page_back_totop','themeoption'),(1124,3497,'slide_template','default'),(1125,3497,'_elementor_edit_mode','builder'),(1126,3497,'_elementor_template_type','wp-page'),(1127,3497,'_elementor_version','2.8.5'),(1128,3497,'_elementor_data','[{\"id\":\"c89f3b7\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2687c9b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3010a357\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"37\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e1e7a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2d328236\",\"elType\":\"widget\",\"settings\":{\"title\":\"It\\u2019s always a joy to hear that the work we do, has positively reviews.\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sub_title\":\"Testimonial\",\"sub_title_style\":\"style2\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"734d13ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b96728d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We have spent 9 years working for one of Australia\\u2019s most\\nrecognised and successful retailers so we have many good\\nreview of works.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e1f2d9\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-04.jpg\",\"id\":400},\"title\":\"Maria Silverii\",\"position\":\"CEO of Blue Illusion\",\"description\":\"I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24\\/24.\",\"_id\":\"195eecf\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-05.jpg\",\"id\":401},\"title\":\"Phillip Macintyre\",\"position\":\"CEO of Blue Illusion\",\"description\":\"I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24\\/24.\",\"_id\":\"cd84e60\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Amy Harrison\",\"position\":\"Contiki Holidays\",\"description\":\"I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24\\/24.\",\"_id\":\"b63d25b\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-04.jpg\",\"id\":400},\"title\":\"Maria Silverii\",\"position\":\"CEO of Blue Illusion\",\"description\":\"I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24\\/24.\",\"_id\":\"525775b\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-05.jpg\",\"id\":401},\"title\":\"Phillip Macintyre\",\"position\":\"CEO of Blue Illusion\",\"description\":\"I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24\\/24.\",\"_id\":\"1b90e55\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Amy Harrison\",\"position\":\"Contiki Holidays\",\"description\":\"I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24\\/24.\",\"_id\":\"b6453f9\"}],\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_testimonial_grid\"},{\"id\":\"8a6d9b9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View more \",\"align\":\"center\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"48\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"50718662\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/theme23.jpg\",\"id\":3614},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"320475e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"79a188fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"css_classes\":\"col-offset-right\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e1ca7ac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":108,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"c91988f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Like What We Offer\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"color-gradient-from\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"58f371a0\",\"elType\":\"widget\",\"settings\":{\"title\":\"DO BUSINESS<br\\/>\\nWITH US!\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"512dec0\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"text_editor\":\"In order to acquire our services please kindly send us your inquiry of interest. We shall revert back\\nimmediately.\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3a02cad5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"btn_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"02\",\"right\":\"36\",\"bottom\":\"2\",\"left\":\"36\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_button\"},{\"id\":\"102df0b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cc1ab47\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"48\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4780c367\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17cd84b8\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(1129,3497,'_elementor_controls_usage','a:9:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:11:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:33:\"title_typography_font_size_tablet\";i:2;s:28:\"title_typography_line_height\";i:2;s:35:\"title_typography_line_height_tablet\";i:2;s:33:\"title_typography_font_size_mobile\";i:1;s:35:\"title_typography_line_height_mobile\";i:1;s:10:\"ct_animate\";i:1;s:11:\"title_color\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:5:{s:9:\"sub_title\";i:1;s:15:\"sub_title_style\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:35:\"sub_title_typography_letter_spacing\";i:1;s:26:\"sub_title_space_top_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:7:\"padding\";i:1;s:11:\"css_classes\";i:1;s:14:\"padding_tablet\";i:1;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:1:{s:21:\"background_background\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:22:\"typography_line_height\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:4:{s:3:\"gap\";i:4;s:16:\"content_position\";i:1;s:15:\"stretch_section\";i:1;s:6:\"layout\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}}}}s:19:\"ct_testimonial_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:4:\"text\";i:2;s:5:\"align\";i:2;s:11:\"btn_padding\";i:2;s:17:\"btn_border_radius\";i:1;s:10:\"ct_animate\";i:1;s:4:\"link\";i:2;s:8:\"btn_icon\";i:1;s:10:\"icon_align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:2;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:6:{s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:2;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:1;s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(1130,3500,'_wp_page_template','default'),(1131,3500,'custom_header','1'),(1132,3500,'header_layout','2'),(1133,3500,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1134,3500,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1135,3500,'p_logo_mobile','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1136,3500,'page_h_phone',''),(1137,3500,'page_h_time',''),(1138,3500,'custom_pagetitle','show'),(1139,3500,'custom_title','Testimonials'),(1140,3500,'ptitle_bg','a:2:{s:16:\"background-image\";s:81:\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-10.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1539\";s:6:\"height\";s:4:\"1200\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:89:\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-10-150x150.jpg\";}}'),(1141,3500,'ptitle_padding','a:3:{s:11:\"padding-top\";s:5:\"215px\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(1142,3500,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(1143,3500,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(1144,3500,'show_sidebar_page',''),(1145,3500,'sidebar_page_pos','right'),(1146,3500,'loading_page','themeoption'),(1147,3500,'loading_type','style1'),(1148,3500,'loading_color',''),(1149,3500,'custom_footer','1'),(1150,3500,'footer_layout_custom','3808'),(1151,3500,'page_back_totop','themeoption'),(1152,3500,'slide_template','default'),(1153,3500,'_elementor_edit_mode','builder'),(1154,3500,'_elementor_template_type','wp-page'),(1155,3500,'_elementor_version','2.8.5'),(1156,3500,'_elementor_data','[{\"id\":\"37b0d9e8\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e28c4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7dfaa5c3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"43\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"219b9a38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"15ba6390\",\"elType\":\"widget\",\"settings\":{\"title\":\"It\\u2019s always a joy to hear that the work we do, has positively reviews.\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sub_title\":\"Testimonial\",\"sub_title_style\":\"style2\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"50757a0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad2eb45\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We have spent 9 years working for one of Australia\\u2019s most\\nrecognised and successful retailers so we have many good\\nreview of works.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"19ba640c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Amy Harrison\",\"position\":\"Contiki Holidays\",\"description\":\"I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24\\/24.\",\"_id\":\"a6d92dd\"}],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"ct_animate\":\"wow fadeInUp\",\"content_list3\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-07.jpg\",\"id\":1656},\"title\":\"Donald Johnson\",\"position\":\"Executive Manager\",\"description\":\"I had the pleasure of working with Consultio as part of a \\n6 month \\u2018Regional Retail Leadership Program\\u2019. Her passion for leadership development is evident to help others.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook-square\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"3322b8b\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-01.jpg\",\"id\":397},\"title\":\"Kathleen Smith\",\"position\":\"SEO Manager\",\"description\":\"I had the pleasure of working with Consultio as part of a \\n6 month \\u2018Regional Retail Leadership Program\\u2019. Her passion for leadership development is evident to help others.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook-square\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"64c9764\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-09.jpg\",\"id\":1658},\"title\":\"Jewel D Smith\",\"position\":\"Executive Manager\",\"description\":\"I had the pleasure of working with Consultio as part of a \\n6 month \\u2018Regional Retail Leadership Program\\u2019. Her passion for leadership development is evident to help others.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"88f603e\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-04.jpg\",\"id\":400},\"title\":\"Brad Smith\",\"position\":\"SEO Manager\",\"description\":\"I had the pleasure of working with Consultio as part of a \\n6 month \\u2018Regional Retail Leadership Program\\u2019. Her passion for leadership development is evident to help others.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook-square\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"729ef29\"}],\"col_sm\":\"1\"},\"elements\":[],\"widgetType\":\"ct_testimonial_grid\"},{\"id\":\"7b31aa02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View more \",\"align\":\"center\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"48\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"16c849ad\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"48\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"760b3a46\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"39e31d8c\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(1157,3500,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:28:\"title_typography_line_height\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;s:35:\"title_typography_line_height_mobile\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"sub_title_section\";a:5:{s:9:\"sub_title\";i:1;s:15:\"sub_title_style\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:35:\"sub_title_typography_letter_spacing\";i:1;s:26:\"sub_title_space_top_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:22:\"typography_line_height\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:2;}}}}s:19:\"ct_testimonial_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;s:6:\"col_sm\";i:1;}s:13:\"section_list3\";a:1:{s:13:\"content_list3\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"text\";i:1;s:5:\"align\";i:1;s:11:\"btn_padding\";i:1;s:17:\"btn_border_radius\";i:1;s:10:\"ct_animate\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(1158,3502,'_wp_page_template','default'),(1159,3502,'custom_header','1'),(1160,3502,'header_layout','2'),(1161,3502,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1162,3502,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1163,3502,'p_logo_mobile','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1164,3502,'page_h_phone',''),(1165,3502,'page_h_time',''),(1166,3502,'custom_pagetitle','show'),(1167,3502,'custom_title','Testimonials'),(1168,3502,'ptitle_bg','a:2:{s:16:\"background-image\";s:81:\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-10.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1539\";s:6:\"height\";s:4:\"1200\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:89:\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-10-150x150.jpg\";}}'),(1169,3502,'ptitle_padding','a:3:{s:11:\"padding-top\";s:5:\"215px\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(1170,3502,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(1171,3502,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(1172,3502,'show_sidebar_page',''),(1173,3502,'sidebar_page_pos','right'),(1174,3502,'loading_page','themeoption'),(1175,3502,'loading_type','style1'),(1176,3502,'loading_color',''),(1177,3502,'custom_footer','1'),(1178,3502,'footer_layout_custom','3808'),(1179,3502,'page_back_totop','themeoption'),(1180,3502,'slide_template','default'),(1181,3502,'_elementor_edit_mode','builder'),(1182,3502,'_elementor_template_type','wp-page'),(1183,3502,'_elementor_version','2.8.5'),(1184,3502,'_elementor_data','[{\"id\":\"2951602\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641bb4e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d76e6b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4429daa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d999afc\",\"elType\":\"widget\",\"settings\":{\"title\":\"It\\u2019s always a joy to hear that the work we do, has positively reviews.\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sub_title\":\"Testimonial\",\"sub_title_style\":\"style2\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"7aa83023\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1011a43d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We have spent 9 years working for one of Australia\\u2019s most\\nrecognised and successful retailers so we have many good\\nreview of works.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"467b22a1\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Amy Harrison\",\"position\":\"Contiki Holidays\",\"description\":\"I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24\\/24.\",\"_id\":\"a6d92dd\"}],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"ct_animate\":\"wow fadeInUp\",\"content_list3\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-07.jpg\",\"id\":1656},\"title\":\"Donald Johnson\",\"position\":\"Executive Manager\",\"description\":\"I had the pleasure of working with Consultio as part of a \\n6 month \\u2018Regional Retail Leadership Program\\u2019. Her passion for leadership development is evident to help others.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook-square\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"3322b8b\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-01.jpg\",\"id\":397},\"title\":\"Kathleen Smith\",\"position\":\"SEO Manager\",\"description\":\"I had the pleasure of working with Consultio as part of a \\n6 month \\u2018Regional Retail Leadership Program\\u2019. Her passion for leadership development is evident to help others.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook-square\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"64c9764\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-09.jpg\",\"id\":1658},\"title\":\"Jewel D Smith\",\"position\":\"Executive Manager\",\"description\":\"I had the pleasure of working with Consultio as part of a \\n6 month \\u2018Regional Retail Leadership Program\\u2019. Her passion for leadership development is evident to help others.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-whatsapp\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"88f603e\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-04.jpg\",\"id\":400},\"title\":\"Brad Smith\",\"position\":\"SEO Manager\",\"description\":\"I had the pleasure of working with Consultio as part of a \\n6 month \\u2018Regional Retail Leadership Program\\u2019. Her passion for leadership development is evident to help others.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-twitter-square\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"729ef29\"}],\"col_sm\":\"1\"},\"elements\":[],\"widgetType\":\"ct_testimonial_grid\"},{\"id\":\"27a621ab\",\"elType\":\"widget\",\"settings\":{\"text\":\"View more \",\"align\":\"center\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"48\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4a3a5553\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"48\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"34481d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"10f93096\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(1185,3502,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:28:\"title_typography_line_height\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;s:35:\"title_typography_line_height_mobile\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"sub_title_section\";a:5:{s:9:\"sub_title\";i:1;s:15:\"sub_title_style\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:35:\"sub_title_typography_letter_spacing\";i:1;s:26:\"sub_title_space_top_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:22:\"typography_line_height\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:2;}}}}s:19:\"ct_testimonial_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;s:6:\"col_sm\";i:1;}s:13:\"section_list3\";a:1:{s:13:\"content_list3\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"text\";i:1;s:5:\"align\";i:1;s:11:\"btn_padding\";i:1;s:17:\"btn_border_radius\";i:1;s:10:\"ct_animate\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(1186,3504,'_wp_page_template','default'),(1187,3504,'custom_header','1'),(1188,3504,'header_layout','6'),(1189,3504,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1190,3504,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1191,3504,'p_logo_mobile','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1192,3504,'page_h_phone','(210) 123-451'),(1193,3504,'page_h_time','Mon-Fri 8am - 6pm (Sunday closed)'),(1194,3504,'custom_pagetitle','show'),(1195,3504,'custom_title','Pricing'),(1196,3504,'ptitle_bg','a:2:{s:16:\"background-image\";s:81:\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-13.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1542\";s:6:\"height\";s:4:\"1200\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:89:\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-13-150x150.jpg\";}}'),(1197,3504,'ptitle_padding','a:3:{s:11:\"padding-top\";s:4:\"74px\";s:14:\"padding-bottom\";s:4:\"74px\";s:5:\"units\";s:2:\"px\";}'),(1198,3504,'content_bg_color','a:3:{s:5:\"color\";s:7:\"#faf7f0\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:19:\"rgba(250,247,240,1)\";}'),(1199,3504,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(1200,3504,'show_sidebar_page',''),(1201,3504,'sidebar_page_pos','right'),(1202,3504,'loading_page','themeoption'),(1203,3504,'loading_type','style1'),(1204,3504,'loading_color',''),(1205,3504,'custom_footer','1'),(1206,3504,'footer_layout_custom','3808'),(1207,3504,'page_back_totop','themeoption'),(1208,3504,'slide_template','default'),(1209,3504,'_elementor_edit_mode','builder'),(1210,3504,'_elementor_template_type','wp-page'),(1211,3504,'_elementor_version','2.8.5'),(1212,3504,'_elementor_data','[{\"id\":\"729d3801\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"67\",\"right\":0,\"bottom\":\"34\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"722c279c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"198f4d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer the best price for you!\",\"sub_title\":\"Pricing\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"700\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"style\":\"st-line-left3\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"6ddd7a0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ab9c7ea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Pricing is the process whereby a business sets the price at which it will sell its products and services, and may be part of the\\nbusiness\'s marketing plan.\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f3cf44a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"2b5a8902\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7d4608fc\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Monthly\",\"content_type\":\"template\",\"tab_content\":\"Tab Content\",\"tab_content_template\":\"3876\",\"_id\":\"c8e97fc\"},{\"tab_title\":\"Yearly <span>Save 20%<\\/span>\",\"content_type\":\"template\",\"tab_content\":\"Tab Content\",\"tab_content_template\":\"3872\",\"_id\":\"6de80c2\"}],\"tab_style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_tabs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a8e4982\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"35533b12\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2e67feab\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(1213,3504,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_line_height\";i:1;s:5:\"style\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;s:35:\"title_typography_line_height_mobile\";i:1;}s:17:\"sub_title_section\";a:4:{s:9:\"sub_title\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:32:\"sub_title_typography_font_family\";i:1;s:32:\"sub_title_typography_font_weight\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:1;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:2;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(1214,3506,'_wp_page_template','default'),(1215,3506,'_elementor_controls_usage','a:0:{}'),(1216,3506,'custom_header',''),(1217,3506,'header_layout','1'),(1218,3506,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1219,3506,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1220,3506,'p_logo_mobile','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1221,3506,'page_h_phone',''),(1222,3506,'page_h_time',''),(1223,3506,'custom_pagetitle','themeoption'),(1224,3506,'custom_title',''),(1225,3506,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(1226,3506,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(1227,3506,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(1228,3506,'content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(1229,3506,'show_sidebar_page',''),(1230,3506,'sidebar_page_pos','right'),(1231,3506,'loading_page','themeoption'),(1232,3506,'loading_type','style1'),(1233,3506,'loading_color',''),(1234,3506,'custom_footer',''),(1235,3506,'footer_layout_custom',''),(1236,3506,'page_back_totop','themeoption'),(1237,3506,'slide_template','default'),(1238,3508,'_wp_page_template','default'),(1239,3508,'_elementor_controls_usage','a:0:{}'),(1240,3508,'custom_header',''),(1241,3508,'header_layout','1'),(1242,3508,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1243,3508,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1244,3508,'p_logo_mobile','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1245,3508,'page_h_phone',''),(1246,3508,'page_h_time',''),(1247,3508,'custom_pagetitle','themeoption'),(1248,3508,'custom_title',''),(1249,3508,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(1250,3508,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(1251,3508,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(1252,3508,'content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(1253,3508,'show_sidebar_page',''),(1254,3508,'sidebar_page_pos','right'),(1255,3508,'loading_page','themeoption'),(1256,3508,'loading_type','style1'),(1257,3508,'loading_color',''),(1258,3508,'custom_footer',''),(1259,3508,'footer_layout_custom',''),(1260,3508,'page_back_totop','themeoption'),(1261,3508,'slide_template','default'),(1262,3510,'_wp_page_template','default'),(1263,3510,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:9:{s:5:\"title\";i:1;s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:28:\"title_typography_line_height\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;s:5:\"style\";i:1;s:10:\"ct_animate\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:5;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:22:\"typography_line_height\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:4;s:16:\"content_position\";i:1;s:15:\"stretch_section\";i:2;s:6:\"layout\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:5:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:3;s:10:\"ct_animate\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:1:{s:6:\"height\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(1264,3510,'custom_header',''),(1265,3510,'header_layout','1'),(1266,3510,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1267,3510,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1268,3510,'p_logo_mobile','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1269,3510,'page_h_phone',''),(1270,3510,'page_h_time',''),(1271,3510,'custom_pagetitle','show'),(1272,3510,'custom_title','Contact'),(1273,3510,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(1274,3510,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(1275,3510,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(1276,3510,'content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(1277,3510,'show_sidebar_page',''),(1278,3510,'sidebar_page_pos','right'),(1279,3510,'loading_page','themeoption'),(1280,3510,'loading_type','style1'),(1281,3510,'loading_color',''),(1282,3510,'custom_footer',''),(1283,3510,'footer_layout_custom',''),(1284,3510,'page_back_totop','themeoption'),(1285,3510,'slide_template','default'),(1286,3510,'_elementor_edit_mode','builder'),(1287,3510,'_elementor_template_type','wp-page'),(1288,3510,'_elementor_version','2.8.5'),(1289,3510,'_elementor_data','[{\"id\":\"1ef182c3\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-14.jpg\",\"id\":1543},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9499999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"566b9921\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4ef0cfbf\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7758a428\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54.082999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"2df05f23\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in touch for any kind of help and informations\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"style\":\"st-line-left1\",\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"63bcdcfc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.917000000000001591615728102624416351318359375,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c6d7533\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re glad to discuss your organisation\\u2019s situation. So please contact us via the details below, or enter your request.\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fc27fd7\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37ecd392\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"60636a70\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Our head office address:\",\"description_text\":\"3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia.\",\"layout\":\"3\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"42\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"18b7ca15\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Call for help:\",\"description_text\":\"(734) 697-2907<br\\/>\\n(843) 971-1906\",\"layout\":\"3\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"42\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"1b301a3e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"title_text\":\"Mail us for information\",\"description_text\":\"noreply@envato.com<br\\/>\\nnoreply@consultio.com\",\"layout\":\"3\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"42\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"2c6b7216\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"13694b3f\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"2166\",\"style_l1\":\"style3\",\"ct_animate\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dd756b3\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"eda45db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2d29b35\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":370,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false}]'),(1290,3512,'_wp_page_template','default'),(1291,3512,'custom_header','1'),(1292,3512,'header_layout','2'),(1293,3512,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1294,3512,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1295,3512,'p_logo_mobile','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1296,3512,'page_h_phone',''),(1297,3512,'page_h_time',''),(1298,3512,'custom_pagetitle','show'),(1299,3512,'custom_title','Contact'),(1300,3512,'ptitle_bg','a:2:{s:16:\"background-image\";s:81:\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-10.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1539\";s:6:\"height\";s:4:\"1200\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:89:\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-10-150x150.jpg\";}}'),(1301,3512,'ptitle_padding','a:3:{s:11:\"padding-top\";s:5:\"215px\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(1302,3512,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(1303,3512,'content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(1304,3512,'show_sidebar_page',''),(1305,3512,'sidebar_page_pos','right'),(1306,3512,'loading_page','themeoption'),(1307,3512,'loading_type','style1'),(1308,3512,'loading_color',''),(1309,3512,'custom_footer','1'),(1310,3512,'footer_layout_custom','3808'),(1311,3512,'page_back_totop','themeoption'),(1312,3512,'slide_template','default'),(1313,3512,'_elementor_edit_mode','builder'),(1314,3512,'_elementor_template_type','wp-page'),(1315,3512,'_elementor_version','2.8.5'),(1316,3512,'_elementor_data','[{\"id\":\"35ebeef\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#EFF1FF\",\"padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c27832\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b5f7aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"If need any info please contact <b>us!<\\/b>\",\"sub_title\":\"Contact us\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6cc7ca20\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Head office address:\",\"description_text\":\"3556 Hartford Way Vlg, Mount\\nPleasant, SC, 29466, Australia.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"34\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"5fc35b57\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"title_text\":\"Mail for information:\",\"description_text\":\"noreply@envato.com<br\\/>\\nnoreply@consultio.com\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"7087f74b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Call for help:\",\"description_text\":\"(734) 697-2907<br\\/>\\n(843) 971-1906\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":false},{\"id\":\"dfda162\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76be961\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"For any inquiries relating to my  Retail and Leadership Programs*\",\"align\":\"left\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"7ec43f27\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"3823\",\"style_l1\":\"style5\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"47f4644d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"44\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"307e508\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2f684d1c\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(1317,3512,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:8:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;s:28:\"title_typography_line_height\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;s:35:\"title_typography_line_height_mobile\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:15:\"_padding_tablet\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:6:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:2:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:15:\"stretch_section\";i:1;s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:1;s:6:\"margin\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(1318,3514,'_wp_page_template','default'),(1319,3514,'custom_header','1'),(1320,3514,'header_layout','2'),(1321,3514,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1322,3514,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1323,3514,'p_logo_mobile','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1324,3514,'page_h_phone',''),(1325,3514,'page_h_time',''),(1326,3514,'custom_pagetitle','show'),(1327,3514,'custom_title','Contact'),(1328,3514,'ptitle_bg','a:2:{s:16:\"background-image\";s:81:\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-10.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1539\";s:6:\"height\";s:4:\"1200\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:89:\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-10-150x150.jpg\";}}'),(1329,3514,'ptitle_padding','a:3:{s:11:\"padding-top\";s:5:\"215px\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(1330,3514,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(1331,3514,'content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(1332,3514,'show_sidebar_page',''),(1333,3514,'sidebar_page_pos','right'),(1334,3514,'loading_page','themeoption'),(1335,3514,'loading_type','style1'),(1336,3514,'loading_color',''),(1337,3514,'custom_footer','1'),(1338,3514,'footer_layout_custom','3808'),(1339,3514,'page_back_totop','themeoption'),(1340,3514,'slide_template','default'),(1341,3514,'_elementor_edit_mode','builder'),(1342,3514,'_elementor_template_type','wp-page'),(1343,3514,'_elementor_version','2.8.5'),(1344,3514,'_elementor_data','[{\"id\":\"b8e8f06\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#EFF1FF\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fe1e58\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2f73164\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5439fa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d2df7f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"If need any info please contact <b>us!<\\/b>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"sub_title\":\"Contact us\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"22\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"5608330\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e04378\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We\\u2019re glad to discuss your organisation\\u2019s situation. So please contact us via the details below, or enter your request.\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d588bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"26cfc40\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0e6c99b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/contact-v4.png\",\"id\":3852},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6aabbe9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fcf68f5\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"3851\",\"style_l1\":\"style6\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cd0cd0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6311a84\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":42,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"7919d61\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-map\",\"library\":\"flaticon\"},\"title_text\":\"Our office address:\",\"description_text\":\"3556 Hartford Way Vlg, Mount of\\nPleasant, SC, 29466, Australia.\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"afcc50c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.5,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"58fd7df\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-black-back-closed-envelope-shape\",\"library\":\"flaticon\"},\"title_text\":\"Mail us:\",\"description_text\":\"noreply@envato.com<br\\/>\\nnoreply@company.com\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a765942\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23.809999999999998721023075631819665431976318359375,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":31},\"elements\":[{\"id\":\"a3fa63d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"title_text\":\"Call for help:\",\"description_text\":\"(734) 697-2907<br\\/>\\n(843) 971-1906\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"140a6e2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"1e8ac48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"38199f0\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":370,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"17e30d6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"48\",\"right\":0,\"bottom\":\"42\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"24beb30f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"154bb2e2\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(1345,3514,'_elementor_controls_usage','a:9:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:6:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_line_height\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:9;s:19:\"_inline_size_tablet\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:3;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:4:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:6;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:2;s:6:\"layout\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:3;s:7:\"padding\";i:2;s:14:\"padding_tablet\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:2:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:4:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:3:{s:10:\"icon_space\";i:3;s:9:\"icon_size\";i:3;s:16:\"icon_size_tablet\";i:3;}s:21:\"section_style_content\";a:9:{s:18:\"title_bottom_space\";i:3;s:11:\"title_color\";i:3;s:27:\"title_typography_typography\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:17:\"description_color\";i:3;s:33:\"description_typography_typography\";i:3;s:32:\"description_typography_font_size\";i:3;s:34:\"description_typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;s:15:\"_padding_tablet\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:1:{s:6:\"height\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(1346,3516,'_wp_page_template','default'),(1347,3516,'custom_header','1'),(1348,3516,'header_layout','6'),(1349,3516,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1350,3516,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1351,3516,'p_logo_mobile','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1352,3516,'page_h_phone','(210) 123-451'),(1353,3516,'page_h_time','Mon-Fri 8am - 6pm (Sunday closed)'),(1354,3516,'custom_pagetitle','show'),(1355,3516,'custom_title','Team'),(1356,3516,'ptitle_bg','a:2:{s:16:\"background-image\";s:81:\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-10.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1539\";s:6:\"height\";s:4:\"1200\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:89:\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-10-150x150.jpg\";}}'),(1357,3516,'ptitle_padding','a:3:{s:11:\"padding-top\";s:4:\"74px\";s:14:\"padding-bottom\";s:4:\"74px\";s:5:\"units\";s:2:\"px\";}'),(1358,3516,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(1359,3516,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(1360,3516,'show_sidebar_page',''),(1361,3516,'sidebar_page_pos','right'),(1362,3516,'loading_page','themeoption'),(1363,3516,'loading_type','style1'),(1364,3516,'loading_color',''),(1365,3516,'custom_footer','1'),(1366,3516,'footer_layout_custom','3808'),(1367,3516,'page_back_totop','themeoption'),(1368,3516,'slide_template','default'),(1369,3516,'_elementor_edit_mode','builder'),(1370,3516,'_elementor_template_type','wp-page'),(1371,3516,'_elementor_version','2.8.5'),(1372,3516,'_elementor_data','[{\"id\":\"de32beb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"02fe18d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"50aea1e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our expert team members\",\"sub_title\":\"Team member\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"48\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"5da4fc80\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"title\":\"\",\"position\":\"\",\"btn_text\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"8fd12a6\"}],\"content_list2\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-team1.jpg\",\"id\":3383},\"title\":\"Iven Rocky\",\"position\":\"Senior Web Developer\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-dribbble\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"1f79747\",\"progressbar\":\"[{\\\"title\\\":\\\"WordPress\\\",\\\"number\\\":\\\"90\\\"},{\\\"title\\\":\\\"Java\\\",\\\"number\\\":\\\"50\\\"},{\\\"title\\\":\\\"Css\\\",\\\"number\\\":\\\"70\\\"}]\",\"lists\":\"\",\"image_position\":\"img-right\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Rebecca Leo\",\"position\":\"Web Designer\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-youtube-play\\\",\\\"url\\\":\\\"#\\\"}]\",\"progressbar\":\"[{\\\"title\\\":\\\"Photoshop\\\",\\\"number\\\":\\\"90\\\"},{\\\"title\\\":\\\"Sketch\\\",\\\"number\\\":\\\"80\\\"},{\\\"title\\\":\\\"Css\\\",\\\"number\\\":\\\"70\\\"}]\",\"lists\":\"\",\"_id\":\"da16f47\",\"image_position\":\"img-right\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-team3.jpg\",\"id\":3400},\"title\":\"Adam Ivan\",\"position\":\"Chef Advisor\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-dribbble\\\",\\\"url\\\":\\\"#\\\"}]\",\"progressbar\":\"[{\\\"title\\\":\\\"Business Sense\\\",\\\"number\\\":\\\"90\\\"},{\\\"title\\\":\\\"Cleanliness\\\",\\\"number\\\":\\\"80\\\"},{\\\"title\\\":\\\"Creativity\\\",\\\"number\\\":\\\"70\\\"}]\",\"lists\":\"\",\"_id\":\"9d03385\",\"image_position\":\"img-left\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Obira Franc\",\"position\":\"Tax Consultant\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-dribbble\\\",\\\"url\\\":\\\"#\\\"}]\",\"progressbar\":\"[{\\\"title\\\":\\\"Negotiation\\\",\\\"number\\\":\\\"90\\\"},{\\\"title\\\":\\\"Tax law\\\",\\\"number\\\":\\\"50\\\"},{\\\"title\\\":\\\"Organisation\\\",\\\"number\\\":\\\"70\\\"}]\",\"lists\":\"\",\"_id\":\"f836421\",\"image_position\":\"img-left\"}],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_team_grid\"},{\"id\":\"4e903ee\",\"elType\":\"widget\",\"settings\":{\"text\":\"View more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18766663\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"55\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7f3225e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"37234e60\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(1373,3516,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:13:\"title_section\";a:2:{s:5:\"title\";i:1;s:5:\"style\";i:1;}s:17:\"sub_title_section\";a:7:{s:9:\"sub_title\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:32:\"sub_title_typography_font_family\";i:1;s:30:\"sub_title_typography_font_size\";i:1;s:32:\"sub_title_typography_font_weight\";i:1;s:22:\"sub_title_space_bottom\";i:1;s:14:\"sub_title_line\";i:1;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:12:\"section_list\";a:2:{s:12:\"content_list\";i:1;s:13:\"content_list2\";i:1;}s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:1;s:6:\"margin\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(1374,3518,'_wp_page_template','default'),(1375,3518,'custom_header','1'),(1376,3518,'header_layout','6'),(1377,3518,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1378,3518,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1379,3518,'p_logo_mobile','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1380,3518,'page_h_phone','(210) 123-451'),(1381,3518,'page_h_time','Mon-Fri 8am - 6pm (Sunday closed)'),(1382,3518,'custom_pagetitle','show'),(1383,3518,'custom_title','Team'),(1384,3518,'ptitle_bg','a:2:{s:16:\"background-image\";s:81:\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-10.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1539\";s:6:\"height\";s:4:\"1200\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:89:\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-10-150x150.jpg\";}}'),(1385,3518,'ptitle_padding','a:3:{s:11:\"padding-top\";s:4:\"76px\";s:14:\"padding-bottom\";s:4:\"76px\";s:5:\"units\";s:2:\"px\";}'),(1386,3518,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(1387,3518,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(1388,3518,'show_sidebar_page',''),(1389,3518,'sidebar_page_pos','right'),(1390,3518,'loading_page','themeoption'),(1391,3518,'loading_type','style1'),(1392,3518,'loading_color',''),(1393,3518,'custom_footer','1'),(1394,3518,'footer_layout_custom','3808'),(1395,3518,'page_back_totop','themeoption'),(1396,3518,'slide_template','default'),(1397,3518,'_elementor_edit_mode','builder'),(1398,3518,'_elementor_template_type','wp-page'),(1399,3518,'_elementor_version','2.8.5'),(1400,3518,'_elementor_data','[{\"id\":\"447525ee\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"padding\":{\"unit\":\"px\",\"top\":\"86\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6d46c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"239427c9\",\"elType\":\"widget\",\"settings\":{\"title\":\"We always work with a great team.\",\"sub_title\":\"Team member\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"_css_classes\":\"line-sub-preset2\",\"ct_animate\":\"wow fadeInLeft\",\"title_typography_typography\":\"custom\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"st-line-left3\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"36cf3dd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"23\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"58\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"77423db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#A8908F\"},\"elements\":[{\"id\":\"5b017e1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"5101bd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"553ef78d\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"11b392d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"content_list3\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/team-single.jpg\",\"id\":1706},\"title\":\"Fran Bostick\",\"position\":\"Founder & CEO\",\"desc\":\"He has extensive experience in\\norganizational design, business process reengineering.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-youtube-play\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-skype\\\",\\\"url\\\":\\\"#\\\"}]\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"cdc1c54\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Tina Holt\",\"position\":\"Federal Contractor\",\"desc\":\"He has extensive experience in\\norganizational design, business process reengineering.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-youtube-play\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-skype\\\",\\\"url\\\":\\\"\\\"}]\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"784ebc9\"}],\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"360\",\"height\":\"360\"},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37ab8395\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"6edd789c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"28643b20\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"content_list3\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-team3.jpg\",\"id\":3400},\"title\":\"Charles Wilkinson\",\"position\":\"Founder & CEO\",\"desc\":\"He has extensive experience in\\norganizational design, business process reengineering.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-youtube-play\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-skype\\\",\\\"url\\\":\\\"#\\\"}]\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"cdc1c54\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Michael Alan Tate\",\"position\":\"Vice President\",\"desc\":\"He has extensive experience in\\norganizational design, business process reengineering.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-youtube-play\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-skype\\\",\\\"url\\\":\\\"\\\"}]\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"784ebc9\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-team1.jpg\",\"id\":3383},\"title\":\"Suzanne Higgins\",\"position\":\"Senior Consultant\",\"desc\":\"He has extensive experience in\\norganizational design, business process reengineering.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-youtube-play\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-skype\\\",\\\"url\\\":\\\"\\\"}]\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5fa0e23\"}],\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"360\",\"height\":\"360\"},\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_team_grid\"},{\"id\":\"64260a7\",\"elType\":\"widget\",\"settings\":{\"text\":\"View more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"48\",\"left\":\"0\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"48\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"\"},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e4196fa\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"55\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"784d7355\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6708c127\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(1401,3518,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:8:{s:5:\"title\";i:1;s:10:\"ct_animate\";i:1;s:27:\"title_typography_typography\";i:1;s:5:\"style\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_line_height\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;s:35:\"title_typography_line_height_mobile\";i:1;}s:17:\"sub_title_section\";a:4:{s:9:\"sub_title\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:32:\"sub_title_typography_font_family\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:12:\"_css_classes\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:5;s:19:\"_inline_size_tablet\";i:2;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:4;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:2;s:7:\"padding\";i:2;}s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:2;}}s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:13:\"content_list3\";i:2;}s:12:\"grid_section\";a:6:{s:14:\"thumbnail_size\";i:2;s:26:\"thumbnail_custom_dimension\";i:2;s:6:\"col_md\";i:2;s:6:\"col_lg\";i:2;s:6:\"col_xl\";i:2;s:10:\"ct_animate\";i:2;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:17:\"btn_border_radius\";i:1;s:11:\"btn_padding\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:1;s:22:\"_box_shadow_box_shadow\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(1402,3520,'_wp_page_template','default'),(1403,3520,'custom_header',''),(1404,3520,'header_layout','1'),(1405,3520,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1406,3520,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1407,3520,'p_logo_mobile','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1408,3520,'page_h_phone',''),(1409,3520,'page_h_time',''),(1410,3520,'custom_pagetitle','show'),(1411,3520,'custom_title','Team'),(1412,3520,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(1413,3520,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(1414,3520,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(1415,3520,'content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(1416,3520,'show_sidebar_page',''),(1417,3520,'sidebar_page_pos','right'),(1418,3520,'loading_page','themeoption'),(1419,3520,'loading_type','style1'),(1420,3520,'loading_color',''),(1421,3520,'custom_footer',''),(1422,3520,'footer_layout_custom',''),(1423,3520,'page_back_totop','themeoption'),(1424,3520,'slide_template','default'),(1425,3520,'_elementor_edit_mode','builder'),(1426,3520,'_elementor_template_type','wp-page'),(1427,3520,'_elementor_version','2.8.5'),(1428,3520,'_elementor_data','[{\"id\":\"8c17192\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E4EAEE\",\"padding\":{\"unit\":\"px\",\"top\":\"060\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a445675\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"94d2f1d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6cb3f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.917000000000001591615728102624416351318359375},\"elements\":[{\"id\":\"5e7c953\",\"elType\":\"widget\",\"settings\":{\"title\":\"Many organizations realize the benefits of forming work teams.\",\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"cfdc757\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.04299999999999926103555480949580669403076171875},\"elements\":[{\"id\":\"828f9d3\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Employees need to realize the importance of working well with their teammates when coming into a new job or an existing one. A team player is more valuable.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8a0a04a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"content_list3\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"title\":\"sfdsdaf\",\"position\":\"\",\"desc\":\"\",\"social\":\"[]\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"90df330\"}],\"content_list4\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/home-team-01.jpg\",\"id\":2114},\"title\":\"Gwen Johnson\",\"position\":\"Founder & CEO\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"be8b76d\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/home-team-02.jpg\",\"id\":2115},\"title\":\"Thomas Olsen\",\"position\":\"Regional Leader\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"7516d24\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/home-team-03.jpg\",\"id\":2116},\"title\":\"Manny Maceda\",\"position\":\"Managing Partner\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"505cae5\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/home-team-04.jpg\",\"id\":2117},\"title\":\"James Allen\",\"position\":\"Chief Executive\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"a352cd2\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-team1.jpg\",\"id\":3383},\"title\":\"Manny Maceda\",\"position\":\"Managing Partner\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"b8baca1\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Gwen Johnson\",\"position\":\"Founder & CEO\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"9c4e5eb\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-team3.jpg\",\"id\":3400},\"title\":\"Thomas Olsen\",\"position\":\"Regional Leader\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"14f1627\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"James Allen\",\"position\":\"Chief Executive\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"b719730\"}],\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\",\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"267\",\"height\":\"352\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"},{\"id\":\"1d25b5be\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"_margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(1429,3520,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:2:{s:5:\"title\";i:1;s:5:\"style\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:2;s:16:\"content_position\";i:1;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:12:\"section_list\";a:2:{s:13:\"content_list3\";i:1;s:13:\"content_list4\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_md\";i:1;s:10:\"ct_animate\";i:1;s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}}'),(1430,3984,'custom_header','1'),(1431,3984,'header_layout','6'),(1432,3984,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1433,3984,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1434,3984,'p_logo_mobile','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1435,3984,'page_h_phone',''),(1436,3984,'page_h_time','Mon-Fri 8am - 6pm (Sunday closed)'),(1437,3984,'h_custom_menu',''),(1438,3984,'h_custom_menu_left','57'),(1439,3984,'h_custom_menu_right','58'),(1440,3984,'custom_pagetitle','hide'),(1441,3984,'custom_title',''),(1442,3984,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(1443,3984,'p_page_title_color',''),(1444,3984,'ptitle_overlay','themeoption'),(1445,3984,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(1446,3984,'ptitle_breadcrumb_page','themeoption'),(1447,3984,'ptitle_breadcrumb_color',''),(1448,3984,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(1449,3984,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(1450,3984,'show_sidebar_page',''),(1451,3984,'sidebar_page_pos','right'),(1452,3984,'loading_page','themeoption'),(1453,3984,'loading_type','style1'),(1454,3984,'custom_footer',''),(1455,3984,'footer_layout_custom',''),(1456,3984,'page_back_totop','themeoption'),(1457,3984,'slide_template','default'),(1458,3984,'_elementor_edit_mode','builder'),(1459,3984,'_elementor_template_type','wp-page'),(1460,3984,'_elementor_version','2.9.14'),(1461,3984,'_wp_page_template','default');
INSERT INTO `wp9s_postmeta` VALUES (1462,3984,'_elementor_data','[{\"id\":\"492b1f82\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"_element_id\":\"section-home\"},\"elements\":[{\"id\":\"2a83b523\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1d9ef707\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\"tax-consulting\"][/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"47805a1b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/01/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"148f29bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"45647c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"523b7c8a\",\"elType\":\"widget\",\"settings\":{\"content\":[{\"icon_type\":\"icon\",\"icon\":{\"value\":\"\",\"library\":\"\"},\"icon_image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"\",\"description\":\"\",\"button_text\":\"\",\"button_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"df0046f\"},{\"icon_type\":\"icon\",\"icon\":{\"value\":\"\",\"library\":\"\"},\"icon_image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"\",\"description\":\"\",\"button_text\":\"\",\"button_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"144974b\"}],\"content_fancy_box\":[{\"icon_type\":\"image\",\"icon\":{\"value\":\"flaticon flaticon-diagram\",\"library\":\"flaticon\"},\"icon_image\":{\"url\":\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/01/h6-icon-service1.png\",\"id\":3292},\"title\":\"Business Planning\",\"description\":\"We develop the relationships that under the next phase in your organisation.\",\"button_text\":\"Read more\",\"button_link\":{\"url\":\"https://demo.casethemes.net/consultio-tax/service/seo-optimization/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"e3dbcbe\"},{\"icon_type\":\"image\",\"icon\":{\"value\":\"flaticon flaticon-diagram\",\"library\":\"flaticon\"},\"icon_image\":{\"url\":\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/01/h6-icon-service2.png\",\"id\":3294},\"title\":\"Stakeholder relations\",\"description\":\"Developing a program to improve the best sanitation and alleviate poverty.\",\"button_text\":\"Read more\",\"button_link\":{\"url\":\"https://demo.casethemes.net/consultio-tax/service/seo-optimization/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"c36fabf\"},{\"icon_type\":\"image\",\"icon\":{\"value\":\"flaticon flaticon-diagram\",\"library\":\"flaticon\"},\"icon_image\":{\"url\":\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/01/h6-icon-service3.png\",\"id\":3295},\"title\":\"Risk management\",\"description\":\"Through nuanced stakeholder relations and astute partnership building.\",\"button_text\":\"Read more\",\"button_link\":{\"url\":\"https://demo.casethemes.net/consultio-tax/service/seo-optimization/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5b4e6a0\"},{\"icon_type\":\"image\",\"icon\":{\"value\":\"flaticon flaticon-diagram\",\"library\":\"flaticon\"},\"icon_image\":{\"url\":\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/01/h6-icon-service1.png\",\"id\":3292},\"title\":\"Business Planning\",\"description\":\"We develop the relationships that under the next phase in your organisation.\",\"button_text\":\"Read more\",\"button_link\":{\"url\":\"https://demo.casethemes.net/consultio-tax/service/seo-optimization/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"206cb42\"},{\"icon_type\":\"image\",\"icon\":{\"value\":\"flaticon flaticon-diagram\",\"library\":\"flaticon\"},\"icon_image\":{\"url\":\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/01/h6-icon-service2.png\",\"id\":3294},\"title\":\"Stakeholder relations\",\"description\":\"Developing a program to improve the best sanitation and alleviate poverty.\",\"button_text\":\"Read more\",\"button_link\":{\"url\":\"https://demo.casethemes.net/consultio-tax/service/seo-optimization/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"205af4f\"},{\"icon_type\":\"image\",\"icon\":{\"value\":\"flaticon flaticon-diagram\",\"library\":\"flaticon\"},\"icon_image\":{\"url\":\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/01/h6-icon-service3.png\",\"id\":3295},\"title\":\"Risk management\",\"description\":\"Through nuanced stakeholder relations and astute partnership building.\",\"button_text\":\"Read more\",\"button_link\":{\"url\":\"https://demo.casethemes.net/consultio-tax/service/seo-optimization/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ce109f\"}],\"col_md\":\"2\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_carousel\"},{\"id\":\"5a9e2170\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"You can also find our <a href=\"#\" class=\"link-underline\">Consultant Service</a> to contact for the consulting\",\"align\":\"center\",\"text_color\":\"#000000\",\"link_color\":\"#2635F5\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d5709c3\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-bg-section-01.jpg\",\"id\":3304},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\",\"hide_mobile\":\"hidden-phone\",\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"350c5f57\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2e802b7e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"css_classes\":\"feature-offset\"},\"elements\":[{\"id\":\"16bed0d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"540dd7d8\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Strategic vision\",\"description_text\":\"A client once told us that where the others focus on one star one issue we see the whole sky. \",\"_margin\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"icon_color\":\"#4B58FF\",\"title_color\":\"#0E0E0E\",\"desc_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"ct_feature\"},{\"id\":\"6689a0d4\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Interpersonal skills\",\"description_text\":\"Forging relationships betweennmulti-national corporations, govern ments and global NGOs begins.\",\"_margin\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"icon_color\":\"#4B58FF\",\"title_color\":\"#0E0E0E\",\"desc_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"ct_feature\"}],\"isInner\":true},{\"id\":\"6bca635a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fe5e88e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Networks that span\",\"description_text\":\"Over more than 20 years, weu2019ve nfostered trusted relationships across government.\",\"_margin\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"icon_color\":\"#4B58FF\",\"title_color\":\"#0E0E0E\",\"desc_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"ct_feature\"},{\"id\":\"319b784b\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Flexible delivery\",\"description_text\":\"We adapt our delivery to the way your work, whether as an external provider or by providing senior.\",\"_margin\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"icon_color\":\"#4B58FF\",\"title_color\":\"#0E0E0E\",\"desc_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"ct_feature\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"da47e77\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e8b4ed7\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"particle\":{\"url\":\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-shape-6.png\",\"id\":3349},\"particle_animate\":\"shape-animate1\",\"top_positioon\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"_id\":\"ceb05ff\"},{\"particle\":{\"url\":\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-shape-7.png\",\"id\":3350},\"particle_animate\":\"shape-animate2\",\"top_positioon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"_id\":\"39fffe4\"},{\"particle\":{\"url\":\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-shape-5.png\",\"id\":3348},\"particle_animate\":\"shape-animate6\",\"top_positioon\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_id\":\"a3a57b0\"}]},\"elements\":[],\"widgetType\":\"ct_particle_animate\"},{\"id\":\"6a987447\",\"elType\":\"widget\",\"settings\":{\"title\":\"Donu2019t misread here we have random & interesting facts will inspire you.n\",\"sub_title\":\"Why Choose us?\",\"sub_title_color\":\"#00C7D4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#00C7D4\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"57e54659\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5fd796e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"517c819e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_css_classes\":\"text-center\",\"img_size\":\"full\"},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":true},{\"id\":\"6eb75709\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e25f332\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"ending_number\":105,\"suffix\":\"+\",\"title\":\"Team <br/> Members\",\"show_icon\":\"true\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-counter-icon1.png\",\"id\":3315},\"ct_animate\":\"wow fadeInUp\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"161a0093\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"ending_number\":18,\"suffix\":\"+\",\"title\":\"Winning <br/> Awards\",\"show_icon\":\"true\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-counter-icon2.png\",\"id\":3316},\"ct_animate\":\"wow fadeInUp\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"1cd9c437\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"ending_number\":310,\"suffix\":\"+\",\"title\":\"Completed <br/> Works\",\"show_icon\":\"true\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-counter-icon3.png\",\"id\":3317},\"ct_animate\":\"wow fadeInUp\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"1645b9ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"ending_number\":215,\"suffix\":\"+\",\"title\":\"Clientu2019s <br/> Feedback\",\"show_icon\":\"true\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-counter-icon4.png\",\"id\":3318},\"ct_animate\":\"wow fadeInUp\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2ff1b345\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5c8d372f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"95\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#0E0E0E\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"64c23b02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f238c6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Donu2019t misread here we have random & interesting facts will inspire you.n\",\"sub_title\":\"Why Choose us?\",\"sub_title_color\":\"#00C7D4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#00C7D4\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"dcab16a\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Strategic vision\",\"description_text\":\"A client once told us that where the others focus on one star one issue we see the whole sky. \",\"_margin\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"icon_color\":\"#4B58FF\",\"title_color\":\"#FFFFFF\",\"desc_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_feature\"},{\"id\":\"76a02b23\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Interpersonal skills\",\"description_text\":\"Forging relationships betweennmulti-national corporations, govern ments and global NGOs begins.\",\"_margin\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"icon_color\":\"#4B58FF\",\"title_color\":\"#FFFFFF\",\"desc_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_feature\"},{\"id\":\"6bfd16a3\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Networks that span\",\"description_text\":\"Over more than 20 years, weu2019ve nfostered trusted relationships across government.\",\"_margin\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"icon_color\":\"#4B58FF\",\"title_color\":\"#FFFFFF\",\"desc_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_feature\"},{\"id\":\"2f0918a9\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Flexible delivery\",\"description_text\":\"We adapt our delivery to the way your work, whether as an external provider or by providing senior.\",\"_margin\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"icon_color\":\"#4B58FF\",\"title_color\":\"#FFFFFF\",\"desc_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_feature\"},{\"id\":\"2d36ded8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false},\"img_size\":\"full\"},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"70cc427e\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"ending_number\":105,\"suffix\":\"+\",\"title\":\"Team <br/> Members\",\"show_icon\":\"true\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-counter-icon1.png\",\"id\":3315},\"ct_animate\":\"wow fadeInUp\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"1687a99d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"ending_number\":18,\"suffix\":\"+\",\"title\":\"Winning <br/> Awards\",\"show_icon\":\"true\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-counter-icon2.png\",\"id\":3316},\"ct_animate\":\"wow fadeInUp\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"43f23a2b\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"ending_number\":310,\"suffix\":\"+\",\"title\":\"Completed <br/> Works\",\"show_icon\":\"true\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-counter-icon3.png\",\"id\":3317},\"ct_animate\":\"wow fadeInUp\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"32843a50\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"ending_number\":215,\"suffix\":\"+\",\"title\":\"Clientu2019s <br/> Feedback\",\"show_icon\":\"true\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-counter-icon4.png\",\"id\":3318},\"ct_animate\":\"wow fadeInUp\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"2fd42d11\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d5057bf\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"particle\":{\"url\":\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-shape-6.png\",\"id\":3349},\"particle_animate\":\"shape-animate1\",\"top_positioon\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"_id\":\"ceb05ff\"},{\"particle\":{\"url\":\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-shape-7.png\",\"id\":3350},\"particle_animate\":\"shape-animate2\",\"top_positioon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"_id\":\"39fffe4\"},{\"particle\":{\"url\":\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-shape-5.png\",\"id\":3348},\"particle_animate\":\"shape-animate6\",\"top_positioon\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_id\":\"a3a57b0\"}]},\"elements\":[],\"widgetType\":\"ct_particle_animate\"},{\"id\":\"587ea02\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6aeb0ccd\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"73\",\"right\":\"0\",\"bottom\":\"95\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-services\"},\"elements\":[{\"id\":\"42e79069\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ae95ad3\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"66e2455c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"70fefdb9\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"ct_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"title\":\"Tax Consultancy\",\"description\":\"This is one of many areas ofnprofessional services where our firm is well ahead of the competition.\",\"link\":{\"url\":\"https://demo.casethemes.net/consultio-tax/service/business-strategy/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"ad3ffd2\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-service-icon4.png\",\"id\":3364}},{\"ct_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"title\":\"Audit & assurance\",\"description\":\"People are only as good as the tools they possess. So, to consistently deliver high-quality auditing services.\",\"link\":{\"url\":\"https://demo.casethemes.net/consultio-tax/service/business-strategy/\",\"is_external\":\"\",\"nofollow\":\"\"},\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-service-icon5.png\",\"id\":3365},\"_id\":\"549e205\"},{\"ct_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"title\":\"Value Added Tax\",\"description\":\"We are providing and dealing with all sorts of legal and professional services and matters to operate.\",\"link\":{\"url\":\"https://demo.casethemes.net/consultio-tax/service/business-strategy/\",\"is_external\":\"\",\"nofollow\":\"\"},\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-service-icon6.png\",\"id\":3366},\"_id\":\"c96dff0\"},{\"ct_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"title\":\"Accounting Services\",\"description\":\"Our professionals provide a range of accounting and assurance services of the highest standards.\",\"link\":{\"url\":\"https://demo.casethemes.net/consultio-tax/service/business-strategy/\",\"is_external\":\"\",\"nofollow\":\"\"},\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-service-icon7.png\",\"id\":3367},\"_id\":\"c5fa888\"},{\"ct_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"title\":\"Tax Outsourcing\",\"description\":\"Unlike our competitors we have in house qualified lawyers and accountants who can help you.\",\"link\":{\"url\":\"https://demo.casethemes.net/consultio-tax/service/business-strategy/\",\"is_external\":\"\",\"nofollow\":\"\"},\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-service-icon8.png\",\"id\":3368},\"_id\":\"70a20db\"},{\"ct_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"title\":\"Amazing Strategy\",\"description\":\"Operates an atmosphere that promote creative approach for clients needs.\",\"link\":{\"url\":\"https://demo.casethemes.net/consultio-tax/service/business-strategy/\",\"is_external\":\"\",\"nofollow\":\"\"},\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-service-icon9.png\",\"id\":3369},\"_id\":\"838b0fb\"}],\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d911f7a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0E0E0E\",\"background_image\":{\"url\":\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-bg-section-02.png\",\"id\":3411},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"_element_id\":\"section-team\"},\"elements\":[{\"id\":\"2b52f0fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":28,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_inline_size_tablet\":40,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c4ef889\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"5bbf27fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have expert team members\",\"sub_title\":\"Team member \",\"sub_title_color\":\"#00C7D4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#00C7D4\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2f815287\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Learn about the skills that are most useful in helping you to work effectively as part of a team, and how this fits with Belbin\'s Team Roles.\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"42\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"7817296a\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"For any Emergency <b class=\"text-underline\">Call:</b>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"86\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"2282766f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<i class=\"h6-icon-phone fac fac-phone\">icon phone</i>(210) 123-451\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"86\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"35bca6e7\",\"elType\":\"widget\",\"settings\":{\"style\":\"btn-round2\",\"text\":\"Team details\",\"link\":{\"url\":\"https://demo.casethemes.net/consultio-tax/team-details/\",\"is_external\":\"\",\"nofollow\":\"\"},\"btn_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_button\"},{\"id\":\"10888ce4\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"1f849d6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":72,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"750c60ac\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"image\":{\"url\":\"https://demo.casethemes.net/consultio-tax/wp-content/plugins/elementor/assets/images/placeholder.png\",\"id\":\"\"},\"title\":\"\",\"position\":\"\",\"btn_text\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"8fd12a6\"}],\"content_list2\":[{\"image\":{\"url\":\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-team1.jpg\",\"id\":3383},\"title\":\"Iven Rocky\",\"position\":\"Senior Web Developer\",\"link\":{\"url\":\"https://demo.casethemes.net/consultio-tax/team-details/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\"icon\":\"fa fa-facebook\",\"url\":\"#\"},{\"icon\":\"fa fa-twitter\",\"url\":\"#\"},{\"icon\":\"fa fa-dribbble\",\"url\":\"#\"}]\",\"_id\":\"1f79747\",\"progressbar\":\"[{\"title\":\"WordPress\",\"number\":\"90\"},{\"title\":\"Java\",\"number\":\"50\"},{\"title\":\"Css\",\"number\":\"70\"}]\",\"lists\":\"\",\"image_position\":\"img-right\"},{\"image\":{\"url\":\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-team2.jpg\",\"id\":3399},\"title\":\"Rebecca Leo\",\"position\":\"Web Designer\",\"link\":{\"url\":\"https://demo.casethemes.net/consultio-tax/team-details/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\"icon\":\"fa fa-facebook\",\"url\":\"#\"},{\"icon\":\"fa fa-twitter\",\"url\":\"#\"},{\"icon\":\"fa fa-youtube-play\",\"url\":\"#\"}]\",\"progressbar\":\"[{\"title\":\"Photoshop\",\"number\":\"90\"},{\"title\":\"Sketch\",\"number\":\"80\"},{\"title\":\"Css\",\"number\":\"70\"}]\",\"lists\":\"\",\"_id\":\"da16f47\",\"image_position\":\"img-right\"},{\"image\":{\"url\":\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-team3.jpg\",\"id\":3400},\"title\":\"Adam Ivan\",\"position\":\"Chef Advisor\",\"link\":{\"url\":\"https://demo.casethemes.net/consultio-tax/team-details/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\"icon\":\"fa fa-facebook\",\"url\":\"#\"},{\"icon\":\"fa fa-dribbble\",\"url\":\"#\"}]\",\"progressbar\":\"[{\"title\":\"Business Sense\",\"number\":\"90\"},{\"title\":\"Cleanliness\",\"number\":\"80\"},{\"title\":\"Creativity\",\"number\":\"70\"}]\",\"lists\":\"\",\"_id\":\"9d03385\",\"image_position\":\"img-left\"},{\"image\":{\"url\":\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-team4.jpg\",\"id\":3401},\"title\":\"Obira Franc\",\"position\":\"Tax Consultant\",\"link\":{\"url\":\"https://demo.casethemes.net/consultio-tax/team-details/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\"icon\":\"fa fa-facebook\",\"url\":\"#\"},{\"icon\":\"fa fa-twitter\",\"url\":\"#\"},{\"icon\":\"fa fa-dribbble\",\"url\":\"#\"}]\",\"progressbar\":\"[{\"title\":\"Negotiation\",\"number\":\"90\"},{\"title\":\"Tax law\",\"number\":\"50\"},{\"title\":\"Organisation\",\"number\":\"70\"}]\",\"lists\":\"\",\"_id\":\"f836421\",\"image_position\":\"img-left\"}],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a8f3a7b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"115\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#0E0E0E\",\"_element_id\":\"section-project\"},\"elements\":[{\"id\":\"26397a49\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"513c623c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"44\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd62ba2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.332999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"a8b26ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are very happy for our awesome case studies!\",\"sub_title\":\"Case Studies\",\"sub_title_color\":\"#00C7D4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#00C7D4\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"1a38377d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.62700000000000244426701101474463939666748046875},\"elements\":[{\"id\":\"839fba7\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Like what you see? Contact us to see what type of solutions we can deploy for your business!\",\"text_color\":\"#ABABAB\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"56b957b8\",\"elType\":\"widget\",\"settings\":{\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"layout\":\"2\",\"col_sm\":\"1\",\"arrows\":\"true\",\"arrow_style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d469e9\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"447d0bb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"457b986e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#151D85\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false}},\"elements\":[{\"id\":\"646930f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6f70d2db\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have appreciated by our clients!\",\"sub_title\":\"Testimonials\",\"sub_title_color\":\"#00C7D4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#00C7D4\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3b4e7929\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/author-02.jpg\",\"id\":238},\"title\":\"Maria Silverii\",\"position\":\"CEO of Blue Illusion\",\"description\":\"u201c I had the pleasure of working with Consultio as part of a 6 month u2018Regional Retail as a Leadership Programu2019 is Her passion.u201d\",\"_id\":\"f8dba69\",\"sub_title\":\"\"},{\"image\":{\"url\":\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/author-01.jpg\",\"id\":237},\"title\":\"Rebecca Leo \",\"position\":\"Web Designer\",\"description\":\"u201c I had the pleasure of working with Consultio as part of a 6 month u2018Regional Retail as a Leadership Programu2019 is Her passion.u201d\",\"_id\":\"5f76277\",\"sub_title\":\"\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6789b63a\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"2e9fdba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"79803314\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-tax.png\",\"id\":3468},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-180\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ea0f3e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-blog\"},\"elements\":[{\"id\":\"7b31d0e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"419fc910\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weu2019re here to share story & news from resource\",\"sub_title\":\"Blog\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"65f4bc24\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"c71af69\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \"weblog\")</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"555163bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1f34e24c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"37432bdc\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"634d8a4d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-14\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"17e2ed34\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7fb07198\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(1463,3984,'_elementor_controls_usage','a:20:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:23;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:21;s:19:\"_inline_size_tablet\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:12;s:7:\"padding\";i:2;s:14:\"padding_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:13:\"margin_tablet\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:21:\"background_background\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:15;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:15:\"stretch_section\";i:6;s:6:\"layout\";i:2;s:3:\"gap\";i:15;s:8:\"overflow\";i:1;s:16:\"content_position\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:8;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:5:{s:11:\"_element_id\";i:7;s:7:\"padding\";i:10;s:6:\"margin\";i:6;s:7:\"z_index\";i:1;s:11:\"css_classes\";i:1;}s:19:\"_section_responsive\";a:3:{s:11:\"hide_mobile\";i:1;s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:6;s:16:\"background_image\";i:3;s:19:\"background_position\";i:4;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:1;s:16:\"background_color\";i:4;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:13:\"title_section\";a:10:{s:5:\"title\";i:8;s:5:\"style\";i:8;s:11:\"title_color\";i:5;s:13:\"st_line_color\";i:5;s:18:\"title_space_bottom\";i:4;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_line_height\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;}s:17:\"sub_title_section\";a:8:{s:9:\"sub_title\";i:8;s:15:\"sub_title_color\";i:8;s:31:\"sub_title_typography_typography\";i:8;s:32:\"sub_title_typography_font_family\";i:8;s:30:\"sub_title_typography_font_size\";i:8;s:32:\"sub_title_typography_font_weight\";i:8;s:22:\"sub_title_space_bottom\";i:8;s:14:\"sub_title_line\";i:8;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:8;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:7:\"_margin\";i:1;s:8:\"_z_index\";i:1;}}}}s:21:\"ct_fancy_box_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:17:\"content_fancy_box\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"col_md\";i:1;s:8:\"infinite\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:7;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:7:{s:5:\"align\";i:2;s:10:\"text_color\";i:7;s:10:\"link_color\";i:1;s:21:\"typography_typography\";i:7;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:6;s:22:\"typography_line_height\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:8:\"_padding\";i:4;s:7:\"_margin\";i:5;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:14:\"_margin_mobile\";i:3;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_feature\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:6:{s:10:\"title_text\";i:8;s:16:\"description_text\";i:8;s:10:\"ct_animate\";i:8;s:10:\"icon_color\";i:8;s:11:\"title_color\";i:8;s:10:\"desc_color\";i:8;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:8;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:2;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:2;s:10:\"video_link\";i:2;s:15:\"btn_video_style\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:8;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:7:{s:13:\"ending_number\";i:8;s:6:\"suffix\";i:8;s:5:\"title\";i:8;s:9:\"show_icon\";i:8;s:9:\"icon_type\";i:8;s:10:\"icon_image\";i:8;s:10:\"ct_animate\";i:8;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:6;s:8:\"_padding\";i:2;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:4;}}}}s:17:\"ct_fancy_box_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:5:\"style\";i:1;s:4:\"text\";i:1;s:4:\"link\";i:1;s:8:\"btn_icon\";i:1;s:10:\"icon_align\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:12:\"section_list\";a:2:{s:12:\"content_list\";i:1;s:13:\"content_list2\";i:1;}s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"col_sm\";i:1;s:6:\"arrows\";i:1;s:11:\"arrow_style\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:8:\"_z_index\";i:1;s:14:\"_margin_mobile\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:2:{s:11:\"arrow_align\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"arrows\";i:1;s:4:\"dots\";i:1;s:6:\"col_md\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(1466,156,'_wp_page_template','default'),(1467,156,'_elementor_controls_usage','a:0:{}'),(1468,156,'post_content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(1469,156,'show_sidebar_post',''),(1470,156,'sidebar_post_pos','right'),(1471,156,'slide_template',''),(1472,156,'post_views_count','6'),(1473,156,'_thumbnail_id','1538'),(1474,156,'_wp_old_slug','engaging-new-audiences-through-smart-approach'),(3530,4100,'_elementor_template_type','kit'),(1477,159,'_wp_page_template','default'),(1478,159,'_elementor_controls_usage','a:0:{}'),(1479,159,'post_content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(1480,159,'show_sidebar_post','1'),(1481,159,'sidebar_post_pos','none'),(1482,159,'slide_template',''),(1483,159,'post_views_count','11'),(1484,159,'_thumbnail_id','1542'),(1485,159,'_wp_old_slug','how-to-go-about-intiating-an-start-up-in-a-matter-of-days'),(1488,161,'_wp_page_template','default'),(1489,161,'_elementor_controls_usage','a:0:{}'),(1490,161,'post_content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(1491,161,'show_sidebar_post',''),(1492,161,'sidebar_post_pos','right'),(1493,161,'slide_template','default'),(1494,161,'post_views_count','196'),(1495,161,'_thumbnail_id','1543'),(3531,4100,'_elementor_version','3.1.4'),(1498,164,'_wp_page_template','default'),(1499,164,'_elementor_controls_usage','a:0:{}'),(1500,164,'post_content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(1501,164,'show_sidebar_post','1'),(1502,164,'sidebar_post_pos','left'),(1503,164,'slide_template','default'),(1504,164,'post_views_count','215'),(1505,164,'_thumbnail_id','1536'),(1506,164,'video_url','https://www.youtube.com/watch?v=SF4aHwxHtZ0'),(1509,166,'_wp_page_template','default'),(1510,166,'_elementor_controls_usage','a:0:{}'),(1511,166,'post_content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(1512,166,'show_sidebar_post',''),(1513,166,'sidebar_post_pos','right'),(1514,166,'slide_template','default'),(1515,166,'post_views_count','18'),(1516,166,'_thumbnail_id','1539'),(3529,4100,'_elementor_edit_mode','builder'),(1519,169,'_wp_page_template','default'),(1520,169,'_elementor_controls_usage','a:0:{}'),(1521,169,'post_content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(1522,169,'show_sidebar_post',''),(1523,169,'sidebar_post_pos','right'),(1524,169,'slide_template','default'),(1525,169,'_wp_old_date','2019-11-05'),(1526,169,'_wp_old_date','2019-11-04'),(1527,169,'post_views_count','3'),(1528,169,'_thumbnail_id','1534'),(1529,575,'slide_template','default'),(1530,575,'portfolio_sub_title','Property Sketching'),(1531,575,'_wp_page_template','default'),(1532,575,'portfolio_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(1533,575,'_elementor_edit_mode','builder'),(1534,575,'_elementor_template_type','wp-post'),(1535,575,'_elementor_version','2.7.5'),(1536,575,'_elementor_data','[{\"id\":\"1f47c785\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"795b4afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17d7a8db\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Portfolio\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"273c1c4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"41bca8c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1c1485b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"55e67225\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c35b751\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-06.jpg\",\"id\":1535},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3ac734f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1819ba63\",\"elType\":\"widget\",\"settings\":{\"title\":\"Revenue Growth\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"36279b37\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2220d351\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8d838b\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4093c7be\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"43083958\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1c0c4bc5\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(1537,575,'_wp_old_slug','rio-villa'),(1538,575,'_thumbnail_id','1535'),(1539,575,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(1540,577,'slide_template','default'),(1541,577,'portfolio_sub_title','Material Supply'),(1542,577,'_wp_page_template','default'),(1543,577,'portfolio_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(1544,577,'_elementor_edit_mode','builder'),(1545,577,'_elementor_template_type','wp-post'),(1546,577,'_elementor_data','[{\"id\":\"1dfbc5d4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a482228\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ab965a0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Portfolio\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"7f52b03a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"2b8ece51\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"70d2235d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbed3b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"925f00f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\",\"id\":1534},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43c59fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5573d38c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Court Imperial\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"187f95bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"56a74858\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1fb27f40\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1afe2c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"11319ede\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"92f0806\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(1547,577,'_elementor_version','2.7.5'),(1548,577,'_thumbnail_id','1534'),(1549,577,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(1550,579,'slide_template','default'),(1551,579,'post_views_count','2'),(1552,579,'portfolio_sub_title','House Remodel'),(1553,579,'portfolio_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(1554,579,'_elementor_edit_mode','builder'),(1555,579,'_elementor_template_type','wp-post'),(1556,579,'_elementor_version','2.7.5'),(1557,579,'_wp_page_template','default'),(1558,579,'_elementor_data','[{\"id\":\"5082f78d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b5819a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44d39aa7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Portfolio\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"19f72c29\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"5514f494\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"105945eb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3b933b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66ab5385\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-04.jpg\",\"id\":1533},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2519c386\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7890d411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Data Analytics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1a9d30b9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3cb90524\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a4abaa5\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2020\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.consultio.com\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64729566\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36235ad3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"302e5231\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(1559,579,'_wp_old_slug','city-centre'),(1560,579,'_thumbnail_id','1533'),(1561,579,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(1562,581,'slide_template','default'),(1563,581,'post_views_count','3'),(1564,581,'portfolio_sub_title','Plan Estimations'),(1565,581,'_wp_page_template','default'),(1566,581,'portfolio_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(1567,581,'_elementor_edit_mode','builder'),(1568,581,'_elementor_template_type','wp-post'),(1569,581,'_elementor_version','2.7.5'),(1570,581,'_elementor_data','[{\"id\":\"fd2936\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d117fd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6728f356\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Portfolio\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"37246f52\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"20294c52\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ad3f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3f2abeab\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b712b50\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-03.jpg\",\"id\":1532},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3abbf614\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25d31227\",\"elType\":\"widget\",\"settings\":{\"title\":\"Chan Agency\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"30a0ede6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"334c2cd8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"287cdf86\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33f9eafa\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"74e7fa37\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7f015042\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(1571,581,'_wp_old_slug','borak-mehnur'),(1572,581,'_thumbnail_id','1532'),(1573,581,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(1574,583,'slide_template','default'),(1575,583,'post_views_count','2'),(1576,583,'portfolio_sub_title','Interior Design'),(1577,583,'_wp_page_template','default'),(1578,583,'portfolio_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(1579,583,'_elementor_edit_mode','builder'),(1580,583,'_elementor_template_type','wp-post'),(1581,583,'_elementor_version','2.7.5'),(1582,583,'_elementor_data','[{\"id\":\"15e9dfce\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"258e2d51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1e40afd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Portfolio\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"7388310\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"70ed0350\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"48fe0bbf\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5bc9639d\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"714b5cd3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\",\"id\":1530},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5b03d11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"260a630d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digital Analysis\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"49a4ce28\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"35687c3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bb9e3ca\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a34e962\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a68a8a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7f079b53\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(1583,583,'_wp_old_slug','rf-tower'),(1584,583,'_thumbnail_id','1531'),(1585,583,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(1586,758,'_elementor_controls_usage','a:0:{}'),(1587,758,'_regular_price','80.99'),(1588,758,'total_sales','0'),(1589,758,'_tax_status','taxable'),(1590,758,'_tax_class',''),(1591,758,'_manage_stock','no'),(1592,758,'_backorders','no'),(1593,758,'_sold_individually','no'),(1594,758,'_virtual','no'),(1595,758,'_downloadable','no'),(1596,758,'_download_limit','-1'),(1597,758,'_download_expiry','-1'),(1598,758,'_stock',''),(1599,758,'_stock_status','instock'),(1600,758,'_wc_average_rating','0'),(1601,758,'_wc_review_count','0'),(1602,758,'_product_version','5.1.0'),(1603,758,'_price','80.99'),(1604,758,'slide_template','default'),(1605,758,'_thumbnail_id','1939'),(1606,758,'_wp_old_slug','x15-fibre-axe'),(1607,758,'product_feature','a:3:{i:0;s:35:\"Sed do eiusmod tempor incididunt ut\";i:1;s:29:\"Labore et dolore magna aliqua\";i:2;s:36:\"Ut enim ad minim veniam quis nostrud\";}'),(1608,771,'_elementor_controls_usage','a:0:{}'),(1609,771,'_regular_price','60.99'),(1610,771,'_sale_price','32.99'),(1611,771,'total_sales','0'),(1612,771,'_tax_status','taxable'),(1613,771,'_tax_class',''),(1614,771,'_manage_stock','no'),(1615,771,'_backorders','no'),(1616,771,'_sold_individually','no'),(1617,771,'_virtual','no'),(1618,771,'_downloadable','no'),(1619,771,'_download_limit','-1'),(1620,771,'_download_expiry','-1'),(1621,771,'_stock',''),(1622,771,'_stock_status','instock'),(1623,771,'_wc_average_rating','0'),(1624,771,'_wc_review_count','0'),(1625,771,'_product_version','5.1.0'),(1626,771,'_price','32.99'),(1627,771,'slide_template','default'),(1628,771,'_thumbnail_id','1933'),(1629,771,'_wp_old_slug','spirit-level-ruler'),(1630,771,'product_feature','a:3:{i:0;s:35:\"Sed do eiusmod tempor incididunt ut\";i:1;s:29:\"Labore et dolore magna aliqua\";i:2;s:36:\"Ut enim ad minim veniam quis nostrud\";}'),(1631,772,'_elementor_controls_usage','a:0:{}'),(1632,772,'_regular_price','14.99'),(1633,772,'total_sales','0'),(1634,772,'_tax_status','taxable'),(1635,772,'_tax_class',''),(1636,772,'_manage_stock','no'),(1637,772,'_backorders','no'),(1638,772,'_sold_individually','no'),(1639,772,'_virtual','no'),(1640,772,'_downloadable','no'),(1641,772,'_download_limit','-1'),(1642,772,'_download_expiry','-1'),(1643,772,'_stock',''),(1644,772,'_stock_status','instock'),(1645,772,'_wc_average_rating','0'),(1646,772,'_wc_review_count','0'),(1647,772,'_product_version','5.1.0'),(1648,772,'_price','14.99'),(1649,772,'slide_template','default'),(1650,772,'_thumbnail_id','1935'),(1651,772,'_wp_old_slug','small-pointing-tool'),(1652,772,'product_feature','a:3:{i:0;s:35:\"Sed do eiusmod tempor incididunt ut\";i:1;s:29:\"Labore et dolore magna aliqua\";i:2;s:36:\"Ut enim ad minim veniam quis nostrud\";}'),(1653,773,'_elementor_controls_usage','a:0:{}'),(1654,773,'_regular_price','110.99'),(1655,773,'_sale_price','90.99'),(1656,773,'total_sales','0'),(1657,773,'_tax_status','taxable'),(1658,773,'_tax_class',''),(1659,773,'_manage_stock','no'),(1660,773,'_backorders','no'),(1661,773,'_sold_individually','no'),(1662,773,'_virtual','no'),(1663,773,'_downloadable','no'),(1664,773,'_download_limit','-1'),(1665,773,'_download_expiry','-1'),(1666,773,'_stock',''),(1667,773,'_stock_status','instock'),(1668,773,'_wc_average_rating','0'),(1669,773,'_wc_review_count','0'),(1670,773,'_product_version','5.1.0'),(1671,773,'_price','90.99'),(1672,773,'slide_template','default'),(1673,773,'_thumbnail_id','1938'),(1674,773,'_wp_old_slug','roughneck-micro-pick'),(1675,773,'product_feature','a:3:{i:0;s:35:\"Sed do eiusmod tempor incididunt ut\";i:1;s:29:\"Labore et dolore magna aliqua\";i:2;s:36:\"Ut enim ad minim veniam quis nostrud\";}'),(1676,774,'_elementor_controls_usage','a:0:{}'),(1677,774,'_regular_price','24.99'),(1678,774,'total_sales','0'),(1679,774,'_tax_status','taxable'),(1680,774,'_tax_class',''),(1681,774,'_manage_stock','no'),(1682,774,'_backorders','no'),(1683,774,'_sold_individually','no'),(1684,774,'_virtual','no'),(1685,774,'_downloadable','no'),(1686,774,'_download_limit','-1'),(1687,774,'_download_expiry','-1'),(1688,774,'_stock',''),(1689,774,'_stock_status','instock'),(1690,774,'_wc_average_rating','0'),(1691,774,'_wc_review_count','0'),(1692,774,'_product_version','5.1.0'),(1693,774,'_price','24.99'),(1694,774,'slide_template','default'),(1695,774,'_thumbnail_id','1931'),(1696,774,'_wp_old_slug','pick-axe-head'),(1697,774,'product_feature','a:3:{i:0;s:35:\"Sed do eiusmod tempor incididunt ut\";i:1;s:29:\"Labore et dolore magna aliqua\";i:2;s:36:\"Ut enim ad minim veniam quis nostrud\";}'),(1698,775,'_elementor_controls_usage','a:0:{}'),(1699,775,'_regular_price','70.99'),(1700,775,'total_sales','0'),(1701,775,'_tax_status','taxable'),(1702,775,'_tax_class',''),(1703,775,'_manage_stock','no'),(1704,775,'_backorders','no'),(1705,775,'_sold_individually','no'),(1706,775,'_virtual','no'),(1707,775,'_downloadable','no'),(1708,775,'_download_limit','-1'),(1709,775,'_download_expiry','-1'),(1710,775,'_stock',''),(1711,775,'_stock_status','instock'),(1712,775,'_wc_average_rating','0'),(1713,775,'_wc_review_count','0'),(1714,775,'_product_version','5.1.0'),(1715,775,'_price','70.99'),(1716,775,'slide_template','default'),(1717,775,'_thumbnail_id','1934'),(1718,775,'_wp_old_slug','ox-spirit-level'),(1719,775,'product_feature','a:3:{i:0;s:35:\"Sed do eiusmod tempor incididunt ut\";i:1;s:29:\"Labore et dolore magna aliqua\";i:2;s:36:\"Ut enim ad minim veniam quis nostrud\";}'),(1720,776,'_elementor_controls_usage','a:0:{}'),(1721,776,'_regular_price','58.99'),(1722,776,'total_sales','0'),(1723,776,'_tax_status','taxable'),(1724,776,'_tax_class',''),(1725,776,'_manage_stock','no'),(1726,776,'_backorders','no'),(1727,776,'_sold_individually','no'),(1728,776,'_virtual','no'),(1729,776,'_downloadable','no'),(1730,776,'_download_limit','-1'),(1731,776,'_download_expiry','-1'),(1732,776,'_stock',''),(1733,776,'_stock_status','instock'),(1734,776,'_wc_average_rating','0'),(1735,776,'_wc_review_count','0'),(1736,776,'_product_version','5.1.0'),(1737,776,'_price','58.99'),(1738,776,'slide_template','default'),(1739,776,'_thumbnail_id','1930'),(1740,776,'_wp_old_slug','ice-pick'),(1741,776,'product_feature','a:3:{i:0;s:35:\"Sed do eiusmod tempor incididunt ut\";i:1;s:29:\"Labore et dolore magna aliqua\";i:2;s:36:\"Ut enim ad minim veniam quis nostrud\";}'),(1742,777,'_elementor_controls_usage','a:0:{}'),(1743,777,'_regular_price','24.99'),(1744,777,'total_sales','0'),(1745,777,'_tax_status','taxable'),(1746,777,'_tax_class',''),(1747,777,'_manage_stock','no'),(1748,777,'_backorders','no'),(1749,777,'_sold_individually','no'),(1750,777,'_virtual','no'),(1751,777,'_downloadable','no'),(1752,777,'_download_limit','-1'),(1753,777,'_download_expiry','-1'),(1754,777,'_stock',''),(1755,777,'_stock_status','instock'),(1756,777,'_wc_average_rating','0'),(1757,777,'_wc_review_count','0'),(1758,777,'_product_version','5.1.0'),(1759,777,'_price','24.99'),(1760,777,'slide_template','default'),(1761,777,'_thumbnail_id','1929'),(1762,777,'_wp_old_slug','finishing-trowel'),(1763,777,'product_feature','a:3:{i:0;s:35:\"Sed do eiusmod tempor incididunt ut\";i:1;s:29:\"Labore et dolore magna aliqua\";i:2;s:36:\"Ut enim ad minim veniam quis nostrud\";}'),(1764,1742,'_wp_page_template','default'),(1765,1742,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(1766,1742,'portfolio_sub_title',''),(1767,1742,'portfolio_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(1768,1742,'slide_template','default'),(1769,1742,'_thumbnail_id','1530'),(1770,1742,'_elementor_edit_mode','builder'),(1771,1742,'_elementor_template_type','wp-post'),(1772,1742,'_elementor_version','2.7.5'),(1773,1742,'_elementor_data','[{\"id\":\"33631ddb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64d9501e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a1db4ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Portfolio\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"e9611ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"2236e97b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"630f7823\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5851b0a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21fe0299\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\",\"id\":1530},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"666172d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"49eb497\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Growth\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"29b73151\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e998dc5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5f16b749\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a4e8bca\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3dc2cbfc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5fdb4fd3\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(1774,1742,'ptitle_bg','a:2:{s:16:\"background-image\";s:81:\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-team4.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"3401\";s:6:\"height\";s:3:\"450\";s:5:\"width\";s:3:\"450\";s:9:\"thumbnail\";s:89:\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-team4-150x150.jpg\";}}'),(1775,1742,'custom_pagetitle','themeoption'),(1776,446,'_wp_page_template','default'),(1777,446,'service_except','Photography is the core of everything we do, photography equipment, camera, photography and reviews, photography articles.'),(1778,446,'case_study_content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(1779,446,'slide_template',''),(1780,446,'service_icon','flaticon-document'),(1781,446,'_elementor_edit_mode','builder'),(1782,446,'_elementor_template_type','wp-post'),(1783,446,'_elementor_version','2.7.5'),(1784,446,'_elementor_data','[{\"id\":\"24b96b2a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3e0a26a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"27e9d0b2\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"7fdadd4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3401c8e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1b2f0a2c\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"5ea1b3fd\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"2\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"72341ec9\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"4d71e5a4\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":4,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"7d9823f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"525fdf55\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"70fccaab\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"5038b12b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"692d161\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\"},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\"},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\"}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"9a76b64\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2841df09\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"569f6d22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ebe579f\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ebe53e1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"42d3dd1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"26346a93\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(1785,446,'_thumbnail_id','1538'),(1786,446,'service_content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(1787,446,'_wp_old_slug','metal-roofing'),(1788,446,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(1789,448,'_wp_page_template','default'),(1790,448,'service_except','A blueprint for accomplishing your objectives, from thought leadership to capacity building, photography and illustration.'),(1791,448,'case_study_content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(1792,448,'slide_template',''),(1793,448,'service_icon','flaticon-eye'),(1794,448,'_elementor_edit_mode','builder'),(1795,448,'_elementor_template_type','wp-post'),(1796,448,'_elementor_version','2.7.5'),(1797,448,'_elementor_data','[{\"id\":\"1b1cd0f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c48a456\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a89488c\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"b5349e7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5f53d85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"233b1a0\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"c8deb5e\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"2\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"2fd822c\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"d5c9c33\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":4,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"6fed9c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a6dae33\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"70afa14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"66112fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d15cfd\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\"},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\"},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\"}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"ab598c4\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ca16fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1548059\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1021f1b\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33e0b2e4\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7f7d0b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9ad765c\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(1798,448,'_thumbnail_id','1541'),(1799,448,'service_content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(1800,448,'_wp_old_slug','interior-design'),(1801,448,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(1802,645,'_wp_page_template','default'),(1803,645,'service_icon','flaticon-chart-1'),(1804,645,'service_except','Graphic design is the process of visual and problem-solving using one or more of typography, photography and illustration.'),(1805,645,'case_study_content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(1806,645,'slide_template',''),(1807,645,'_elementor_edit_mode','builder'),(1808,645,'_elementor_template_type','wp-post'),(1809,645,'_elementor_version','2.7.5'),(1810,645,'_elementor_data','[{\"id\":\"3a4a7b26\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1880fb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"915447d\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"178ed7df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d350375\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f51b661\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"15862e4f\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"2\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"57b83fdc\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"4354465f\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":4,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"2483f9f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5dd80012\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"eca4320\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a864c63\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4eb05a19\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\"},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\"},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\"}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"6f3b3b88\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"258fd3ce\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3ad38e33\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3057e303\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e2459bd\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2e81477c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"46098650\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(1811,645,'_thumbnail_id','1530'),(1812,645,'service_content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(1813,645,'_wp_old_slug','general-contracting'),(1814,645,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(1815,647,'_wp_page_template','default'),(1816,647,'service_icon','flaticon-presentation'),(1817,647,'service_except','What separates York agency from all other web design agencies is the ability to offer the most User Friendly Experience.'),(1818,647,'case_study_content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(1819,647,'slide_template',''),(1820,647,'_elementor_edit_mode','builder'),(1821,647,'_elementor_template_type','wp-post'),(1822,647,'_elementor_version','2.7.5'),(1823,647,'_elementor_data','[{\"id\":\"6a53a81c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36346e9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5bc7d745\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"46d7f391\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"48fe5cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b982cce\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"4e071452\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"2\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"2504dd8d\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"48fcf97\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":4,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"4e1963b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7409dc3d\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"5f1a36b1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"156390c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"59243e36\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\"},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\"},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\"}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"5ecb93f9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6299f06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b9da903\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f548340\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3eca01ba\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"304ec3a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"976bc52\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(1824,647,'_thumbnail_id','1534'),(1825,647,'service_content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(1826,647,'_wp_old_slug','house-renovation'),(1827,647,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(1828,649,'_wp_page_template','default'),(1829,649,'service_icon','flaticon-puzzle'),(1830,649,'service_except','The development of your next business plan will be executed by a brilliant team who will indicate your grand success.'),(1831,649,'case_study_content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(1832,649,'slide_template',''),(1833,649,'_elementor_edit_mode','builder'),(1834,649,'_elementor_template_type','wp-post'),(1835,649,'_elementor_version','2.7.5'),(1836,649,'_elementor_data','[{\"id\":\"1e878f39\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7a9c35f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b4f9955\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"3abf5173\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a431e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16e925ac\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"f8300\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"2\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"1a3bf5d0\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"28c9244d\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":4,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"1376fcea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d17c783\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"576eff3a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"607fd0f7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d590152\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\"},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\"},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\"}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"fcae319\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"5d59bf2b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"230322a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"74358e14\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"367d11a1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2a37ca53\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6d1d9841\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(1837,649,'service_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(1838,649,'_wp_old_slug','laminate-flooring'),(1839,649,'_thumbnail_id','1539'),(1840,649,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(1841,651,'_wp_page_template','default'),(1842,651,'service_icon','flaticon-chart'),(1843,651,'service_except','We develop the relationships that underpin the next phase in your organisation’s growth. We do this by discerning the people.'),(1844,651,'case_study_content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(1845,651,'slide_template',''),(1846,651,'_elementor_edit_mode','builder'),(1847,651,'_elementor_template_type','wp-post'),(1848,651,'_elementor_version','2.7.5'),(1849,651,'_elementor_data','[{\"id\":\"4881fb50\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"60f5cf44\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5236cc5c\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"5bf474db\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"21ca04a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"118ec289\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"3e340a56\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"2\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"9a22fc5\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"5a3ebb17\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":4,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"68320a76\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"415a7443\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"5e6d0038\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"64eeb67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"42ea80fc\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\"},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\"},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\"}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"52d8de1c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"233d4206\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3651e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"71cdb235\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a78cb00\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"62a925c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"526a9100\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(1850,651,'service_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(1851,651,'_wp_old_slug','surface-demolition'),(1852,651,'_thumbnail_id','1533'),(1853,651,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(1854,778,'_elementor_controls_usage','a:0:{}'),(1855,778,'_regular_price','120.99'),(1856,778,'_sale_price','80.99'),(1857,778,'total_sales','0'),(1858,778,'_tax_status','taxable'),(1859,778,'_tax_class',''),(1860,778,'_manage_stock','no'),(1861,778,'_backorders','no'),(1862,778,'_sold_individually','no'),(1863,778,'_virtual','no'),(1864,778,'_downloadable','no'),(1865,778,'_download_limit','-1'),(1866,778,'_download_expiry','-1'),(1867,778,'_stock',''),(1868,778,'_stock_status','instock'),(1869,778,'_wc_average_rating','5.00'),(1870,778,'_wc_review_count','2'),(1871,778,'_product_version','5.1.0'),(1872,778,'_price','80.99'),(1873,778,'slide_template','default'),(1874,778,'_wc_rating_count','a:1:{i:5;i:2;}'),(1875,778,'product_feature','a:3:{i:0;s:35:\"Sed do eiusmod tempor incididunt ut\";i:1;s:29:\"Labore et dolore magna aliqua\";i:2;s:36:\"Ut enim ad minim veniam quis nostrud\";}'),(1876,778,'_thumbnail_id','1928'),(1877,778,'_wp_old_slug','fat-max-spirit-level'),(1878,778,'_product_image_gallery','1938,1933'),(1879,780,'_elementor_controls_usage','a:0:{}'),(1880,780,'_regular_price','60.99'),(1881,780,'total_sales','0'),(1882,780,'_tax_status','taxable'),(1883,780,'_tax_class',''),(1884,780,'_manage_stock','no'),(1885,780,'_backorders','no'),(1886,780,'_sold_individually','no'),(1887,780,'_virtual','no'),(1888,780,'_downloadable','no'),(1889,780,'_download_limit','-1'),(1890,780,'_download_expiry','-1'),(1891,780,'_stock',''),(1892,780,'_stock_status','instock'),(1893,780,'_wc_average_rating','0'),(1894,780,'_wc_review_count','0'),(1895,780,'_product_version','5.1.0'),(1896,780,'_price','39.99'),(1897,780,'slide_template','default'),(1898,780,'_thumbnail_id','1927'),(1899,780,'_wp_old_slug','electronic-spirit-level'),(1900,780,'_sale_price','39.99'),(1901,780,'product_feature','a:3:{i:0;s:35:\"Sed do eiusmod tempor incididunt ut\";i:1;s:29:\"Labore et dolore magna aliqua\";i:2;s:36:\"Ut enim ad minim veniam quis nostrud\";}'),(1902,781,'_elementor_controls_usage','a:0:{}'),(1903,781,'_regular_price','43.99'),(1904,781,'total_sales','0'),(1905,781,'_tax_status','taxable'),(1906,781,'_tax_class',''),(1907,781,'_manage_stock','no'),(1908,781,'_backorders','no'),(1909,781,'_sold_individually','no'),(1910,781,'_virtual','no'),(1911,781,'_downloadable','no'),(1912,781,'_download_limit','-1'),(1913,781,'_download_expiry','-1'),(1914,781,'_stock',''),(1915,781,'_stock_status','instock'),(1916,781,'_wc_average_rating','0'),(1917,781,'_wc_review_count','0'),(1918,781,'_product_version','5.1.0'),(1919,781,'_price','43.99'),(1920,781,'slide_template','default'),(1921,781,'_thumbnail_id','1926'),(1922,781,'_wp_old_slug','bucket-trowel'),(1923,781,'product_feature','a:3:{i:0;s:35:\"Sed do eiusmod tempor incididunt ut\";i:1;s:29:\"Labore et dolore magna aliqua\";i:2;s:36:\"Ut enim ad minim veniam quis nostrud\";}'),(1924,782,'_elementor_controls_usage','a:0:{}'),(1925,782,'_regular_price','23.99'),(1926,782,'total_sales','0'),(1927,782,'_tax_status','taxable'),(1928,782,'_tax_class',''),(1929,782,'_manage_stock','no'),(1930,782,'_backorders','no'),(1931,782,'_sold_individually','no'),(1932,782,'_virtual','no'),(1933,782,'_downloadable','no'),(1934,782,'_download_limit','-1'),(1935,782,'_download_expiry','-1'),(1936,782,'_stock',''),(1937,782,'_stock_status','instock'),(1938,782,'_wc_average_rating','0'),(1939,782,'_wc_review_count','0'),(1940,782,'_product_version','5.1.0'),(1941,782,'_price','23.99'),(1942,782,'slide_template','default'),(1943,782,'_thumbnail_id','1925'),(1944,782,'_wp_old_slug','brick-trowel'),(1945,782,'product_feature','a:3:{i:0;s:35:\"Sed do eiusmod tempor incididunt ut\";i:1;s:29:\"Labore et dolore magna aliqua\";i:2;s:36:\"Ut enim ad minim veniam quis nostrud\";}'),(1946,1831,'_wp_page_template','default'),(1947,1831,'service_icon','flaticon-report'),(1948,1831,'service_except','Whatever the scenario, we tap into deep networks and innate understanding of each party’s priorities.'),(1949,1831,'service_content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(1950,1831,'slide_template','default'),(1951,1831,'_elementor_edit_mode','builder'),(1952,1831,'_elementor_template_type','wp-post'),(1953,1831,'_elementor_version','2.7.5'),(1954,1831,'_elementor_data','[{\"id\":\"d316d7b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3bc70054\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5e047f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"41598b5d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bcef6fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"70140f7a\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"3fa4e3d1\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"2\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"6ceebeb3\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"3e099470\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":4,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"73a785ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"735316af\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"3027a943\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"505aab3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"50b53487\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\"},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\"},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\"}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"2f947bd0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"30787db7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2478782d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6f33a62a\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e148962\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"566e7be6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2723e715\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(1955,1831,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(1956,1833,'_wp_page_template','default'),(1957,1833,'service_icon','flaticon-leadership'),(1958,1833,'service_except','When there is a key element of your organisation that is limiting your people’s to engagement performance.'),(1959,1833,'service_content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(1960,1833,'slide_template','default'),(1961,1833,'_elementor_edit_mode','builder'),(1962,1833,'_elementor_template_type','wp-post'),(1963,1833,'_elementor_version','2.7.5'),(1964,1833,'_elementor_data','[{\"id\":\"26e9b8f3\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"58c255f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20a45286\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"3b8ff191\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"683cd04b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"110eb12\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"6cdea283\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"2\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"447c06a8\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"4b75bdd9\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":4,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"18c136a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47d162f2\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"6a046cca\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3916af44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4eea81a1\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\"},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\"},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\"}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"6fbec48b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"a0ad4c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"217420ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ad98736\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5ea96f58\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"64e12d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4abbc068\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(1965,1833,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(1966,1835,'_wp_page_template','default'),(1967,1835,'service_icon','flaticon-marketing-strategy'),(1968,1835,'service_except','Photography is the core of everything we do, photography equipment, camera, photography.'),(1969,1835,'service_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(1970,1835,'slide_template','default'),(1971,1835,'_elementor_edit_mode','builder'),(1972,1835,'_elementor_template_type','wp-post'),(1973,1835,'_elementor_version','2.7.5'),(1974,1835,'_elementor_data','[{\"id\":\"6b2e5eff\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7be6cff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"45a4d6ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"4b613278\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"283b01e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14218f45\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"14319844\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"2cee621d\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"2e421d13\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":4,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"7d85681f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ac02940\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"53294094\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"61534706\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"18f4cd79\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\"},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\"},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\"}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"10dcd941\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2b2f10e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"11965546\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3737375e\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33902dbd\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37bb83ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43ec34f0\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(1975,1835,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(1976,1837,'_wp_page_template','default'),(1977,1837,'service_icon','flaticon-target-1'),(1978,1837,'service_except','A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.'),(1979,1837,'service_content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(1980,1837,'slide_template','default'),(1981,1837,'_elementor_edit_mode','builder'),(1982,1837,'_elementor_template_type','wp-post'),(1983,1837,'_elementor_version','2.7.5'),(1984,1837,'_elementor_data','[{\"id\":\"31587bbb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"113158c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"118cc93e\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"2b67dc18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e7a4a82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a8a9c25\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"3867b1a6\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"2\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"47de4770\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"6586e0f7\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":4,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"757278d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"32ae0866\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"42e9a08c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"18f9abfd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d07a4c3\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\"},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\"},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\"}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"1ddec7da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3044c697\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"42355930\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"63970bfd\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5b9fadba\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7b93607c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4a26a508\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(1985,1837,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(1986,1947,'_thumbnail_id','1942'),(1987,1947,'_wp_page_template','default'),(1988,1947,'service_icon',''),(1989,1947,'service_except','We can provide you business with house counsel services for a monthly fee.'),(1990,1947,'service_content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(1991,1947,'slide_template','default'),(1992,1947,'_elementor_edit_mode','builder'),(1993,1947,'_elementor_template_type','wp-post'),(1994,1947,'_elementor_version','2.7.5'),(1995,1947,'_elementor_data','[{\"id\":\"7b81b9c1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3c7c4fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"47221c0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"2470d6e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"362c0610\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5f75305c\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"4dc1cd6a\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"2\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"11e98e30\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"3c3f0822\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":4,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"6c613330\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6695ee08\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"3503df3d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"17e9ad5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"53a495c8\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\"},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\"},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\"}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"57084409\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"625c3850\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"69ade7b6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11b0a804\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e68ba1f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"211431e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ebfa773\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(1996,1947,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(1997,1949,'_thumbnail_id','1945'),(1998,1949,'_wp_page_template','default'),(1999,1949,'service_icon',''),(2000,1949,'service_except','We can provide you business with house counsel services for a monthly fee.'),(2001,1949,'service_content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(2002,1949,'slide_template','default'),(2003,1949,'_elementor_edit_mode','builder'),(2004,1949,'_elementor_template_type','wp-post'),(2005,1949,'_elementor_version','2.7.5'),(2006,1949,'_elementor_data','[{\"id\":\"744ba62b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3bc0fbab\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"360e594\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"43e9191b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"28efa50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4b2c7206\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"763a28ab\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"4169d3bf\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"21274716\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":4,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"316a10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"19569ef5\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"6285df34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"27be58a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"71b0858\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\"},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\"},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\"}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"575e9cfe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"262c8e79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"794551b6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"10f7e238\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"27265af4\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2d073d10\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3aaffd39\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(2007,1949,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(2008,1951,'_thumbnail_id','1946'),(2009,1951,'_wp_page_template','default'),(2010,1951,'service_icon',''),(2011,1951,'service_except','We can provide you business with house counsel services for a monthly fee.'),(2012,1951,'service_content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(2013,1951,'slide_template','default'),(2014,1951,'_elementor_edit_mode','builder'),(2015,1951,'_elementor_template_type','wp-post'),(2016,1951,'_elementor_version','2.7.5'),(2017,1951,'_elementor_data','[{\"id\":\"47bb744c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2f086637\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"47a6b403\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"49b299ef\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c1c6b50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"de9b0d5\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"6e1fddf1\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"2\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"139cd877\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"57ed8252\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":4,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"44102632\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18ff2ebd\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"44bbd9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"70b4b754\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"16c9a6ef\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\"},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\"},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\"}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"76825141\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"99c5dfb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"877d4da\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"271c0829\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a4a35e6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38ca345e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"39207a04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(2018,1951,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(2019,2625,'_thumbnail_id','1940'),(2020,2625,'_wp_page_template','default'),(2021,2625,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(2022,2625,'service_icon',''),(2023,2625,'service_except','We can provide you business with house counsel services  for a monthly fee.'),(2024,2625,'service_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(2025,2625,'slide_template','default'),(2026,2625,'_wp_old_date','2019-12-15'),(2027,2625,'_elementor_edit_mode','builder'),(2028,2625,'_elementor_template_type','wp-post'),(2029,2625,'_elementor_version','2.8.2'),(2030,2625,'_elementor_data','[{\"id\":\"f71bbd0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"77476d13\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"65f4c82a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"40e943bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1e9b79e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"69ebafa0\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"294cdfea\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"2\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"6663b56\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"12dbcad8\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":4,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"bb7c850\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"15cbe3c7\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"8d917c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"30043fc9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f4ca975\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\"},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\"},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\"}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"7a4f2513\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"324ad909\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"622a7bb0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"537521e4\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"34a6953a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3161829\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6f924728\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(2031,2627,'_thumbnail_id','1941'),(2032,2627,'_wp_page_template','default'),(2033,2627,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(2034,2627,'service_icon',''),(2035,2627,'service_except','We can provide you business with house counsel services for a monthly fee.'),(2036,2627,'service_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(2037,2627,'slide_template','default'),(2038,2627,'_wp_old_date','2019-12-15'),(2039,2627,'_elementor_edit_mode','builder'),(2040,2627,'_elementor_template_type','wp-post'),(2041,2627,'_elementor_version','2.8.2'),(2042,2627,'_elementor_data','[{\"id\":\"35d636a1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"397d9651\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e91ae1a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"4dc16a8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"365b03bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"44c0289d\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"79479e0d\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"2\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"2375eb14\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"37af1b7c\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":4,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"79ab90e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773c0bb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"46b12884\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1040e061\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"147e59da\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\"},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\"},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\"}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"445c6273\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2e58457c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"77e2a5fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bfe3ad7\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ff9f718\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4aee66fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"19e73df\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(2043,2629,'_thumbnail_id','2630'),(2044,2629,'_wp_page_template','default'),(2045,2629,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(2046,2629,'service_icon',''),(2047,2629,'service_except','We can provide you business with house counsel services for a monthly fee.'),(2048,2629,'service_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(2049,2629,'slide_template','default'),(2050,2629,'_wp_old_date','2019-12-15'),(2051,2629,'_elementor_edit_mode','builder'),(2052,2629,'_elementor_template_type','wp-post'),(2053,2629,'_elementor_version','2.8.2'),(2054,2629,'_elementor_data','[{\"id\":\"55acc219\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"73265210\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4259bce4\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"3e39d2d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8daaf8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"10865f37\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"7e967aa\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"2\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"39bd779e\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"4598c045\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":4,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"5e7e5ce2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"506c5415\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"74a48c80\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3f3065e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7b6ab138\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\"},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\"},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\"}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"4c45cd3d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4369a194\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9aa431f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62facce3\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c3daf37\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"42c94c61\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"463b5f19\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(2055,91,'_elementor_controls_usage','a:0:{}'),(2056,91,'_form','<div class=\"input-filled\">[text* your-name placeholder \"Your name*\"]</div>\n<div class=\"input-filled\">[email* your-email placeholder \"Your mail*\"]</div>\n<div class=\"input-filled\">[text* your-phone placeholder \"Phone*\"]</div>\n<div class=\"input-filled\">[select* your-subject \"Subject\" \"Success fullfill\" \"StartUp business\" \"Leadership work\" \"Business Growth\"]</div>\n<div class=\"input-filled\"><button type=\"submit\" class=\"wpcf7-submit btn btn-block\"><i class=\"fac fac-check-circle space-right\"></i>Consult today</button></div>'),(2057,91,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:26:\"Consultio \"[your-subject]\"\";s:6:\"sender\";s:36:\"Consultio <casethemes.net@gmail.com>\";s:9:\"recipient\";s:24:\"casethemes.net@gmail.com\";s:4:\"body\";s:179:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Consultio (https://demo.casethemes.net/consultio-tax)\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(2058,91,'_mail_2','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:26:\"Consultio \"[your-subject]\"\";s:6:\"sender\";s:36:\"Consultio <casethemes.net@gmail.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:179:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Consultio (https://demo.casethemes.net/consultio-tax)\";s:18:\"additional_headers\";s:34:\"Reply-To: casethemes.net@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(2059,91,'_messages','a:22:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(2060,91,'_additional_settings',''),(2061,91,'_locale','en_US'),(2062,1615,'_elementor_controls_usage','a:0:{}'),(2063,1615,'_form','<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\"><label>First name*</label>[text* your-name placeholder \"Type your first name\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\"><label>Last name*</label>[text* your-name placeholder \"Type your last name\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\"><label>Select a subject to get help*</label>[select* your-subject \"Select a subject\" \"Success fullfill\" \"StartUp business\" \"Leadership work\" \"Business Growth\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\"><label>Your mail address*</label>[email* your-email placeholder \"Type mail address\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-12\"><label>Message*</label>[textarea* your-message placeholder \"Type message...\"]</div>\n	<div class=\"input-filled col-12\"><button type=\"submit\" class=\"wpcf7-submit btn\"><i class=\"fac fac-cloud-upload-alt space-right\"></i>Submit now</button></div>\n</div>'),(2064,1615,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:23:\"Cstrio \"[your-subject]\"\";s:6:\"sender\";s:33:\"Cstrio <casethemes.net@gmail.com>\";s:9:\"recipient\";s:24:\"casethemes.net@gmail.com\";s:4:\"body\";s:176:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Cstrio (https://demo.casethemes.net/consultio-tax)\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(2065,1615,'_mail_2','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:23:\"Cstrio \"[your-subject]\"\";s:6:\"sender\";s:33:\"Cstrio <casethemes.net@gmail.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:176:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Cstrio (https://demo.casethemes.net/consultio-tax)\";s:18:\"additional_headers\";s:34:\"Reply-To: casethemes.net@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(2066,1615,'_messages','a:22:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(2067,1615,'_additional_settings',''),(2068,1615,'_locale','en_US'),(2069,1953,'_thumbnail_id','1944'),(2070,1953,'_wp_page_template','default'),(2071,1953,'service_icon',''),(2072,1953,'service_except','We can provide you business with house counsel services for a monthly fee.'),(2073,1953,'service_content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(2074,1953,'slide_template','default'),(2075,1953,'_elementor_edit_mode','builder'),(2076,1953,'_elementor_template_type','wp-post'),(2077,1953,'_elementor_version','2.7.5'),(2078,1953,'_elementor_data','[{\"id\":\"36febbf7\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7f25eb86\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"33def4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"71e22c48\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"43b64c95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"589ab06e\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"66ffdfe4\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"53925989\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"401742fe\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":4,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"692f264a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4f5f0c98\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"766bdbc0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2b8ec298\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"59219482\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\"},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\"},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\"}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"6d251b3a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6ff02f3d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7e3b8102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"148490ea\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c1682ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36e21b15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"599b6223\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(2079,1953,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(2080,2166,'_elementor_controls_usage','a:0:{}'),(2081,2166,'_form','<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\">[text* first-name placeholder \"First name *\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\">[text* last-name placeholder \"Last name *\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\">[email* your-email placeholder \"Your mail *\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\">[text* your-phone placeholder \"Phone number *\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\">[text* your-web-address placeholder \"Web address *\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\">[select* your-service \"Services\" \"Success fullfill\" \"StartUp Business\" \"Business Growth\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-12\">[textarea* your-message placeholder \"Message...\"]</div>\n	<div class=\"input-filled col-12\"><button type=\"submit\" class=\"wpcf7-submit btn btn-block\"><i class=\"fac fac-arrow-circle-right space-right\"></i>Send now</button></div>\n</div>'),(2082,2166,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:9:\"Consultio\";s:6:\"sender\";s:36:\"Consultio <casethemes.net@gmail.com>\";s:9:\"recipient\";s:24:\"casethemes.net@gmail.com\";s:4:\"body\";s:285:\"From: [first-name] [last-name] <[your-email]>\nName: [first-name] [last-name]\nPhone: [your-phone]\nService: [your-service]\nWeb Address: [your-web-address]\nMessage Body:\n[your-message]\n\n\n-- \nThis e-mail was sent from a contact form on Consultio (https://demo.casethemes.net/consultio-tax)\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(2083,2166,'_mail_2','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:9:\"Consultio\";s:6:\"sender\";s:36:\"Consultio <casethemes.net@gmail.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:285:\"From: [first-name] [last-name] <[your-email]>\nName: [first-name] [last-name]\nPhone: [your-phone]\nService: [your-service]\nWeb Address: [your-web-address]\nMessage Body:\n[your-message]\n\n\n-- \nThis e-mail was sent from a contact form on Consultio (https://demo.casethemes.net/consultio-tax)\";s:18:\"additional_headers\";s:34:\"Reply-To: casethemes.net@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(2084,2166,'_messages','a:22:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(2085,2166,'_additional_settings',''),(2086,2166,'_locale','en_US'),(2087,2758,'_wp_page_template','default'),(2088,2758,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(2089,2758,'service_icon',''),(2090,2758,'service_except','A business strategy is a set of competitive moves and actions that a business uses to attract customers.'),(2091,2758,'service_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(2092,2758,'slide_template','default'),(2093,2758,'icon_type','image'),(2094,2758,'service_icon_img','a:9:{s:3:\"url\";s:86:\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/icon-image-01.png\";s:2:\"id\";s:4:\"2760\";s:6:\"height\";s:2:\"75\";s:5:\"width\";s:2:\"89\";s:9:\"thumbnail\";s:86:\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/icon-image-01.png\";s:5:\"title\";s:13:\"icon-image-01\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(2095,2758,'_elementor_edit_mode','builder'),(2096,2758,'_elementor_template_type','wp-post'),(2097,2758,'_elementor_version','2.8.2'),(2098,2758,'_elementor_data','[{\"id\":\"fda4d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7171411a\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"48094d54\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"212c50e0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7fca8fd8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7684b940\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"653644b4\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"2\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"60b93e7b\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"620b5b6\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":4,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"6f7dc616\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53341e1\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"628eb846\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3e7b26f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3b87a2fb\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\"},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\"},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\"}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"4c809e51\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"c42fa4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2dc16628\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"18d036f1\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7cc187c3\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"46a46bb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"486bea6f\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(2099,2763,'_wp_page_template','default'),(2100,2763,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(2101,2763,'icon_type','image'),(2102,2763,'service_icon',''),(2103,2763,'service_icon_img','a:9:{s:3:\"url\";s:86:\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/icon-image-02.png\";s:2:\"id\";s:4:\"2761\";s:6:\"height\";s:2:\"75\";s:5:\"width\";s:2:\"85\";s:9:\"thumbnail\";s:86:\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/icon-image-02.png\";s:5:\"title\";s:13:\"icon-image-02\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(2104,2763,'service_except','A brand is a combination of the name, slogan and logo that is used to help identify a company or its products.'),(2105,2763,'service_content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(2106,2763,'slide_template','default'),(2107,2763,'_elementor_edit_mode','builder'),(2108,2763,'_elementor_template_type','wp-post'),(2109,2763,'_elementor_version','2.8.2'),(2110,2763,'_elementor_data','[{\"id\":\"279210fb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38371860\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"48c03f6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"7e78c493\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c487794\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e0c09f5\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"7bfe72ca\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"2\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"2a27c964\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"50a5cd08\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":4,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"48507be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"452d1654\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"52bd7027\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ee1221b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6e255830\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\"},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\"},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\"}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"1a16d9c8\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"19d25c41\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6903081\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bbd24fc\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3909a626\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"792b03cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"35685f5e\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(2111,2765,'_wp_page_template','default'),(2112,2765,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(2113,2765,'icon_type','image'),(2114,2765,'service_icon',''),(2115,2765,'service_icon_img','a:9:{s:3:\"url\";s:86:\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/icon-image-03.png\";s:2:\"id\";s:4:\"2762\";s:6:\"height\";s:2:\"75\";s:5:\"width\";s:2:\"75\";s:9:\"thumbnail\";s:86:\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/icon-image-03.png\";s:5:\"title\";s:13:\"icon-image-03\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(2116,2765,'service_except','Get a stunning web presence - it\'s easy and free with us. Mobile optimized. Free multilingual fonts. SEO wizard.'),(2117,2765,'service_content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(2118,2765,'slide_template','default'),(2119,2765,'_elementor_edit_mode','builder'),(2120,2765,'_elementor_template_type','wp-post'),(2121,2765,'_elementor_version','2.8.2'),(2122,2765,'_elementor_data','[{\"id\":\"2d00245b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5725f6e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"612758b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"78a3e845\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"408f4f0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d7a6e2c\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"56580629\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"2\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"7390e67\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"1df4cfb6\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":4,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"759630f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d6811fc\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"30d74315\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"714ee763\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"27e95c60\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\"},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\"},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\"}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"2b48eefc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"c707ab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4ce6f942\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2919937f\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1db12c81\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7de35661\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"513d173c\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(2123,2780,'_wp_page_template','default'),(2124,2780,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(2125,2780,'icon_type','image'),(2126,2780,'service_icon',''),(2127,2780,'service_icon_img','a:9:{s:3:\"url\";s:86:\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/icon-image-05.png\";s:2:\"id\";s:4:\"2782\";s:6:\"height\";s:2:\"75\";s:5:\"width\";s:2:\"72\";s:9:\"thumbnail\";s:86:\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/icon-image-05.png\";s:5:\"title\";s:13:\"icon-image-05\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(2128,2780,'service_except','A business strategy is a set of competitive moves and actions that a business uses to attract customers.'),(2129,2780,'service_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(2130,2780,'slide_template','default'),(2131,2780,'_wp_old_date','2019-12-17'),(2132,2780,'_elementor_edit_mode','builder'),(2133,2780,'_elementor_template_type','wp-post'),(2134,2780,'_elementor_version','2.8.2'),(2135,2780,'_elementor_data','[{\"id\":\"48577438\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"414b5bad\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"328d8af1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6d7e0d32\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1967a92d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"130dd196\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"51aec133\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"2\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"43251c08\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"218c5334\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":4,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"2e43c0b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d479f52\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"3f588eb0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2b066956\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a84ef34\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\"},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\"},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\"}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"2cf5cb63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3240037d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"780675a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4ae2cadc\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fdf6d90\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"29a177d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7eef1f37\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(2136,2785,'_wp_page_template','default'),(2137,2785,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(2138,2785,'icon_type','image'),(2139,2785,'service_icon',''),(2140,2785,'service_icon_img','a:9:{s:3:\"url\";s:86:\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/icon-image-04.png\";s:2:\"id\";s:4:\"2781\";s:6:\"height\";s:2:\"75\";s:5:\"width\";s:2:\"60\";s:9:\"thumbnail\";s:86:\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/icon-image-04.png\";s:5:\"title\";s:13:\"icon-image-04\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(2141,2785,'service_except','A brand is a combination of the name, slogan and logo that is used to help identify a company or its products.'),(2142,2785,'service_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(2143,2785,'slide_template','default'),(2144,2785,'_wp_old_date','2019-12-17'),(2145,2785,'_elementor_edit_mode','builder'),(2146,2785,'_elementor_template_type','wp-post'),(2147,2785,'_elementor_version','2.8.2'),(2148,2785,'_elementor_data','[{\"id\":\"cfefcd1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"75d80bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"78e06e2b\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"5068de68\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd1bc31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c0e58ec\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"51042e9b\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"2\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"2e2f8b99\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"76e7056c\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":4,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"5e0bb9dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"24c8bf5c\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"564903ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"174678d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4fe55c1e\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\"},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\"},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\"}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"7a2a9ed8\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"59332e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3b0933d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"60b77cb7\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6bc75f1d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7d99c984\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7cebd039\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(2149,2787,'_wp_page_template','default'),(2150,2787,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(2151,2787,'icon_type','image'),(2152,2787,'service_icon',''),(2153,2787,'service_icon_img','a:9:{s:3:\"url\";s:86:\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/icon-image-06.png\";s:2:\"id\";s:4:\"2783\";s:6:\"height\";s:2:\"75\";s:5:\"width\";s:2:\"90\";s:9:\"thumbnail\";s:86:\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/icon-image-06.png\";s:5:\"title\";s:13:\"icon-image-06\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(2154,2787,'service_except','Get a stunning web presence - it\'s easy and free with us. Mobile optimized. Free multilingual fonts. SEO wizard.'),(2155,2787,'service_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(2156,2787,'slide_template','default'),(2157,2787,'_wp_old_date','2019-12-17'),(2158,2787,'_elementor_edit_mode','builder'),(2159,2787,'_elementor_template_type','wp-post'),(2160,2787,'_elementor_version','2.8.2'),(2161,2787,'_elementor_data','[{\"id\":\"3b9efef2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6f25af76\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"47c0fc18\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6d7c7a67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"70958a62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1b4b5e2e\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"4dcb5986\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"2\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"2f82a69\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"15af819d\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":4,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"24736e09\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b9fcf12\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"bf640a8\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"28e82996\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"37246c7c\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\"},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\"},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\"}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"5473d274\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1cc70213\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"40ad0737\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8b8ab68\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"45a40537\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1d6d3e1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1720653d\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(2162,2840,'_elementor_controls_usage','a:0:{}'),(2163,2840,'_form','<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\"><label>First name<span>*</span></label>[text* your-name placeholder \"Type your first name\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\"><label>Last name<span>*</span></label>[text* your-name placeholder \"Type your last name\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\"><label>Select a subject to get help<span>*</span></label>[select* your-subject \"Select a subject\" \"Success fullfill\" \"StartUp business\" \"Leadership work\" \"Business Growth\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\"><label>Your mail address<span>*</span></label>[email* your-email placeholder \"Type mail address\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-12\"><label>Message<span>*</span></label>[textarea* your-message placeholder \"Type message...\"]</div>\n	<div class=\"input-filled col-12\"><button type=\"submit\" class=\"wpcf7-submit btn\"><i class=\"fac fac-cloud-upload-alt space-right\"></i>Submit now</button></div>\n</div>'),(2164,2840,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:23:\"Cstrio \"[your-subject]\"\";s:6:\"sender\";s:33:\"Cstrio <casethemes.net@gmail.com>\";s:9:\"recipient\";s:24:\"casethemes.net@gmail.com\";s:4:\"body\";s:176:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Cstrio (https://demo.casethemes.net/consultio-tax)\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(2165,2840,'_mail_2','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:23:\"Cstrio \"[your-subject]\"\";s:6:\"sender\";s:33:\"Cstrio <casethemes.net@gmail.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:176:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Cstrio (https://demo.casethemes.net/consultio-tax)\";s:18:\"additional_headers\";s:34:\"Reply-To: casethemes.net@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(2166,2840,'_messages','a:22:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(2167,2840,'_additional_settings',''),(2168,2840,'_locale','en_US'),(2169,3167,'_elementor_controls_usage','a:0:{}'),(2170,3167,'_form','<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\"><label><i class=\"fac fac-user\"></i>First name *</label>[text* your-name placeholder \"Jhon\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\"><label><i class=\"fac fac-user\"></i>Last name *</label>[text* your-name placeholder \"Doe\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\"><label><i class=\"fac fac-envelope\"></i>Your mail *</label>[email* your-email placeholder \"info@gmail.com\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\"><label><i class=\"fac fac-phone-alt\"></i>Phone number *</label>[text* your-phone placeholder \"Your number\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-12\"><label><i class=\"fac fac-pen\"></i>Message...</label>[textarea* your-message placeholder \"Type your message...\"]</div>\n	<div class=\"input-filled col-12\"><button type=\"submit\" class=\"wpcf7-submit btn btn-block\"><i class=\"fac fac-arrow-circle-right space-right\"></i>Make an appionment</button></div>\n</div>'),(2171,3167,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:23:\"Cstrio \"[your-subject]\"\";s:6:\"sender\";s:33:\"Cstrio <casethemes.net@gmail.com>\";s:9:\"recipient\";s:24:\"casethemes.net@gmail.com\";s:4:\"body\";s:176:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Cstrio (https://demo.casethemes.net/consultio-tax)\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(2172,3167,'_mail_2','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:23:\"Cstrio \"[your-subject]\"\";s:6:\"sender\";s:33:\"Cstrio <casethemes.net@gmail.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:176:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Cstrio (https://demo.casethemes.net/consultio-tax)\";s:18:\"additional_headers\";s:34:\"Reply-To: casethemes.net@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(2173,3167,'_messages','a:22:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(2174,3167,'_additional_settings',''),(2175,3167,'_locale','en_US'),(2176,3823,'_elementor_controls_usage','a:0:{}'),(2177,3823,'_form','<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\"><label>Name (required)</label>[text* your-name placeholder \"Your name*\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\"><label>Email adress (required)</label>[email* your-email placeholder \"Mail*\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\"><label>Phone (optional)</label>[text* your-name placeholder \"Phone*\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\"><label>Subject (required)</label>[select* your-subject \"Subject*\" \"Success fullfill\" \"StartUp business\" \"Leadership work\" \"Business Growth\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-12\"><label>Your message</label>[textarea* your-message placeholder \"Type message*\"]</div>\n	<div class=\"input-filled col-12\"><button type=\"submit\" class=\"wpcf7-submit btn\"><i class=\"fac fac-check-circle space-right\"></i>Send message</button></div>\n</div>'),(2178,3823,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:23:\"Cstrio \"[your-subject]\"\";s:6:\"sender\";s:33:\"Cstrio <casethemes.net@gmail.com>\";s:9:\"recipient\";s:24:\"casethemes.net@gmail.com\";s:4:\"body\";s:176:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Cstrio (https://demo.casethemes.net/consultio-tax)\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(2179,3823,'_mail_2','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:23:\"Cstrio \"[your-subject]\"\";s:6:\"sender\";s:33:\"Cstrio <casethemes.net@gmail.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:176:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Cstrio (https://demo.casethemes.net/consultio-tax)\";s:18:\"additional_headers\";s:34:\"Reply-To: casethemes.net@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(2180,3823,'_messages','a:22:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(2181,3823,'_additional_settings',''),(2182,3823,'_locale','en_US'),(2183,3851,'_elementor_controls_usage','a:0:{}'),(2184,3851,'_form','<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\">[text* first-name placeholder \"First name *\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\">[text* last-name placeholder \"Last name *\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\">[email* your-email placeholder \"Your mail *\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\">[text* your-phone placeholder \"Phone number *\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-12\">[textarea* your-message placeholder \"Message...\"]</div>\n	<div class=\"input-filled col-12\"><button type=\"submit\" class=\"wpcf7-submit btn btn-block\"><i class=\"fac fac-arrow-circle-right space-right\"></i>Send now</button></div>\n</div>'),(2185,3851,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:9:\"Consultio\";s:6:\"sender\";s:36:\"Consultio <casethemes.net@gmail.com>\";s:9:\"recipient\";s:24:\"casethemes.net@gmail.com\";s:4:\"body\";s:285:\"From: [first-name] [last-name] <[your-email]>\nName: [first-name] [last-name]\nPhone: [your-phone]\nService: [your-service]\nWeb Address: [your-web-address]\nMessage Body:\n[your-message]\n\n\n-- \nThis e-mail was sent from a contact form on Consultio (https://demo.casethemes.net/consultio-tax)\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(2186,3851,'_mail_2','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:9:\"Consultio\";s:6:\"sender\";s:36:\"Consultio <casethemes.net@gmail.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:285:\"From: [first-name] [last-name] <[your-email]>\nName: [first-name] [last-name]\nPhone: [your-phone]\nService: [your-service]\nWeb Address: [your-web-address]\nMessage Body:\n[your-message]\n\n\n-- \nThis e-mail was sent from a contact form on Consultio (https://demo.casethemes.net/consultio-tax)\";s:18:\"additional_headers\";s:34:\"Reply-To: casethemes.net@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(2187,3851,'_messages','a:22:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(2188,3851,'_additional_settings',''),(2189,3851,'_locale','en_US'),(2190,3985,'_menu_item_type','post_type'),(2191,3985,'_menu_item_menu_item_parent','3968'),(2192,3985,'_menu_item_object_id','32'),(2193,3985,'_menu_item_object','page'),(2194,3985,'_menu_item_target',''),(2195,3985,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2196,3985,'_menu_item_xfn',''),(2197,3985,'_menu_item_url',''),(2198,3985,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2199,3985,'_menu_item_ct_icon',''),(2200,3986,'_menu_item_type','post_type'),(2201,3986,'_menu_item_menu_item_parent','3968'),(2202,3986,'_menu_item_object_id','30'),(2203,3986,'_menu_item_object','page'),(2204,3986,'_menu_item_target',''),(2205,3986,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2206,3986,'_menu_item_xfn',''),(2207,3986,'_menu_item_url',''),(2208,3986,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2209,3986,'_menu_item_ct_icon',''),(2210,3987,'_menu_item_type','post_type'),(2211,3987,'_menu_item_menu_item_parent','3968'),(2212,3987,'_menu_item_object_id','28'),(2213,3987,'_menu_item_object','page'),(2214,3987,'_menu_item_target',''),(2215,3987,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2216,3987,'_menu_item_xfn',''),(2217,3987,'_menu_item_url',''),(2218,3987,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2219,3987,'_menu_item_ct_icon',''),(2220,3988,'_menu_item_type','post_type'),(2221,3988,'_menu_item_menu_item_parent','3968'),(2222,3988,'_menu_item_object_id','26'),(2223,3988,'_menu_item_object','page'),(2224,3988,'_menu_item_target',''),(2225,3988,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2226,3988,'_menu_item_xfn',''),(2227,3988,'_menu_item_url',''),(2228,3988,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2229,3988,'_menu_item_ct_icon',''),(2230,3989,'_menu_item_type','post_type'),(2231,3989,'_menu_item_menu_item_parent','3968'),(2232,3989,'_menu_item_object_id','24'),(2233,3989,'_menu_item_object','page'),(2234,3989,'_menu_item_target',''),(2235,3989,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2236,3989,'_menu_item_xfn',''),(2237,3989,'_menu_item_url',''),(2238,3989,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2239,3989,'_menu_item_ct_icon',''),(2240,3990,'_menu_item_type','post_type'),(2241,3990,'_menu_item_menu_item_parent','0'),(2242,3990,'_menu_item_object_id','28'),(2243,3990,'_menu_item_object','page'),(2244,3990,'_menu_item_target',''),(2245,3990,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2246,3990,'_menu_item_xfn',''),(2247,3990,'_menu_item_url',''),(2248,3990,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2249,3990,'_menu_item_ct_icon',''),(2250,3991,'_menu_item_type','post_type'),(2251,3991,'_menu_item_menu_item_parent','0'),(2252,3991,'_menu_item_object_id','30'),(2253,3991,'_menu_item_object','page'),(2254,3991,'_menu_item_target',''),(2255,3991,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2256,3991,'_menu_item_xfn',''),(2257,3991,'_menu_item_url',''),(2258,3991,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2259,3991,'_menu_item_ct_icon',''),(2260,3992,'_menu_item_type','post_type'),(2261,3992,'_menu_item_menu_item_parent','0'),(2262,3992,'_menu_item_object_id','26'),(2263,3992,'_menu_item_object','page'),(2264,3992,'_menu_item_target',''),(2265,3992,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2266,3992,'_menu_item_xfn',''),(2267,3992,'_menu_item_url',''),(2268,3992,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2269,3992,'_menu_item_ct_icon',''),(2270,3993,'_menu_item_type','post_type'),(2271,3993,'_menu_item_menu_item_parent','0'),(2272,3993,'_menu_item_object_id','24'),(2273,3993,'_menu_item_object','page'),(2274,3993,'_menu_item_target',''),(2275,3993,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2276,3993,'_menu_item_xfn',''),(2277,3993,'_menu_item_url',''),(2278,3993,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2279,3993,'_menu_item_ct_icon',''),(2280,3994,'_menu_item_type','post_type'),(2281,3994,'_menu_item_menu_item_parent','0'),(2282,3994,'_menu_item_object_id','132'),(2283,3994,'_menu_item_object','page'),(2284,3994,'_menu_item_target',''),(2285,3994,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2286,3994,'_menu_item_xfn',''),(2287,3994,'_menu_item_url',''),(2288,3994,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2289,3994,'_menu_item_ct_icon',''),(2290,3994,'_menu_item_ct_megaprofile','0'),(2291,3994,'_menu_item_ct_onepage','no-one-page'),(2292,3994,'_menu_item_ct_onepage_offset',''),(2293,3995,'_menu_item_type','post_type'),(2294,3995,'_menu_item_menu_item_parent','3994'),(2295,3995,'_menu_item_object_id','132'),(2296,3995,'_menu_item_object','page'),(2297,3995,'_menu_item_target',''),(2298,3995,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2299,3995,'_menu_item_xfn',''),(2300,3995,'_menu_item_url',''),(2301,3995,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2302,3995,'_menu_item_ct_icon',''),(2303,3996,'_menu_item_type','post_type'),(2304,3996,'_menu_item_menu_item_parent','3994'),(2305,3996,'_menu_item_object_id','129'),(2306,3996,'_menu_item_object','page'),(2307,3996,'_menu_item_target',''),(2308,3996,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2309,3996,'_menu_item_xfn',''),(2310,3996,'_menu_item_url',''),(2311,3996,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2312,3996,'_menu_item_ct_icon',''),(2313,3997,'_menu_item_type','post_type'),(2314,3997,'_menu_item_menu_item_parent','3994'),(2315,3997,'_menu_item_object_id','123'),(2316,3997,'_menu_item_object','page'),(2317,3997,'_menu_item_target',''),(2318,3997,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2319,3997,'_menu_item_xfn',''),(2320,3997,'_menu_item_url',''),(2321,3997,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2322,3997,'_menu_item_ct_icon',''),(2323,3998,'_menu_item_type','post_type'),(2324,3998,'_menu_item_menu_item_parent','3996'),(2325,3998,'_menu_item_object_id','129'),(2326,3998,'_menu_item_object','page'),(2327,3998,'_menu_item_target',''),(2328,3998,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2329,3998,'_menu_item_xfn',''),(2330,3998,'_menu_item_url',''),(2331,3998,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2332,3998,'_menu_item_ct_icon',''),(2333,3999,'_menu_item_type','post_type'),(2334,3999,'_menu_item_menu_item_parent','3996'),(2335,3999,'_menu_item_object_id','127'),(2336,3999,'_menu_item_object','page'),(2337,3999,'_menu_item_target',''),(2338,3999,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2339,3999,'_menu_item_xfn',''),(2340,3999,'_menu_item_url',''),(2341,3999,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2342,3999,'_menu_item_ct_icon',''),(2343,4000,'_menu_item_type','post_type'),(2344,4000,'_menu_item_menu_item_parent','3996'),(2345,4000,'_menu_item_object_id','125'),(2346,4000,'_menu_item_object','page'),(2347,4000,'_menu_item_target',''),(2348,4000,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2349,4000,'_menu_item_xfn',''),(2350,4000,'_menu_item_url',''),(2351,4000,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2352,4000,'_menu_item_ct_icon',''),(2353,4001,'_menu_item_type','post_type'),(2354,4001,'_menu_item_menu_item_parent','3995'),(2355,4001,'_menu_item_object_id','136'),(2356,4001,'_menu_item_object','page'),(2357,4001,'_menu_item_target',''),(2358,4001,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2359,4001,'_menu_item_xfn',''),(2360,4001,'_menu_item_url',''),(2361,4001,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2362,4001,'_menu_item_ct_icon',''),(2363,4002,'_menu_item_type','post_type'),(2364,4002,'_menu_item_menu_item_parent','3995'),(2365,4002,'_menu_item_object_id','134'),(2366,4002,'_menu_item_object','page'),(2367,4002,'_menu_item_target',''),(2368,4002,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2369,4002,'_menu_item_xfn',''),(2370,4002,'_menu_item_url',''),(2371,4002,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2372,4002,'_menu_item_ct_icon',''),(2373,4003,'_menu_item_type','post_type'),(2374,4003,'_menu_item_menu_item_parent','3995'),(2375,4003,'_menu_item_object_id','132'),(2376,4003,'_menu_item_object','page'),(2377,4003,'_menu_item_target',''),(2378,4003,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2379,4003,'_menu_item_xfn',''),(2380,4003,'_menu_item_url',''),(2381,4003,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2382,4003,'_menu_item_ct_icon',''),(2383,4004,'_menu_item_type','post_type'),(2384,4004,'_menu_item_menu_item_parent','3994'),(2385,4004,'_menu_item_object_id','161'),(2386,4004,'_menu_item_object','post'),(2387,4004,'_menu_item_target',''),(2388,4004,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2389,4004,'_menu_item_xfn',''),(2390,4004,'_menu_item_url',''),(2391,4004,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2392,4004,'_menu_item_ct_icon',''),(2393,4005,'_menu_item_type','post_type'),(2394,4005,'_menu_item_menu_item_parent','4004'),(2395,4005,'_menu_item_object_id','161'),(2396,4005,'_menu_item_object','post'),(2397,4005,'_menu_item_target',''),(2398,4005,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2399,4005,'_menu_item_xfn',''),(2400,4005,'_menu_item_url',''),(2401,4005,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2402,4005,'_menu_item_ct_icon',''),(2403,4006,'_menu_item_type','post_type'),(2404,4006,'_menu_item_menu_item_parent','4004'),(2405,4006,'_menu_item_object_id','164'),(2406,4006,'_menu_item_object','post'),(2407,4006,'_menu_item_target',''),(2408,4006,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2409,4006,'_menu_item_xfn',''),(2410,4006,'_menu_item_url',''),(2411,4006,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2412,4006,'_menu_item_ct_icon',''),(2413,4007,'_menu_item_type','post_type'),(2414,4007,'_menu_item_menu_item_parent','4004'),(2415,4007,'_menu_item_object_id','159'),(2416,4007,'_menu_item_object','post'),(2417,4007,'_menu_item_target',''),(2418,4007,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2419,4007,'_menu_item_xfn',''),(2420,4007,'_menu_item_url',''),(2421,4007,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2422,4007,'_menu_item_ct_icon',''),(2423,4008,'_menu_item_type','post_type'),(2424,4008,'_menu_item_menu_item_parent','3968'),(2425,4008,'_menu_item_object_id','362'),(2426,4008,'_menu_item_object','page'),(2427,4008,'_menu_item_target',''),(2428,4008,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2429,4008,'_menu_item_xfn',''),(2430,4008,'_menu_item_url',''),(2431,4008,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2432,4008,'_menu_item_ct_icon',''),(2433,4009,'_menu_item_type','post_type'),(2434,4009,'_menu_item_menu_item_parent','3968'),(2435,4009,'_menu_item_object_id','367'),(2436,4009,'_menu_item_object','page'),(2437,4009,'_menu_item_target',''),(2438,4009,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2439,4009,'_menu_item_xfn',''),(2440,4009,'_menu_item_url',''),(2441,4009,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2442,4009,'_menu_item_ct_icon',''),(2443,4010,'_menu_item_type','post_type'),(2444,4010,'_menu_item_menu_item_parent','4012'),(2445,4010,'_menu_item_object_id','409'),(2446,4010,'_menu_item_object','page'),(2447,4010,'_menu_item_target',''),(2448,4010,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2449,4010,'_menu_item_xfn',''),(2450,4010,'_menu_item_url',''),(2451,4010,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2452,4010,'_menu_item_ct_icon',''),(2453,4011,'_menu_item_type','post_type'),(2454,4011,'_menu_item_menu_item_parent','4012'),(2455,4011,'_menu_item_object_id','407'),(2456,4011,'_menu_item_object','page'),(2457,4011,'_menu_item_target',''),(2458,4011,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2459,4011,'_menu_item_xfn',''),(2460,4011,'_menu_item_url',''),(2461,4011,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2462,4011,'_menu_item_ct_icon',''),(2463,4012,'_menu_item_type','post_type'),(2464,4012,'_menu_item_menu_item_parent','0'),(2465,4012,'_menu_item_object_id','407'),(2466,4012,'_menu_item_object','page'),(2467,4012,'_menu_item_target',''),(2468,4012,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2469,4012,'_menu_item_xfn',''),(2470,4012,'_menu_item_url',''),(2471,4012,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2472,4012,'_menu_item_ct_icon',''),(2473,4012,'_menu_item_ct_megaprofile','0'),(2474,4012,'_menu_item_ct_onepage','no-one-page'),(2475,4012,'_menu_item_ct_onepage_offset',''),(2476,4013,'_menu_item_type','post_type'),(2477,4013,'_menu_item_menu_item_parent','4015'),(2478,4013,'_menu_item_object_id','417'),(2479,4013,'_menu_item_object','page'),(2480,4013,'_menu_item_target',''),(2481,4013,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2482,4013,'_menu_item_xfn',''),(2483,4013,'_menu_item_url',''),(2484,4013,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2485,4013,'_menu_item_ct_icon',''),(2486,4014,'_menu_item_type','post_type'),(2487,4014,'_menu_item_menu_item_parent','4015'),(2488,4014,'_menu_item_object_id','415'),(2489,4014,'_menu_item_object','page'),(2490,4014,'_menu_item_target',''),(2491,4014,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2492,4014,'_menu_item_xfn',''),(2493,4014,'_menu_item_url',''),(2494,4014,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2495,4014,'_menu_item_ct_icon',''),(2496,4015,'_menu_item_type','post_type'),(2497,4015,'_menu_item_menu_item_parent','0'),(2498,4015,'_menu_item_object_id','415'),(2499,4015,'_menu_item_object','page'),(2500,4015,'_menu_item_target',''),(2501,4015,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2502,4015,'_menu_item_xfn',''),(2503,4015,'_menu_item_url',''),(2504,4015,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2505,4015,'_menu_item_ct_icon',''),(2506,4015,'_menu_item_ct_megaprofile','0'),(2507,4015,'_menu_item_ct_onepage','no-one-page'),(2508,4015,'_menu_item_ct_onepage_offset',''),(2509,4016,'_menu_item_type','post_type'),(2510,4016,'_menu_item_menu_item_parent','4012'),(2511,4016,'_menu_item_object_id','448'),(2512,4016,'_menu_item_object','service'),(2513,4016,'_menu_item_target',''),(2514,4016,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2515,4016,'_menu_item_xfn',''),(2516,4016,'_menu_item_url',''),(2517,4016,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2518,4016,'_menu_item_ct_icon',''),(2519,4017,'_menu_item_type','post_type'),(2520,4017,'_menu_item_menu_item_parent','0'),(2521,4017,'_menu_item_object_id','407'),(2522,4017,'_menu_item_object','page'),(2523,4017,'_menu_item_target',''),(2524,4017,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2525,4017,'_menu_item_xfn',''),(2526,4017,'_menu_item_url',''),(2527,4017,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2528,4017,'_menu_item_ct_icon',''),(2529,4018,'_menu_item_type','post_type'),(2530,4018,'_menu_item_menu_item_parent','0'),(2531,4018,'_menu_item_object_id','367'),(2532,4018,'_menu_item_object','page'),(2533,4018,'_menu_item_target',''),(2534,4018,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2535,4018,'_menu_item_xfn',''),(2536,4018,'_menu_item_url',''),(2537,4018,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2538,4018,'_menu_item_ct_icon',''),(2539,4019,'_menu_item_type','post_type'),(2540,4019,'_menu_item_menu_item_parent','0'),(2541,4019,'_menu_item_object_id','129'),(2542,4019,'_menu_item_object','page'),(2543,4019,'_menu_item_target',''),(2544,4019,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2545,4019,'_menu_item_xfn',''),(2546,4019,'_menu_item_url',''),(2547,4019,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2548,4019,'_menu_item_ct_icon',''),(2549,4020,'_menu_item_type','post_type'),(2550,4020,'_menu_item_menu_item_parent','0'),(2551,4020,'_menu_item_object_id','415'),(2552,4020,'_menu_item_object','page'),(2553,4020,'_menu_item_target',''),(2554,4020,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2555,4020,'_menu_item_xfn',''),(2556,4020,'_menu_item_url',''),(2557,4020,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2558,4020,'_menu_item_ct_icon',''),(2559,4021,'_menu_item_type','post_type'),(2560,4021,'_menu_item_menu_item_parent','4015'),(2561,4021,'_menu_item_object_id','579'),(2562,4021,'_menu_item_object','portfolio'),(2563,4021,'_menu_item_target',''),(2564,4021,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2565,4021,'_menu_item_xfn',''),(2566,4021,'_menu_item_url',''),(2567,4021,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2568,4021,'_menu_item_ct_icon',''),(2569,4022,'_menu_item_type','post_type'),(2570,4022,'_menu_item_menu_item_parent','4024'),(2571,4022,'_menu_item_object_id','749'),(2572,4022,'_menu_item_object','page'),(2573,4022,'_menu_item_target',''),(2574,4022,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2575,4022,'_menu_item_xfn',''),(2576,4022,'_menu_item_url',''),(2577,4022,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2578,4022,'_menu_item_ct_icon',''),(2579,4023,'_menu_item_type','post_type'),(2580,4023,'_menu_item_menu_item_parent','4024'),(2581,4023,'_menu_item_object_id','748'),(2582,4023,'_menu_item_object','page'),(2583,4023,'_menu_item_target',''),(2584,4023,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2585,4023,'_menu_item_xfn',''),(2586,4023,'_menu_item_url',''),(2587,4023,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2588,4023,'_menu_item_ct_icon',''),(2589,4024,'_menu_item_type','post_type'),(2590,4024,'_menu_item_menu_item_parent','3968'),(2591,4024,'_menu_item_object_id','748'),(2592,4024,'_menu_item_object','page'),(2593,4024,'_menu_item_target',''),(2594,4024,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2595,4024,'_menu_item_xfn',''),(2596,4024,'_menu_item_url',''),(2597,4024,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2598,4024,'_menu_item_ct_icon',''),(2599,4024,'_menu_item_ct_megaprofile','0'),(2600,4024,'_menu_item_ct_onepage','no-one-page'),(2601,4024,'_menu_item_ct_onepage_offset',''),(2602,4025,'_menu_item_type','post_type'),(2603,4025,'_menu_item_menu_item_parent','4024'),(2604,4025,'_menu_item_object_id','783'),(2605,4025,'_menu_item_object','page'),(2606,4025,'_menu_item_target',''),(2607,4025,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2608,4025,'_menu_item_xfn',''),(2609,4025,'_menu_item_url',''),(2610,4025,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2611,4025,'_menu_item_ct_icon',''),(2612,4026,'_menu_item_type','post_type'),(2613,4026,'_menu_item_menu_item_parent','4024'),(2614,4026,'_menu_item_object_id','778'),(2615,4026,'_menu_item_object','product'),(2616,4026,'_menu_item_target',''),(2617,4026,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2618,4026,'_menu_item_xfn',''),(2619,4026,'_menu_item_url',''),(2620,4026,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2621,4026,'_menu_item_ct_icon',''),(2622,4027,'_menu_item_type','post_type'),(2623,4027,'_menu_item_menu_item_parent','0'),(2624,4027,'_menu_item_object_id','651'),(2625,4027,'_menu_item_object','service'),(2626,4027,'_menu_item_target',''),(2627,4027,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2628,4027,'_menu_item_xfn',''),(2629,4027,'_menu_item_url',''),(2630,4027,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2631,4027,'_menu_item_ct_icon',''),(2632,4028,'_menu_item_type','post_type'),(2633,4028,'_menu_item_menu_item_parent','0'),(2634,4028,'_menu_item_object_id','649'),(2635,4028,'_menu_item_object','service'),(2636,4028,'_menu_item_target',''),(2637,4028,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2638,4028,'_menu_item_xfn',''),(2639,4028,'_menu_item_url',''),(2640,4028,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2641,4028,'_menu_item_ct_icon',''),(2642,4029,'_menu_item_type','post_type'),(2643,4029,'_menu_item_menu_item_parent','0'),(2644,4029,'_menu_item_object_id','645'),(2645,4029,'_menu_item_object','service'),(2646,4029,'_menu_item_target',''),(2647,4029,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2648,4029,'_menu_item_xfn',''),(2649,4029,'_menu_item_url',''),(2650,4029,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2651,4029,'_menu_item_ct_icon',''),(2652,4030,'_menu_item_type','post_type'),(2653,4030,'_menu_item_menu_item_parent','0'),(2654,4030,'_menu_item_object_id','448'),(2655,4030,'_menu_item_object','service'),(2656,4030,'_menu_item_target',''),(2657,4030,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2658,4030,'_menu_item_xfn',''),(2659,4030,'_menu_item_url',''),(2660,4030,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2661,4030,'_menu_item_ct_icon',''),(2662,4031,'_menu_item_type','post_type'),(2663,4031,'_menu_item_menu_item_parent','0'),(2664,4031,'_menu_item_object_id','446'),(2665,4031,'_menu_item_object','service'),(2666,4031,'_menu_item_target',''),(2667,4031,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2668,4031,'_menu_item_xfn',''),(2669,4031,'_menu_item_url',''),(2670,4031,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2671,4031,'_menu_item_ct_icon',''),(2672,4032,'_menu_item_type','post_type'),(2673,4032,'_menu_item_menu_item_parent','3968'),(2674,4032,'_menu_item_object_id','1972'),(2675,4032,'_menu_item_object','page'),(2676,4032,'_menu_item_target',''),(2677,4032,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2678,4032,'_menu_item_xfn',''),(2679,4032,'_menu_item_url',''),(2680,4032,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2681,4032,'_menu_item_ct_icon',''),(2682,4033,'_menu_item_type','post_type'),(2683,4033,'_menu_item_menu_item_parent','0'),(2684,4033,'_menu_item_object_id','407'),(2685,4033,'_menu_item_object','page'),(2686,4033,'_menu_item_target',''),(2687,4033,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2688,4033,'_menu_item_xfn',''),(2689,4033,'_menu_item_url',''),(2690,4033,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2691,4033,'_menu_item_ct_icon',''),(2692,4033,'_menu_item_ct_megaprofile','0'),(2693,4033,'_menu_item_ct_onepage','no-one-page'),(2694,4033,'_menu_item_ct_onepage_offset',''),(2695,4034,'_menu_item_type','post_type'),(2696,4034,'_menu_item_menu_item_parent','4033'),(2697,4034,'_menu_item_object_id','409'),(2698,4034,'_menu_item_object','page'),(2699,4034,'_menu_item_target',''),(2700,4034,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2701,4034,'_menu_item_xfn',''),(2702,4034,'_menu_item_url',''),(2703,4034,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2704,4034,'_menu_item_ct_icon',''),(2705,4035,'_menu_item_type','post_type'),(2706,4035,'_menu_item_menu_item_parent','4033'),(2707,4035,'_menu_item_object_id','448'),(2708,4035,'_menu_item_object','service'),(2709,4035,'_menu_item_target',''),(2710,4035,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2711,4035,'_menu_item_xfn',''),(2712,4035,'_menu_item_url',''),(2713,4035,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2714,4035,'_menu_item_ct_icon',''),(2715,4036,'_menu_item_type','post_type'),(2716,4036,'_menu_item_menu_item_parent','4033'),(2717,4036,'_menu_item_object_id','407'),(2718,4036,'_menu_item_object','page'),(2719,4036,'_menu_item_target',''),(2720,4036,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2721,4036,'_menu_item_xfn',''),(2722,4036,'_menu_item_url',''),(2723,4036,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2724,4036,'_menu_item_ct_icon',''),(2725,4037,'_menu_item_type','post_type'),(2726,4037,'_menu_item_menu_item_parent','3971'),(2727,4037,'_menu_item_object_id','26'),(2728,4037,'_menu_item_object','page'),(2729,4037,'_menu_item_target',''),(2730,4037,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2731,4037,'_menu_item_xfn',''),(2732,4037,'_menu_item_url',''),(2733,4037,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2734,4037,'_menu_item_ct_icon',''),(2735,4038,'_menu_item_type','post_type'),(2736,4038,'_menu_item_menu_item_parent','3971'),(2737,4038,'_menu_item_object_id','30'),(2738,4038,'_menu_item_object','page'),(2739,4038,'_menu_item_target',''),(2740,4038,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2741,4038,'_menu_item_xfn',''),(2742,4038,'_menu_item_url',''),(2743,4038,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2744,4038,'_menu_item_ct_icon',''),(2745,4039,'_menu_item_type','post_type'),(2746,4039,'_menu_item_menu_item_parent','3971'),(2747,4039,'_menu_item_object_id','32'),(2748,4039,'_menu_item_object','page'),(2749,4039,'_menu_item_target',''),(2750,4039,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2751,4039,'_menu_item_xfn',''),(2752,4039,'_menu_item_url',''),(2753,4039,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2754,4039,'_menu_item_ct_icon',''),(2755,4040,'_menu_item_type','post_type'),(2756,4040,'_menu_item_menu_item_parent','3971'),(2757,4040,'_menu_item_object_id','28'),(2758,4040,'_menu_item_object','page'),(2759,4040,'_menu_item_target',''),(2760,4040,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2761,4040,'_menu_item_xfn',''),(2762,4040,'_menu_item_url',''),(2763,4040,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2764,4040,'_menu_item_ct_icon',''),(2765,4041,'_menu_item_type','post_type'),(2766,4041,'_menu_item_menu_item_parent','3971'),(2767,4041,'_menu_item_object_id','362'),(2768,4041,'_menu_item_object','page'),(2769,4041,'_menu_item_target',''),(2770,4041,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2771,4041,'_menu_item_xfn',''),(2772,4041,'_menu_item_url',''),(2773,4041,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2774,4041,'_menu_item_ct_icon',''),(2775,4042,'_menu_item_type','post_type'),(2776,4042,'_menu_item_menu_item_parent','3971'),(2777,4042,'_menu_item_object_id','367'),(2778,4042,'_menu_item_object','page'),(2779,4042,'_menu_item_target',''),(2780,4042,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2781,4042,'_menu_item_xfn',''),(2782,4042,'_menu_item_url',''),(2783,4042,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2784,4042,'_menu_item_ct_icon',''),(2785,4043,'_menu_item_type','post_type'),(2786,4043,'_menu_item_menu_item_parent','3971'),(2787,4043,'_menu_item_object_id','1972'),(2788,4043,'_menu_item_object','page'),(2789,4043,'_menu_item_target',''),(2790,4043,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2791,4043,'_menu_item_xfn',''),(2792,4043,'_menu_item_url',''),(2793,4043,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2794,4043,'_menu_item_ct_icon',''),(2795,4044,'_menu_item_type','post_type'),(2796,4044,'_menu_item_menu_item_parent','0'),(2797,4044,'_menu_item_object_id','132'),(2798,4044,'_menu_item_object','page'),(2799,4044,'_menu_item_target',''),(2800,4044,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2801,4044,'_menu_item_xfn',''),(2802,4044,'_menu_item_url',''),(2803,4044,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2804,4044,'_menu_item_ct_icon',''),(2805,4044,'_menu_item_ct_megaprofile','0'),(2806,4044,'_menu_item_ct_onepage','no-one-page'),(2807,4044,'_menu_item_ct_onepage_offset',''),(2808,4045,'_menu_item_type','post_type'),(2809,4045,'_menu_item_menu_item_parent','4044'),(2810,4045,'_menu_item_object_id','132'),(2811,4045,'_menu_item_object','page'),(2812,4045,'_menu_item_target',''),(2813,4045,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2814,4045,'_menu_item_xfn',''),(2815,4045,'_menu_item_url',''),(2816,4045,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2817,4045,'_menu_item_ct_icon',''),(2818,4046,'_menu_item_type','post_type'),(2819,4046,'_menu_item_menu_item_parent','4044'),(2820,4046,'_menu_item_object_id','123'),(2821,4046,'_menu_item_object','page'),(2822,4046,'_menu_item_target',''),(2823,4046,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2824,4046,'_menu_item_xfn',''),(2825,4046,'_menu_item_url',''),(2826,4046,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2827,4046,'_menu_item_ct_icon',''),(2828,4047,'_menu_item_type','post_type'),(2829,4047,'_menu_item_menu_item_parent','4049'),(2830,4047,'_menu_item_object_id','125'),(2831,4047,'_menu_item_object','page'),(2832,4047,'_menu_item_target',''),(2833,4047,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2834,4047,'_menu_item_xfn',''),(2835,4047,'_menu_item_url',''),(2836,4047,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2837,4047,'_menu_item_ct_icon',''),(2838,4048,'_menu_item_type','post_type'),(2839,4048,'_menu_item_menu_item_parent','4049'),(2840,4048,'_menu_item_object_id','127'),(2841,4048,'_menu_item_object','page'),(2842,4048,'_menu_item_target',''),(2843,4048,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2844,4048,'_menu_item_xfn',''),(2845,4048,'_menu_item_url',''),(2846,4048,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2847,4048,'_menu_item_ct_icon',''),(2848,4049,'_menu_item_type','post_type'),(2849,4049,'_menu_item_menu_item_parent','4044'),(2850,4049,'_menu_item_object_id','129'),(2851,4049,'_menu_item_object','page'),(2852,4049,'_menu_item_target',''),(2853,4049,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2854,4049,'_menu_item_xfn',''),(2855,4049,'_menu_item_url',''),(2856,4049,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2857,4049,'_menu_item_ct_icon',''),(2858,4050,'_menu_item_type','post_type'),(2859,4050,'_menu_item_menu_item_parent','4045'),(2860,4050,'_menu_item_object_id','134'),(2861,4050,'_menu_item_object','page'),(2862,4050,'_menu_item_target',''),(2863,4050,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2864,4050,'_menu_item_xfn',''),(2865,4050,'_menu_item_url',''),(2866,4050,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2867,4050,'_menu_item_ct_icon',''),(2868,4051,'_menu_item_type','post_type'),(2869,4051,'_menu_item_menu_item_parent','4045'),(2870,4051,'_menu_item_object_id','136'),(2871,4051,'_menu_item_object','page'),(2872,4051,'_menu_item_target',''),(2873,4051,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2874,4051,'_menu_item_xfn',''),(2875,4051,'_menu_item_url',''),(2876,4051,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2877,4051,'_menu_item_ct_icon',''),(2878,4052,'_menu_item_type','post_type'),(2879,4052,'_menu_item_menu_item_parent','4045'),(2880,4052,'_menu_item_object_id','132'),(2881,4052,'_menu_item_object','page'),(2882,4052,'_menu_item_target',''),(2883,4052,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2884,4052,'_menu_item_xfn',''),(2885,4052,'_menu_item_url',''),(2886,4052,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2887,4052,'_menu_item_ct_icon',''),(2888,4053,'_menu_item_type','post_type'),(2889,4053,'_menu_item_menu_item_parent','4049'),(2890,4053,'_menu_item_object_id','129'),(2891,4053,'_menu_item_object','page'),(2892,4053,'_menu_item_target',''),(2893,4053,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2894,4053,'_menu_item_xfn',''),(2895,4053,'_menu_item_url',''),(2896,4053,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2897,4053,'_menu_item_ct_icon',''),(2898,4054,'_menu_item_type','post_type'),(2899,4054,'_menu_item_menu_item_parent','4044'),(2900,4054,'_menu_item_object_id','161'),(2901,4054,'_menu_item_object','post'),(2902,4054,'_menu_item_target',''),(2903,4054,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2904,4054,'_menu_item_xfn',''),(2905,4054,'_menu_item_url',''),(2906,4054,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2907,4054,'_menu_item_ct_icon',''),(2908,4055,'_menu_item_type','post_type'),(2909,4055,'_menu_item_menu_item_parent','4054'),(2910,4055,'_menu_item_object_id','161'),(2911,4055,'_menu_item_object','post'),(2912,4055,'_menu_item_target',''),(2913,4055,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2914,4055,'_menu_item_xfn',''),(2915,4055,'_menu_item_url',''),(2916,4055,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2917,4055,'_menu_item_ct_icon',''),(2918,4056,'_menu_item_type','post_type'),(2919,4056,'_menu_item_menu_item_parent','4054'),(2920,4056,'_menu_item_object_id','159'),(2921,4056,'_menu_item_object','post'),(2922,4056,'_menu_item_target',''),(2923,4056,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2924,4056,'_menu_item_xfn',''),(2925,4056,'_menu_item_url',''),(2926,4056,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2927,4056,'_menu_item_ct_icon',''),(2928,4057,'_menu_item_type','post_type'),(2929,4057,'_menu_item_menu_item_parent','4054'),(2930,4057,'_menu_item_object_id','164'),(2931,4057,'_menu_item_object','post'),(2932,4057,'_menu_item_target',''),(2933,4057,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2934,4057,'_menu_item_xfn',''),(2935,4057,'_menu_item_url',''),(2936,4057,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2937,4057,'_menu_item_ct_icon',''),(2938,4058,'_menu_item_type','post_type'),(2939,4058,'_menu_item_menu_item_parent','0'),(2940,4058,'_menu_item_object_id','24'),(2941,4058,'_menu_item_object','page'),(2942,4058,'_menu_item_target',''),(2943,4058,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2944,4058,'_menu_item_xfn',''),(2945,4058,'_menu_item_url',''),(2946,4058,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2947,4058,'_menu_item_ct_icon',''),(2948,4058,'_menu_item_ct_megaprofile','0'),(2949,4058,'_menu_item_ct_onepage','no-one-page'),(2950,4058,'_menu_item_ct_onepage_offset',''),(2951,4059,'_menu_item_type','post_type'),(2952,4059,'_menu_item_menu_item_parent','0'),(2953,4059,'_menu_item_object_id','415'),(2954,4059,'_menu_item_object','page'),(2955,4059,'_menu_item_target',''),(2956,4059,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2957,4059,'_menu_item_xfn',''),(2958,4059,'_menu_item_url',''),(2959,4059,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2960,4059,'_menu_item_ct_icon',''),(2961,4059,'_menu_item_ct_megaprofile','0'),(2962,4059,'_menu_item_ct_onepage','no-one-page'),(2963,4059,'_menu_item_ct_onepage_offset',''),(2964,4060,'_menu_item_type','post_type'),(2965,4060,'_menu_item_menu_item_parent','4059'),(2966,4060,'_menu_item_object_id','417'),(2967,4060,'_menu_item_object','page'),(2968,4060,'_menu_item_target',''),(2969,4060,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2970,4060,'_menu_item_xfn',''),(2971,4060,'_menu_item_url',''),(2972,4060,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2973,4060,'_menu_item_ct_icon',''),(2974,4061,'_menu_item_type','post_type'),(2975,4061,'_menu_item_menu_item_parent','4059'),(2976,4061,'_menu_item_object_id','415'),(2977,4061,'_menu_item_object','page'),(2978,4061,'_menu_item_target',''),(2979,4061,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2980,4061,'_menu_item_xfn',''),(2981,4061,'_menu_item_url',''),(2982,4061,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2983,4061,'_menu_item_ct_icon',''),(2984,4062,'_menu_item_type','post_type'),(2985,4062,'_menu_item_menu_item_parent','4059'),(2986,4062,'_menu_item_object_id','579'),(2987,4062,'_menu_item_object','portfolio'),(2988,4062,'_menu_item_target',''),(2989,4062,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2990,4062,'_menu_item_xfn',''),(2991,4062,'_menu_item_url',''),(2992,4062,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2993,4062,'_menu_item_ct_icon',''),(2994,4063,'_menu_item_type','post_type'),(2995,4063,'_menu_item_menu_item_parent','4040'),(2996,4063,'_menu_item_object_id','3520'),(2997,4063,'_menu_item_object','page'),(2998,4063,'_menu_item_target',''),(2999,4063,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3000,4063,'_menu_item_xfn',''),(3001,4063,'_menu_item_url',''),(3002,4063,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3003,4063,'_menu_item_ct_icon',''),(3004,4064,'_menu_item_type','post_type'),(3005,4064,'_menu_item_menu_item_parent','4040'),(3006,4064,'_menu_item_object_id','3518'),(3007,4064,'_menu_item_object','page'),(3008,4064,'_menu_item_target',''),(3009,4064,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3010,4064,'_menu_item_xfn',''),(3011,4064,'_menu_item_url',''),(3012,4064,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3013,4064,'_menu_item_ct_icon',''),(3014,4065,'_menu_item_type','post_type'),(3015,4065,'_menu_item_menu_item_parent','4040'),(3016,4065,'_menu_item_object_id','3516'),(3017,4065,'_menu_item_object','page'),(3018,4065,'_menu_item_target',''),(3019,4065,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3020,4065,'_menu_item_xfn',''),(3021,4065,'_menu_item_url',''),(3022,4065,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3023,4065,'_menu_item_ct_icon',''),(3024,4066,'_menu_item_type','post_type'),(3025,4066,'_menu_item_menu_item_parent','4039'),(3026,4066,'_menu_item_object_id','3504'),(3027,4066,'_menu_item_object','page'),(3028,4066,'_menu_item_target',''),(3029,4066,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3030,4066,'_menu_item_xfn',''),(3031,4066,'_menu_item_url',''),(3032,4066,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3033,4066,'_menu_item_ct_icon',''),(3034,4067,'_menu_item_type','post_type'),(3035,4067,'_menu_item_menu_item_parent','4042'),(3036,4067,'_menu_item_object_id','3502'),(3037,4067,'_menu_item_object','page'),(3038,4067,'_menu_item_target',''),(3039,4067,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3040,4067,'_menu_item_xfn',''),(3041,4067,'_menu_item_url',''),(3042,4067,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3043,4067,'_menu_item_ct_icon',''),(3044,4068,'_menu_item_type','post_type'),(3045,4068,'_menu_item_menu_item_parent','4042'),(3046,4068,'_menu_item_object_id','3500'),(3047,4068,'_menu_item_object','page'),(3048,4068,'_menu_item_target',''),(3049,4068,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3050,4068,'_menu_item_xfn',''),(3051,4068,'_menu_item_url',''),(3052,4068,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3053,4068,'_menu_item_ct_icon',''),(3054,4069,'_menu_item_type','post_type'),(3055,4069,'_menu_item_menu_item_parent','4042'),(3056,4069,'_menu_item_object_id','3497'),(3057,4069,'_menu_item_object','page'),(3058,4069,'_menu_item_target',''),(3059,4069,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3060,4069,'_menu_item_xfn',''),(3061,4069,'_menu_item_url',''),(3062,4069,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3063,4069,'_menu_item_ct_icon',''),(3064,4070,'_menu_item_type','post_type'),(3065,4070,'_menu_item_menu_item_parent','4037'),(3066,4070,'_menu_item_object_id','3495'),(3067,4070,'_menu_item_object','page'),(3068,4070,'_menu_item_target',''),(3069,4070,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3070,4070,'_menu_item_xfn',''),(3071,4070,'_menu_item_url',''),(3072,4070,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3073,4070,'_menu_item_ct_icon',''),(3074,4071,'_menu_item_type','post_type'),(3075,4071,'_menu_item_menu_item_parent','4037'),(3076,4071,'_menu_item_object_id','3493'),(3077,4071,'_menu_item_object','page'),(3078,4071,'_menu_item_target',''),(3079,4071,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3080,4071,'_menu_item_xfn',''),(3081,4071,'_menu_item_url',''),(3082,4071,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3083,4071,'_menu_item_ct_icon',''),(3084,4072,'_menu_item_type','post_type'),(3085,4072,'_menu_item_menu_item_parent','4037'),(3086,4072,'_menu_item_object_id','3491'),(3087,4072,'_menu_item_object','page'),(3088,4072,'_menu_item_target',''),(3089,4072,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3090,4072,'_menu_item_xfn',''),(3091,4072,'_menu_item_url',''),(3092,4072,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3093,4072,'_menu_item_ct_icon',''),(3094,4073,'_menu_item_type','post_type'),(3095,4073,'_menu_item_menu_item_parent','4037'),(3096,4073,'_menu_item_object_id','26'),(3097,4073,'_menu_item_object','page'),(3098,4073,'_menu_item_target',''),(3099,4073,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3100,4073,'_menu_item_xfn',''),(3101,4073,'_menu_item_url',''),(3102,4073,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3103,4073,'_menu_item_ct_icon',''),(3104,4074,'_menu_item_type','post_type'),(3105,4074,'_menu_item_menu_item_parent','4039'),(3106,4074,'_menu_item_object_id','32'),(3107,4074,'_menu_item_object','page'),(3108,4074,'_menu_item_target',''),(3109,4074,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3110,4074,'_menu_item_xfn',''),(3111,4074,'_menu_item_url',''),(3112,4074,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3113,4074,'_menu_item_ct_icon',''),(3114,4075,'_menu_item_type','post_type'),(3115,4075,'_menu_item_menu_item_parent','4040'),(3116,4075,'_menu_item_object_id','28'),(3117,4075,'_menu_item_object','page'),(3118,4075,'_menu_item_target',''),(3119,4075,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3120,4075,'_menu_item_xfn',''),(3121,4075,'_menu_item_url',''),(3122,4075,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3123,4075,'_menu_item_ct_icon',''),(3124,4076,'_menu_item_type','post_type'),(3125,4076,'_menu_item_menu_item_parent','4042'),(3126,4076,'_menu_item_object_id','367'),(3127,4076,'_menu_item_object','page'),(3128,4076,'_menu_item_target',''),(3129,4076,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3130,4076,'_menu_item_xfn',''),(3131,4076,'_menu_item_url',''),(3132,4076,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3133,4076,'_menu_item_ct_icon',''),(3134,4077,'_menu_item_type','post_type'),(3135,4077,'_menu_item_menu_item_parent','4058'),(3136,4077,'_menu_item_object_id','24'),(3137,4077,'_menu_item_object','page'),(3138,4077,'_menu_item_target',''),(3139,4077,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3140,4077,'_menu_item_xfn',''),(3141,4077,'_menu_item_url',''),(3142,4077,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3143,4077,'_menu_item_ct_icon',''),(3144,4078,'_menu_item_type','post_type'),(3145,4078,'_menu_item_menu_item_parent','4058'),(3146,4078,'_menu_item_object_id','3510'),(3147,4078,'_menu_item_object','page'),(3148,4078,'_menu_item_target',''),(3149,4078,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3150,4078,'_menu_item_xfn',''),(3151,4078,'_menu_item_url',''),(3152,4078,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3153,4078,'_menu_item_ct_icon',''),(3154,4079,'_menu_item_type','post_type'),(3155,4079,'_menu_item_menu_item_parent','4058'),(3156,4079,'_menu_item_object_id','3512'),(3157,4079,'_menu_item_object','page'),(3158,4079,'_menu_item_target',''),(3159,4079,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3160,4079,'_menu_item_xfn',''),(3161,4079,'_menu_item_url',''),(3162,4079,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3163,4079,'_menu_item_ct_icon',''),(3164,4080,'_menu_item_type','post_type'),(3165,4080,'_menu_item_menu_item_parent','4058'),(3166,4080,'_menu_item_object_id','3514'),(3167,4080,'_menu_item_object','page'),(3168,4080,'_menu_item_target',''),(3169,4080,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3170,4080,'_menu_item_xfn',''),(3171,4080,'_menu_item_url',''),(3172,4080,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3173,4080,'_menu_item_ct_icon',''),(3174,4081,'_menu_item_type','post_type'),(3175,4081,'_menu_item_menu_item_parent','3987'),(3176,4081,'_menu_item_object_id','3520'),(3177,4081,'_menu_item_object','page'),(3178,4081,'_menu_item_target',''),(3179,4081,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3180,4081,'_menu_item_xfn',''),(3181,4081,'_menu_item_url',''),(3182,4081,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3183,4081,'_menu_item_ct_icon',''),(3184,4082,'_menu_item_type','post_type'),(3185,4082,'_menu_item_menu_item_parent','3987'),(3186,4082,'_menu_item_object_id','3518'),(3187,4082,'_menu_item_object','page'),(3188,4082,'_menu_item_target',''),(3189,4082,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3190,4082,'_menu_item_xfn',''),(3191,4082,'_menu_item_url',''),(3192,4082,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3193,4082,'_menu_item_ct_icon',''),(3194,4083,'_menu_item_type','post_type'),(3195,4083,'_menu_item_menu_item_parent','3987'),(3196,4083,'_menu_item_object_id','3516'),(3197,4083,'_menu_item_object','page'),(3198,4083,'_menu_item_target',''),(3199,4083,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3200,4083,'_menu_item_xfn',''),(3201,4083,'_menu_item_url',''),(3202,4083,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3203,4083,'_menu_item_ct_icon',''),(3204,4084,'_menu_item_type','post_type'),(3205,4084,'_menu_item_menu_item_parent','3989'),(3206,4084,'_menu_item_object_id','3514'),(3207,4084,'_menu_item_object','page'),(3208,4084,'_menu_item_target',''),(3209,4084,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3210,4084,'_menu_item_xfn',''),(3211,4084,'_menu_item_url',''),(3212,4084,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3213,4084,'_menu_item_ct_icon',''),(3214,4085,'_menu_item_type','post_type'),(3215,4085,'_menu_item_menu_item_parent','3989'),(3216,4085,'_menu_item_object_id','3512'),(3217,4085,'_menu_item_object','page'),(3218,4085,'_menu_item_target',''),(3219,4085,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3220,4085,'_menu_item_xfn',''),(3221,4085,'_menu_item_url',''),(3222,4085,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3223,4085,'_menu_item_ct_icon',''),(3224,4086,'_menu_item_type','post_type'),(3225,4086,'_menu_item_menu_item_parent','3989'),(3226,4086,'_menu_item_object_id','3510'),(3227,4086,'_menu_item_object','page'),(3228,4086,'_menu_item_target',''),(3229,4086,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3230,4086,'_menu_item_xfn',''),(3231,4086,'_menu_item_url',''),(3232,4086,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3233,4086,'_menu_item_ct_icon',''),(3234,4087,'_menu_item_type','post_type'),(3235,4087,'_menu_item_menu_item_parent','3985'),(3236,4087,'_menu_item_object_id','3504'),(3237,4087,'_menu_item_object','page'),(3238,4087,'_menu_item_target',''),(3239,4087,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3240,4087,'_menu_item_xfn',''),(3241,4087,'_menu_item_url',''),(3242,4087,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3243,4087,'_menu_item_ct_icon',''),(3244,4088,'_menu_item_type','post_type'),(3245,4088,'_menu_item_menu_item_parent','4009'),(3246,4088,'_menu_item_object_id','3502'),(3247,4088,'_menu_item_object','page'),(3248,4088,'_menu_item_target',''),(3249,4088,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3250,4088,'_menu_item_xfn',''),(3251,4088,'_menu_item_url',''),(3252,4088,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3253,4088,'_menu_item_ct_icon',''),(3254,4089,'_menu_item_type','post_type'),(3255,4089,'_menu_item_menu_item_parent','4009'),(3256,4089,'_menu_item_object_id','3500'),(3257,4089,'_menu_item_object','page'),(3258,4089,'_menu_item_target',''),(3259,4089,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3260,4089,'_menu_item_xfn',''),(3261,4089,'_menu_item_url',''),(3262,4089,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3263,4089,'_menu_item_ct_icon',''),(3264,4090,'_menu_item_type','post_type'),(3265,4090,'_menu_item_menu_item_parent','4009'),(3266,4090,'_menu_item_object_id','3497'),(3267,4090,'_menu_item_object','page'),(3268,4090,'_menu_item_target',''),(3269,4090,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3270,4090,'_menu_item_xfn',''),(3271,4090,'_menu_item_url',''),(3272,4090,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3273,4090,'_menu_item_ct_icon',''),(3274,4091,'_menu_item_type','post_type'),(3275,4091,'_menu_item_menu_item_parent','3988'),(3276,4091,'_menu_item_object_id','3495'),(3277,4091,'_menu_item_object','page'),(3278,4091,'_menu_item_target',''),(3279,4091,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3280,4091,'_menu_item_xfn',''),(3281,4091,'_menu_item_url',''),(3282,4091,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3283,4091,'_menu_item_ct_icon',''),(3284,4092,'_menu_item_type','post_type'),(3285,4092,'_menu_item_menu_item_parent','3988'),(3286,4092,'_menu_item_object_id','3493'),(3287,4092,'_menu_item_object','page'),(3288,4092,'_menu_item_target',''),(3289,4092,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3290,4092,'_menu_item_xfn',''),(3291,4092,'_menu_item_url',''),(3292,4092,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3293,4092,'_menu_item_ct_icon',''),(3294,4093,'_menu_item_type','post_type'),(3295,4093,'_menu_item_menu_item_parent','3988'),(3296,4093,'_menu_item_object_id','3491'),(3297,4093,'_menu_item_object','page'),(3298,4093,'_menu_item_target',''),(3299,4093,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3300,4093,'_menu_item_xfn',''),(3301,4093,'_menu_item_url',''),(3302,4093,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3303,4093,'_menu_item_ct_icon',''),(3304,4094,'_menu_item_type','post_type'),(3305,4094,'_menu_item_menu_item_parent','3988'),(3306,4094,'_menu_item_object_id','26'),(3307,4094,'_menu_item_object','page'),(3308,4094,'_menu_item_target',''),(3309,4094,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3310,4094,'_menu_item_xfn',''),(3311,4094,'_menu_item_url',''),(3312,4094,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3313,4094,'_menu_item_ct_icon',''),(3314,4095,'_menu_item_type','post_type'),(3315,4095,'_menu_item_menu_item_parent','3989'),(3316,4095,'_menu_item_object_id','24'),(3317,4095,'_menu_item_object','page'),(3318,4095,'_menu_item_target',''),(3319,4095,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3320,4095,'_menu_item_xfn',''),(3321,4095,'_menu_item_url',''),(3322,4095,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3323,4095,'_menu_item_ct_icon',''),(3324,4096,'_menu_item_type','post_type'),(3325,4096,'_menu_item_menu_item_parent','3985'),(3326,4096,'_menu_item_object_id','32'),(3327,4096,'_menu_item_object','page'),(3328,4096,'_menu_item_target',''),(3329,4096,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3330,4096,'_menu_item_xfn',''),(3331,4096,'_menu_item_url',''),(3332,4096,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3333,4096,'_menu_item_ct_icon',''),(3334,4097,'_menu_item_type','post_type'),(3335,4097,'_menu_item_menu_item_parent','3987'),(3336,4097,'_menu_item_object_id','28'),(3337,4097,'_menu_item_object','page'),(3338,4097,'_menu_item_target',''),(3339,4097,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3340,4097,'_menu_item_xfn',''),(3341,4097,'_menu_item_url',''),(3342,4097,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3343,4097,'_menu_item_ct_icon',''),(3344,4098,'_menu_item_type','post_type'),(3345,4098,'_menu_item_menu_item_parent','4009'),(3346,4098,'_menu_item_object_id','367'),(3347,4098,'_menu_item_object','page'),(3348,4098,'_menu_item_target',''),(3349,4098,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3350,4098,'_menu_item_xfn',''),(3351,4098,'_menu_item_url',''),(3352,4098,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3353,4098,'_menu_item_ct_icon',''),(3354,4099,'_menu_item_type','post_type'),(3355,4099,'_menu_item_menu_item_parent','3971'),(3356,4099,'_menu_item_object_id','748'),(3357,4099,'_menu_item_object','page'),(3358,4099,'_menu_item_target',''),(3359,4099,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3360,4099,'_menu_item_xfn',''),(3361,4099,'_menu_item_url',''),(3362,4099,'_menu_item_ct_megaprofile','0'),(3363,4099,'_menu_item_ct_icon',''),(3364,4099,'_menu_item_ct_onepage','no-one-page'),(3365,4099,'_menu_item_ct_onepage_offset',''),(6008,4497,'_wp_page_template','default'),(6009,4497,'_elementor_edit_mode','builder'),(6010,4497,'_elementor_template_type','wp-page'),(6011,4497,'_elementor_version','2.8.5'),(6012,4497,'_elementor_data','[{\"id\":\"64fd72b8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"42\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"305603d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9da93fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the information belowto sign up for the Dart and Pool Leagues\",\"sub_title\":\"League Information\",\"sub_title_color\":\"#595959\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"_css_classes\":\"line-sub-preset2\",\"ct_animate\":\"wow bounce\",\"text_align\":\"center\",\"sub_title_style\":\"style7\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"f725b8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"20124ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ea0522\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"about-call\\\">For Dart League registration please use the following information below:<\\/div><div>\\u00a0<\\/div><div>info@dartleague.com<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"ab5c66a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1fb7224d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"about-call\\\">For Dart League registration please use the following information below:<\\/div><div>\\u00a0<\\/div><div>info@dartleague.com<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5202,4387,'_wp_page_template','default'),(5203,4387,'_elementor_edit_mode','builder'),(5204,4387,'_elementor_template_type','wp-page'),(5205,4387,'_elementor_version','2.8.5'),(4760,4336,'_wp_page_template','default'),(3555,4104,'_wp_page_template','default'),(3556,4104,'_elementor_edit_mode','builder'),(3557,4104,'_elementor_template_type','wp-page'),(3558,4104,'_elementor_version','2.8.5'),(3559,4104,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"73\",\"right\":\"0\",\"bottom\":\"95\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have appreciated by our clients!\",\"sub_title\":\"Testimonial\",\"sub_title_color\":\"#00C7D4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#00C7D4\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/author-02.jpg\",\"id\":238},\"title\":\"Maria Silverii\",\"position\":\"CEO of Blue Illusion\",\"description\":\"\\u201c I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail as a Leadership Program\\u2019 is Her passion.\\u201d\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/author-01.jpg\",\"id\":237},\"title\":\"Rebecca Leo \",\"position\":\"Web Designer\",\"description\":\"\\u201c I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail as a Leadership Program\\u2019 is Her passion.\\u201d\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-tax.png\",\"id\":3468},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-180\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"Blog\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"99958ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(5675,4443,'_wp_page_template','default'),(5539,4429,'_wp_page_template','default'),(5540,4429,'_elementor_edit_mode','builder'),(5441,4413,'_wp_page_template','default'),(3366,3945,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:4:\"file\";s:27:\"woocommerce-placeholder.png\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"woocommerce-placeholder-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-900x313.png\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3367,3937,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:535;s:6:\"height\";i:519;s:4:\"file\";s:23:\"2020/02/h4-about1-1.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"h4-about1-1-300x291.png\";s:5:\"width\";i:300;s:6:\"height\";i:291;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"h4-about1-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:23:\"h4-about1-1-535x313.png\";s:5:\"width\";i:535;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:23:\"h4-about1-1-535x450.png\";s:5:\"width\";i:535;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"h4-about1-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"h4-about1-1-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:23:\"h4-about1-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"h4-about1-1-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3368,3852,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:538;s:6:\"height\";i:368;s:4:\"file\";s:22:\"2020/02/contact-v4.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"contact-v4-300x205.png\";s:5:\"width\";i:300;s:6:\"height\";i:205;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"contact-v4-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:22:\"contact-v4-538x313.png\";s:5:\"width\";i:538;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"contact-v4-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"contact-v4-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"contact-v4-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"contact-v4-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3369,3681,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:165;s:6:\"height\";i:278;s:4:\"file\";s:25:\"2020/02/about4-shape1.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"about4-shape1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3370,3679,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:545;s:6:\"height\";i:464;s:4:\"file\";s:21:\"2020/02/h4-about1.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"h4-about1-300x255.png\";s:5:\"width\";i:300;s:6:\"height\";i:255;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"h4-about1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:21:\"h4-about1-545x313.png\";s:5:\"width\";i:545;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:21:\"h4-about1-545x450.png\";s:5:\"width\";i:545;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"h4-about1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"h4-about1-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:21:\"h4-about1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"h4-about1-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3371,3669,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:500;s:4:\"file\";s:30:\"2020/02/about4-bg-section1.png\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"about4-bg-section1-300x78.png\";s:5:\"width\";i:300;s:6:\"height\";i:78;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"about4-bg-section1-1024x267.png\";s:5:\"width\";i:1024;s:6:\"height\";i:267;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"about4-bg-section1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"about4-bg-section1-768x200.png\";s:5:\"width\";i:768;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:31:\"about4-bg-section1-1536x400.png\";s:5:\"width\";i:1536;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:30:\"about4-bg-section1-900x313.png\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:30:\"about4-bg-section1-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:30:\"about4-bg-section1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:30:\"about4-bg-section1-600x156.png\";s:5:\"width\";i:600;s:6:\"height\";i:156;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:30:\"about4-bg-section1-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:30:\"about4-bg-section1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:30:\"about4-bg-section1-600x156.png\";s:5:\"width\";i:600;s:6:\"height\";i:156;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:30:\"about4-bg-section1-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3372,3665,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:50;s:6:\"height\";i:46;s:4:\"file\";s:24:\"2020/02/about4-icon3.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3373,3664,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:44;s:6:\"height\";i:48;s:4:\"file\";s:24:\"2020/02/about4-icon2.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3374,3663,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:48;s:6:\"height\";i:43;s:4:\"file\";s:24:\"2020/02/about4-icon1.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3375,3628,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:430;s:4:\"file\";s:28:\"2020/02/about-section-01.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"about-section-01-300x67.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"about-section-01-1024x229.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:229;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"about-section-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"about-section-01-768x172.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:172;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"about-section-01-1536x344.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:344;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:28:\"about-section-01-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:28:\"about-section-01-600x430.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"about-section-01-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:28:\"about-section-01-600x134.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:134;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"about-section-01-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:28:\"about-section-01-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:28:\"about-section-01-600x134.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:134;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"about-section-01-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3376,3614,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:900;s:4:\"file\";s:19:\"2020/02/theme23.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"theme23-300x141.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"theme23-1024x480.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"theme23-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"theme23-768x360.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"theme23-1536x720.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:19:\"theme23-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:19:\"theme23-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:19:\"theme23-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:19:\"theme23-600x281.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:19:\"theme23-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:19:\"theme23-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:19:\"theme23-600x281.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"theme23-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3377,3468,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:632;s:4:\"file\";s:18:\"2020/02/h6-tax.png\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"h6-tax-300x237.png\";s:5:\"width\";i:300;s:6:\"height\";i:237;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"h6-tax-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"h6-tax-768x607.png\";s:5:\"width\";i:768;s:6:\"height\";i:607;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:18:\"h6-tax-800x313.png\";s:5:\"width\";i:800;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:18:\"h6-tax-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:18:\"h6-tax-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:18:\"h6-tax-600x474.png\";s:5:\"width\";i:600;s:6:\"height\";i:474;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:18:\"h6-tax-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:18:\"h6-tax-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:18:\"h6-tax-600x474.png\";s:5:\"width\";i:600;s:6:\"height\";i:474;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"h6-tax-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3378,3411,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:691;s:4:\"file\";s:28:\"2020/02/h6-bg-section-02.png\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"h6-bg-section-02-300x108.png\";s:5:\"width\";i:300;s:6:\"height\";i:108;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"h6-bg-section-02-1024x369.png\";s:5:\"width\";i:1024;s:6:\"height\";i:369;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"h6-bg-section-02-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"h6-bg-section-02-768x276.png\";s:5:\"width\";i:768;s:6:\"height\";i:276;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"h6-bg-section-02-1536x553.png\";s:5:\"width\";i:1536;s:6:\"height\";i:553;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:28:\"h6-bg-section-02-900x313.png\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:28:\"h6-bg-section-02-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"h6-bg-section-02-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:28:\"h6-bg-section-02-600x216.png\";s:5:\"width\";i:600;s:6:\"height\";i:216;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"h6-bg-section-02-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:28:\"h6-bg-section-02-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:28:\"h6-bg-section-02-600x216.png\";s:5:\"width\";i:600;s:6:\"height\";i:216;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"h6-bg-section-02-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3379,3401,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:450;s:6:\"height\";i:450;s:4:\"file\";s:20:\"2020/02/h6-team4.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"h6-team4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"h6-team4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"h6-team4-450x313.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"h6-team4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"h6-team4-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"h6-team4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"h6-team4-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3380,3400,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:450;s:6:\"height\";i:450;s:4:\"file\";s:20:\"2020/02/h6-team3.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"h6-team3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"h6-team3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"h6-team3-450x313.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"h6-team3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"h6-team3-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"h6-team3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"h6-team3-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3381,3399,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:450;s:6:\"height\";i:450;s:4:\"file\";s:20:\"2020/02/h6-team2.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"h6-team2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"h6-team2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"h6-team2-450x313.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"h6-team2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"h6-team2-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"h6-team2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"h6-team2-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3382,3383,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:20:\"2020/02/h6-team1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"h6-team1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"h6-team1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"h6-team1-350x313.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"h6-team1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"h6-team1-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"h6-team1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"h6-team1-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3383,3376,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1024;s:4:\"file\";s:17:\"2020/02/demo9.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"demo9-234x300.jpg\";s:5:\"width\";i:234;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"demo9-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"demo9-768x983.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:983;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:17:\"demo9-800x313.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:17:\"demo9-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:17:\"demo9-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:17:\"demo9-600x768.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:17:\"demo9-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:17:\"demo9-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:17:\"demo9-600x768.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:17:\"demo9-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3384,3369,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:63;s:6:\"height\";i:65;s:4:\"file\";s:28:\"2020/02/h6-service-icon9.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3385,3368,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:58;s:6:\"height\";i:65;s:4:\"file\";s:28:\"2020/02/h6-service-icon8.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3386,3367,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:57;s:6:\"height\";i:65;s:4:\"file\";s:28:\"2020/02/h6-service-icon7.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3387,3366,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:51;s:6:\"height\";i:65;s:4:\"file\";s:28:\"2020/02/h6-service-icon6.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3388,3365,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:74;s:6:\"height\";i:65;s:4:\"file\";s:28:\"2020/02/h6-service-icon5.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3389,3364,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:60;s:6:\"height\";i:65;s:4:\"file\";s:28:\"2020/02/h6-service-icon4.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3390,3350,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:19;s:6:\"height\";i:18;s:4:\"file\";s:22:\"2020/02/h6-shape-7.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3391,3349,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:19;s:6:\"height\";i:19;s:4:\"file\";s:22:\"2020/02/h6-shape-6.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3392,3348,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:30;s:6:\"height\";i:27;s:4:\"file\";s:22:\"2020/02/h6-shape-5.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3393,3318,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:54;s:6:\"height\";i:41;s:4:\"file\";s:28:\"2020/02/h6-counter-icon4.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3394,3317,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:54;s:6:\"height\";i:45;s:4:\"file\";s:28:\"2020/02/h6-counter-icon3.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3395,3316,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:54;s:6:\"height\";i:45;s:4:\"file\";s:28:\"2020/02/h6-counter-icon2.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3396,3315,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:54;s:6:\"height\";i:45;s:4:\"file\";s:28:\"2020/02/h6-counter-icon1.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3397,3304,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1074;s:4:\"file\";s:28:\"2020/02/h6-bg-section-01.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"h6-bg-section-01-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"h6-bg-section-01-1024x573.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:573;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"h6-bg-section-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"h6-bg-section-01-768x430.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"h6-bg-section-01-1536x859.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:859;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:28:\"h6-bg-section-01-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:28:\"h6-bg-section-01-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"h6-bg-section-01-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:28:\"h6-bg-section-01-600x336.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:336;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"h6-bg-section-01-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:28:\"h6-bg-section-01-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:28:\"h6-bg-section-01-600x336.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:336;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"h6-bg-section-01-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3398,3295,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:50;s:6:\"height\";i:60;s:4:\"file\";s:28:\"2020/01/h6-icon-service3.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3399,3294,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:49;s:6:\"height\";i:60;s:4:\"file\";s:28:\"2020/01/h6-icon-service2.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3400,3292,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:61;s:6:\"height\";i:60;s:4:\"file\";s:28:\"2020/01/h6-icon-service1.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3401,3282,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:697;s:4:\"file\";s:28:\"2020/01/h6-bg-section-01.png\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"h6-bg-section-01-300x109.png\";s:5:\"width\";i:300;s:6:\"height\";i:109;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"h6-bg-section-01-1024x372.png\";s:5:\"width\";i:1024;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"h6-bg-section-01-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"h6-bg-section-01-768x279.png\";s:5:\"width\";i:768;s:6:\"height\";i:279;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"h6-bg-section-01-1536x558.png\";s:5:\"width\";i:1536;s:6:\"height\";i:558;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:28:\"h6-bg-section-01-900x313.png\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:28:\"h6-bg-section-01-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"h6-bg-section-01-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:28:\"h6-bg-section-01-600x218.png\";s:5:\"width\";i:600;s:6:\"height\";i:218;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"h6-bg-section-01-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:28:\"h6-bg-section-01-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:28:\"h6-bg-section-01-600x218.png\";s:5:\"width\";i:600;s:6:\"height\";i:218;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"h6-bg-section-01-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3402,3278,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:11;s:6:\"height\";i:13;s:4:\"file\";s:21:\"2020/01/h6-shape4.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3403,3277,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:18;s:6:\"height\";i:20;s:4:\"file\";s:21:\"2020/01/h6-shape3.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3404,3276,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:25;s:6:\"height\";i:29;s:4:\"file\";s:21:\"2020/01/h6-shape2.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3405,3275,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:100;s:6:\"height\";i:114;s:4:\"file\";s:21:\"2020/01/h6-shape1.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3406,3274,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:510;s:6:\"height\";i:710;s:4:\"file\";s:26:\"2020/01/h6-slider-img1.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"h6-slider-img1-215x300.png\";s:5:\"width\";i:215;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"h6-slider-img1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:26:\"h6-slider-img1-510x313.png\";s:5:\"width\";i:510;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:26:\"h6-slider-img1-510x450.png\";s:5:\"width\";i:510;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"h6-slider-img1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"h6-slider-img1-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:26:\"h6-slider-img1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"h6-slider-img1-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3407,3270,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:960;s:4:\"file\";s:27:\"2020/01/h6-bg-slider-01.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"h6-bg-slider-01-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"h6-bg-slider-01-1024x512.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"h6-bg-slider-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"h6-bg-slider-01-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:28:\"h6-bg-slider-01-1536x768.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:27:\"h6-bg-slider-01-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:27:\"h6-bg-slider-01-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"h6-bg-slider-01-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"h6-bg-slider-01-600x300.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"h6-bg-slider-01-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:27:\"h6-bg-slider-01-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"h6-bg-slider-01-600x300.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"h6-bg-slider-01-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3408,3213,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:601;s:6:\"height\";i:159;s:4:\"file\";s:25:\"2020/01/h6-logo-light.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"h6-logo-light-300x79.png\";s:5:\"width\";i:300;s:6:\"height\";i:79;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"h6-logo-light-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"h6-logo-light-300x159.png\";s:5:\"width\";i:300;s:6:\"height\";i:159;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"h6-logo-light-250x159.png\";s:5:\"width\";i:250;s:6:\"height\";i:159;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"h6-logo-light-300x159.png\";s:5:\"width\";i:300;s:6:\"height\";i:159;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"h6-logo-light-250x159.png\";s:5:\"width\";i:250;s:6:\"height\";i:159;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3409,3212,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:601;s:6:\"height\";i:159;s:4:\"file\";s:24:\"2020/01/h6-logo-dark.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"h6-logo-dark-300x79.png\";s:5:\"width\";i:300;s:6:\"height\";i:79;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"h6-logo-dark-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"h6-logo-dark-300x159.png\";s:5:\"width\";i:300;s:6:\"height\";i:159;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"h6-logo-dark-250x159.png\";s:5:\"width\";i:250;s:6:\"height\";i:159;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"h6-logo-dark-300x159.png\";s:5:\"width\";i:300;s:6:\"height\";i:159;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"h6-logo-dark-250x159.png\";s:5:\"width\";i:250;s:6:\"height\";i:159;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3410,2630,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2019/12/theme-23.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"theme-23-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-23-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"theme-23-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"theme-23-800x313.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:20:\"theme-23-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"theme-23-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"theme-23-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-23-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"theme-23-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"theme-23-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-23-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3411,2610,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:260;s:4:\"file\";s:22:\"2019/12/h3-team-04.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"h3-team-04-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"h3-team-04-250x260.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"h3-team-04-250x260.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3412,2609,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:260;s:4:\"file\";s:22:\"2019/12/h3-team-03.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"h3-team-03-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"h3-team-03-250x260.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"h3-team-03-250x260.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3413,2608,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:260;s:4:\"file\";s:22:\"2019/12/h3-team-01.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"h3-team-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"h3-team-01-250x260.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"h3-team-01-250x260.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3414,2606,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:260;s:4:\"file\";s:22:\"2019/12/h3-team-02.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"h3-team-02-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"h3-team-02-250x260.png\";s:5:\"width\";i:250;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"h3-team-02-250x260.png\";s:5:\"width\";i:250;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3415,2602,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:779;s:6:\"height\";i:735;s:4:\"file\";s:27:\"2019/12/bg-section-07-1.png\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"bg-section-07-1-300x283.png\";s:5:\"width\";i:300;s:6:\"height\";i:283;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"bg-section-07-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"bg-section-07-1-768x725.png\";s:5:\"width\";i:768;s:6:\"height\";i:725;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:27:\"bg-section-07-1-779x313.png\";s:5:\"width\";i:779;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:27:\"bg-section-07-1-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"bg-section-07-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"bg-section-07-1-600x566.png\";s:5:\"width\";i:600;s:6:\"height\";i:566;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"bg-section-07-1-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:27:\"bg-section-07-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"bg-section-07-1-600x566.png\";s:5:\"width\";i:600;s:6:\"height\";i:566;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"bg-section-07-1-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3416,2576,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:630;s:6:\"height\";i:667;s:4:\"file\";s:20:\"2019/12/about-03.png\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"about-03-283x300.png\";s:5:\"width\";i:283;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"about-03-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"about-03-630x313.png\";s:5:\"width\";i:630;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:20:\"about-03-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"about-03-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"about-03-600x635.png\";s:5:\"width\";i:600;s:6:\"height\";i:635;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"about-03-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"about-03-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"about-03-600x635.png\";s:5:\"width\";i:600;s:6:\"height\";i:635;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"about-03-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3417,2569,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:50;s:6:\"height\";i:54;s:4:\"file\";s:22:\"2019/12/h3-icon-02.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3418,2567,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:56;s:6:\"height\";i:57;s:4:\"file\";s:22:\"2019/12/h3-icon-01.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3419,2528,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:739;s:6:\"height\";i:858;s:4:\"file\";s:25:\"2019/12/bg-section-07.png\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"bg-section-07-258x300.png\";s:5:\"width\";i:258;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"bg-section-07-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:25:\"bg-section-07-739x313.png\";s:5:\"width\";i:739;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:25:\"bg-section-07-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"bg-section-07-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"bg-section-07-600x697.png\";s:5:\"width\";i:600;s:6:\"height\";i:697;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"bg-section-07-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"bg-section-07-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"bg-section-07-600x697.png\";s:5:\"width\";i:600;s:6:\"height\";i:697;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"bg-section-07-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3420,2523,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1680;s:6:\"height\";i:1200;s:4:\"file\";s:25:\"2019/12/bg-section-06.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"bg-section-06-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"bg-section-06-1024x731.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:731;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"bg-section-06-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"bg-section-06-768x549.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:549;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:27:\"bg-section-06-1536x1097.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1097;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:25:\"bg-section-06-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:25:\"bg-section-06-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"bg-section-06-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"bg-section-06-600x429.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:429;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"bg-section-06-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"bg-section-06-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"bg-section-06-600x429.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:429;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"bg-section-06-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3421,2405,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:132;s:6:\"height\";i:138;s:4:\"file\";s:21:\"2019/12/marker-01.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3422,2391,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:795;s:4:\"file\";s:25:\"2019/12/bg-section-05.png\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"bg-section-05-300x124.png\";s:5:\"width\";i:300;s:6:\"height\";i:124;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"bg-section-05-1024x424.png\";s:5:\"width\";i:1024;s:6:\"height\";i:424;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"bg-section-05-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"bg-section-05-768x318.png\";s:5:\"width\";i:768;s:6:\"height\";i:318;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:26:\"bg-section-05-1536x636.png\";s:5:\"width\";i:1536;s:6:\"height\";i:636;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:25:\"bg-section-05-900x313.png\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:25:\"bg-section-05-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"bg-section-05-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"bg-section-05-600x248.png\";s:5:\"width\";i:600;s:6:\"height\";i:248;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"bg-section-05-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"bg-section-05-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"bg-section-05-600x248.png\";s:5:\"width\";i:600;s:6:\"height\";i:248;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"bg-section-05-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3423,2382,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:483;s:4:\"file\";s:25:\"2019/12/bg-section-04.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"bg-section-04-300x75.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"bg-section-04-1024x258.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"bg-section-04-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"bg-section-04-768x193.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:193;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:26:\"bg-section-04-1536x386.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:386;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:25:\"bg-section-04-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:25:\"bg-section-04-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"bg-section-04-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"bg-section-04-600x151.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:151;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"bg-section-04-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"bg-section-04-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"bg-section-04-600x151.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:151;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"bg-section-04-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3424,2319,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:95;s:6:\"height\";i:85;s:4:\"file\";s:24:\"2019/12/signature-02.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3425,2306,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:510;s:6:\"height\";i:730;s:4:\"file\";s:21:\"2019/12/banner-01.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"banner-01-210x300.png\";s:5:\"width\";i:210;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"banner-01-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:21:\"banner-01-510x313.png\";s:5:\"width\";i:510;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:21:\"banner-01-510x450.png\";s:5:\"width\";i:510;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"banner-01-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"banner-01-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:21:\"banner-01-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"banner-01-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3426,2180,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:294;s:6:\"height\";i:255;s:4:\"file\";s:17:\"2019/12/award.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"award-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:17:\"award-250x255.png\";s:5:\"width\";i:250;s:6:\"height\";i:255;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:17:\"award-250x255.png\";s:5:\"width\";i:250;s:6:\"height\";i:255;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3427,2179,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:186;s:6:\"height\";i:123;s:4:\"file\";s:22:\"2019/12/award-year.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"award-year-150x123.png\";s:5:\"width\";i:150;s:6:\"height\";i:123;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3428,2178,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:680;s:6:\"height\";i:420;s:4:\"file\";s:20:\"2019/12/award-06.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"award-06-300x185.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"award-06-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"award-06-680x313.jpg\";s:5:\"width\";i:680;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:20:\"award-06-600x420.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:420;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"award-06-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"award-06-600x371.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:371;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"award-06-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"award-06-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"award-06-600x371.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:371;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"award-06-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3429,2177,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:680;s:6:\"height\";i:420;s:4:\"file\";s:20:\"2019/12/award-05.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"award-05-300x185.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"award-05-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"award-05-680x313.jpg\";s:5:\"width\";i:680;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:20:\"award-05-600x420.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:420;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"award-05-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"award-05-600x371.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:371;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"award-05-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"award-05-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"award-05-600x371.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:371;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"award-05-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3430,2176,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:680;s:6:\"height\";i:420;s:4:\"file\";s:20:\"2019/12/award-04.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"award-04-300x185.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"award-04-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"award-04-680x313.jpg\";s:5:\"width\";i:680;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:20:\"award-04-600x420.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:420;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"award-04-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"award-04-600x371.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:371;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"award-04-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"award-04-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"award-04-600x371.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:371;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"award-04-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3431,2175,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:680;s:6:\"height\";i:420;s:4:\"file\";s:20:\"2019/12/award-03.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"award-03-300x185.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"award-03-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"award-03-680x313.jpg\";s:5:\"width\";i:680;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:20:\"award-03-600x420.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:420;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"award-03-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"award-03-600x371.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:371;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"award-03-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"award-03-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"award-03-600x371.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:371;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"award-03-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3432,2174,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:680;s:6:\"height\";i:420;s:4:\"file\";s:20:\"2019/12/award-02.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"award-02-300x185.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"award-02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"award-02-680x313.jpg\";s:5:\"width\";i:680;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:20:\"award-02-600x420.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:420;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"award-02-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"award-02-600x371.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:371;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"award-02-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"award-02-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"award-02-600x371.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:371;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"award-02-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3433,2173,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:680;s:6:\"height\";i:420;s:4:\"file\";s:20:\"2019/12/award-01.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"award-01-300x185.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"award-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"award-01-680x313.jpg\";s:5:\"width\";i:680;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:20:\"award-01-600x420.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:420;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"award-01-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"award-01-600x371.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:371;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"award-01-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"award-01-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"award-01-600x371.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:371;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"award-01-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3434,2171,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:26:\"2019/12/home-author-02.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"home-author-02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"home-author-02-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"home-author-02-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3435,2170,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:26:\"2019/12/home-author-01.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"home-author-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"home-author-01-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"home-author-01-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3436,2125,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:536;s:4:\"file\";s:25:\"2019/12/bg-section-04.png\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"bg-section-04-300x84.png\";s:5:\"width\";i:300;s:6:\"height\";i:84;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"bg-section-04-1024x286.png\";s:5:\"width\";i:1024;s:6:\"height\";i:286;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"bg-section-04-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"bg-section-04-768x214.png\";s:5:\"width\";i:768;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:26:\"bg-section-04-1536x429.png\";s:5:\"width\";i:1536;s:6:\"height\";i:429;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:25:\"bg-section-04-900x313.png\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:25:\"bg-section-04-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"bg-section-04-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"bg-section-04-600x168.png\";s:5:\"width\";i:600;s:6:\"height\";i:168;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"bg-section-04-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"bg-section-04-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"bg-section-04-600x168.png\";s:5:\"width\";i:600;s:6:\"height\";i:168;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"bg-section-04-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3437,2117,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:267;s:6:\"height\";i:352;s:4:\"file\";s:24:\"2019/12/home-team-04.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"home-team-04-228x300.jpg\";s:5:\"width\";i:228;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"home-team-04-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:24:\"home-team-04-267x313.jpg\";s:5:\"width\";i:267;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"home-team-04-267x300.jpg\";s:5:\"width\";i:267;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"home-team-04-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"home-team-04-267x300.jpg\";s:5:\"width\";i:267;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"home-team-04-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3438,2116,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:267;s:6:\"height\";i:352;s:4:\"file\";s:24:\"2019/12/home-team-03.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"home-team-03-228x300.jpg\";s:5:\"width\";i:228;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"home-team-03-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:24:\"home-team-03-267x313.jpg\";s:5:\"width\";i:267;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"home-team-03-267x300.jpg\";s:5:\"width\";i:267;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"home-team-03-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"home-team-03-267x300.jpg\";s:5:\"width\";i:267;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"home-team-03-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3439,2115,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:267;s:6:\"height\";i:352;s:4:\"file\";s:24:\"2019/12/home-team-02.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"home-team-02-228x300.jpg\";s:5:\"width\";i:228;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"home-team-02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:24:\"home-team-02-267x313.jpg\";s:5:\"width\";i:267;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"home-team-02-267x300.jpg\";s:5:\"width\";i:267;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"home-team-02-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"home-team-02-267x300.jpg\";s:5:\"width\";i:267;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"home-team-02-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3440,2114,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:267;s:6:\"height\";i:352;s:4:\"file\";s:24:\"2019/12/home-team-01.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"home-team-01-228x300.jpg\";s:5:\"width\";i:228;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"home-team-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:24:\"home-team-01-267x313.jpg\";s:5:\"width\";i:267;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"home-team-01-267x300.jpg\";s:5:\"width\";i:267;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"home-team-01-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"home-team-01-267x300.jpg\";s:5:\"width\";i:267;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"home-team-01-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3441,2091,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:967;s:6:\"height\";i:749;s:4:\"file\";s:25:\"2019/12/bg-section-03.png\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"bg-section-03-300x232.png\";s:5:\"width\";i:300;s:6:\"height\";i:232;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"bg-section-03-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"bg-section-03-768x595.png\";s:5:\"width\";i:768;s:6:\"height\";i:595;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:25:\"bg-section-03-900x313.png\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:25:\"bg-section-03-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"bg-section-03-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"bg-section-03-600x465.png\";s:5:\"width\";i:600;s:6:\"height\";i:465;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"bg-section-03-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"bg-section-03-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"bg-section-03-600x465.png\";s:5:\"width\";i:600;s:6:\"height\";i:465;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"bg-section-03-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3442,2074,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:196;s:6:\"height\";i:196;s:4:\"file\";s:26:\"2019/12/testimonial-10.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"testimonial-10-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3443,2070,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:775;s:4:\"file\";s:25:\"2019/12/bg-section-02.png\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"bg-section-02-300x121.png\";s:5:\"width\";i:300;s:6:\"height\";i:121;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"bg-section-02-1024x413.png\";s:5:\"width\";i:1024;s:6:\"height\";i:413;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"bg-section-02-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"bg-section-02-768x310.png\";s:5:\"width\";i:768;s:6:\"height\";i:310;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:26:\"bg-section-02-1536x620.png\";s:5:\"width\";i:1536;s:6:\"height\";i:620;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:25:\"bg-section-02-900x313.png\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:25:\"bg-section-02-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"bg-section-02-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"bg-section-02-600x242.png\";s:5:\"width\";i:600;s:6:\"height\";i:242;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"bg-section-02-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"bg-section-02-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"bg-section-02-600x242.png\";s:5:\"width\";i:600;s:6:\"height\";i:242;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"bg-section-02-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3444,2056,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:704;s:6:\"height\";i:715;s:4:\"file\";s:25:\"2019/12/bg-section-01.png\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"bg-section-01-295x300.png\";s:5:\"width\";i:295;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"bg-section-01-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:25:\"bg-section-01-704x313.png\";s:5:\"width\";i:704;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:25:\"bg-section-01-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"bg-section-01-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"bg-section-01-600x609.png\";s:5:\"width\";i:600;s:6:\"height\";i:609;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"bg-section-01-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"bg-section-01-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"bg-section-01-600x609.png\";s:5:\"width\";i:600;s:6:\"height\";i:609;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"bg-section-01-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3445,2046,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:624;s:6:\"height\";i:558;s:4:\"file\";s:20:\"2019/12/about-02.png\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"about-02-300x268.png\";s:5:\"width\";i:300;s:6:\"height\";i:268;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"about-02-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"about-02-624x313.png\";s:5:\"width\";i:624;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:20:\"about-02-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"about-02-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"about-02-600x537.png\";s:5:\"width\";i:600;s:6:\"height\";i:537;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"about-02-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"about-02-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"about-02-600x537.png\";s:5:\"width\";i:600;s:6:\"height\";i:537;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"about-02-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3446,2008,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1000;s:4:\"file\";s:24:\"2019/12/bg-slider-03.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"bg-slider-03-300x156.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"bg-slider-03-1024x533.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"bg-slider-03-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"bg-slider-03-768x400.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:25:\"bg-slider-03-1536x800.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:24:\"bg-slider-03-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:24:\"bg-slider-03-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"bg-slider-03-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:24:\"bg-slider-03-600x313.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"bg-slider-03-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"bg-slider-03-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"bg-slider-03-600x313.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"bg-slider-03-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3447,2007,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1000;s:4:\"file\";s:24:\"2019/12/bg-slider-02.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"bg-slider-02-300x156.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"bg-slider-02-1024x533.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"bg-slider-02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"bg-slider-02-768x400.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:25:\"bg-slider-02-1536x800.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:24:\"bg-slider-02-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:24:\"bg-slider-02-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"bg-slider-02-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:24:\"bg-slider-02-600x313.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"bg-slider-02-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"bg-slider-02-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"bg-slider-02-600x313.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"bg-slider-02-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3448,2006,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:143;s:6:\"height\";i:184;s:4:\"file\";s:26:\"2019/12/slider-logo-01.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"slider-logo-01-143x150.png\";s:5:\"width\";i:143;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3449,2000,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:920;s:4:\"file\";s:24:\"2019/12/bg-slider-01.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"bg-slider-01-300x144.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:144;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"bg-slider-01-1024x491.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:491;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"bg-slider-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"bg-slider-01-768x368.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:368;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:25:\"bg-slider-01-1536x736.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:736;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:24:\"bg-slider-01-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:24:\"bg-slider-01-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"bg-slider-01-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:24:\"bg-slider-01-600x288.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"bg-slider-01-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"bg-slider-01-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"bg-slider-01-600x288.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"bg-slider-01-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3450,1991,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:41;s:6:\"height\";i:35;s:4:\"file\";s:28:\"2019/12/icon-themeforest.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3451,1990,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:44;s:6:\"height\";i:44;s:4:\"file\";s:23:\"2019/12/icon-envato.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3452,1989,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:53;s:6:\"height\";i:47;s:4:\"file\";s:27:\"2019/12/icon-codecanyon.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3453,1988,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:41;s:6:\"height\";i:41;s:4:\"file\";s:23:\"2019/12/icon-career.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3454,1985,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:39;s:6:\"height\";i:40;s:4:\"file\";s:23:\"2019/12/icon-google.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3455,1946,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:680;s:6:\"height\";i:450;s:4:\"file\";s:20:\"2019/12/theme-22.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"theme-22-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-22-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"theme-22-680x313.jpg\";s:5:\"width\";i:680;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:20:\"theme-22-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"theme-22-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"theme-22-600x397.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:397;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-22-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"theme-22-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"theme-22-600x397.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:397;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-22-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3456,1945,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2019/12/theme-21.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"theme-21-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-21-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"theme-21-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"theme-21-800x313.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:20:\"theme-21-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"theme-21-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"theme-21-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-21-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"theme-21-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"theme-21-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-21-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3457,1944,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2019/12/theme-20.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"theme-20-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-20-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"theme-20-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"theme-20-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:20:\"theme-20-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"theme-20-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"theme-20-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-20-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"theme-20-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"theme-20-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-20-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3458,1943,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2019/12/theme-19.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"theme-19-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-19-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"theme-19-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"theme-19-800x313.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:20:\"theme-19-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"theme-19-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"theme-19-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-19-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"theme-19-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"theme-19-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-19-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3459,1942,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1000;s:4:\"file\";s:20:\"2019/12/theme-18.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"theme-18-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"theme-18-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-18-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"theme-18-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:21:\"theme-18-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"theme-18-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:20:\"theme-18-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"theme-18-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"theme-18-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-18-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"theme-18-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"theme-18-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-18-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3460,1941,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:20:\"2019/12/theme-17.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"theme-17-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"theme-17-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-17-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"theme-17-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:21:\"theme-17-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"theme-17-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:20:\"theme-17-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"theme-17-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"theme-17-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-17-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"theme-17-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"theme-17-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-17-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3461,1940,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:20:\"2019/12/theme-16.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"theme-16-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"theme-16-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-16-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"theme-16-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"theme-16-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:20:\"theme-16-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"theme-16-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"theme-16-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-16-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"theme-16-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"theme-16-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-16-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3462,1939,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:31:\"2019/12/WhiteTailoredBlazer.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"WhiteTailoredBlazer-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"WhiteTailoredBlazer-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"WhiteTailoredBlazer-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:31:\"WhiteTailoredBlazer-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:31:\"WhiteTailoredBlazer-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"WhiteTailoredBlazer-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:31:\"WhiteTailoredBlazer-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"WhiteTailoredBlazer-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:31:\"WhiteTailoredBlazer-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:31:\"WhiteTailoredBlazer-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"WhiteTailoredBlazer-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3463,1938,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:29:\"2019/12/SlimFitBrightBlue.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"SlimFitBrightBlue-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"SlimFitBrightBlue-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"SlimFitBrightBlue-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:29:\"SlimFitBrightBlue-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:29:\"SlimFitBrightBlue-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"SlimFitBrightBlue-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:29:\"SlimFitBrightBlue-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"SlimFitBrightBlue-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:29:\"SlimFitBrightBlue-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:29:\"SlimFitBrightBlue-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"SlimFitBrightBlue-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3464,1937,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:27:\"2019/12/PureSilkGreyTie.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"PureSilkGreyTie-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"PureSilkGreyTie-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"PureSilkGreyTie-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:27:\"PureSilkGreyTie-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:27:\"PureSilkGreyTie-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"PureSilkGreyTie-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"PureSilkGreyTie-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"PureSilkGreyTie-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:27:\"PureSilkGreyTie-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"PureSilkGreyTie-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"PureSilkGreyTie-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3465,1936,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:27:\"2019/12/PureSilkBlueTie.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"PureSilkBlueTie-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"PureSilkBlueTie-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"PureSilkBlueTie-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:27:\"PureSilkBlueTie-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:27:\"PureSilkBlueTie-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"PureSilkBlueTie-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"PureSilkBlueTie-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"PureSilkBlueTie-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:27:\"PureSilkBlueTie-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"PureSilkBlueTie-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"PureSilkBlueTie-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3466,1935,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:28:\"2019/12/PureSilkBlackTie.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"PureSilkBlackTie-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"PureSilkBlackTie-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"PureSilkBlackTie-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:28:\"PureSilkBlackTie-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:28:\"PureSilkBlackTie-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"PureSilkBlackTie-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:28:\"PureSilkBlackTie-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"PureSilkBlackTie-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:28:\"PureSilkBlackTie-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:28:\"PureSilkBlackTie-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"PureSilkBlackTie-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3467,1934,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:30:\"2019/12/MonochromeCamiMidi.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"MonochromeCamiMidi-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"MonochromeCamiMidi-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"MonochromeCamiMidi-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:30:\"MonochromeCamiMidi-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:30:\"MonochromeCamiMidi-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:30:\"MonochromeCamiMidi-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:30:\"MonochromeCamiMidi-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:30:\"MonochromeCamiMidi-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:30:\"MonochromeCamiMidi-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:30:\"MonochromeCamiMidi-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:30:\"MonochromeCamiMidi-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3468,1933,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:26:\"2019/12/LightBlueShirt.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"LightBlueShirt-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"LightBlueShirt-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"LightBlueShirt-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:26:\"LightBlueShirt-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:26:\"LightBlueShirt-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"LightBlueShirt-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"LightBlueShirt-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"LightBlueShirt-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:26:\"LightBlueShirt-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"LightBlueShirt-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"LightBlueShirt-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3469,1932,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:21:\"2019/12/GreyShirt.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"GreyShirt-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"GreyShirt-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"GreyShirt-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:21:\"GreyShirt-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:21:\"GreyShirt-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"GreyShirt-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:21:\"GreyShirt-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"GreyShirt-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:21:\"GreyShirt-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:21:\"GreyShirt-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"GreyShirt-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3470,1931,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:21:\"2019/12/FlatShoes.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"FlatShoes-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"FlatShoes-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"FlatShoes-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:21:\"FlatShoes-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:21:\"FlatShoes-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"FlatShoes-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:21:\"FlatShoes-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"FlatShoes-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:21:\"FlatShoes-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:21:\"FlatShoes-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"FlatShoes-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3471,1930,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:24:\"2019/12/ChelseaBoots.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"ChelseaBoots-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"ChelseaBoots-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"ChelseaBoots-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:24:\"ChelseaBoots-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:24:\"ChelseaBoots-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"ChelseaBoots-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:24:\"ChelseaBoots-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"ChelseaBoots-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"ChelseaBoots-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"ChelseaBoots-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"ChelseaBoots-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3472,1929,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:27:\"2019/12/CamiSkaterFront.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"CamiSkaterFront-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"CamiSkaterFront-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"CamiSkaterFront-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:27:\"CamiSkaterFront-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:27:\"CamiSkaterFront-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"CamiSkaterFront-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"CamiSkaterFront-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"CamiSkaterFront-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:27:\"CamiSkaterFront-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"CamiSkaterFront-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"CamiSkaterFront-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3473,1928,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:21:\"2019/12/BlackSuit.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"BlackSuit-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"BlackSuit-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"BlackSuit-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:21:\"BlackSuit-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:21:\"BlackSuit-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"BlackSuit-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:21:\"BlackSuit-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"BlackSuit-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:21:\"BlackSuit-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:21:\"BlackSuit-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"BlackSuit-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3474,1927,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:22:\"2019/12/BlackShoes.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"BlackShoes-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"BlackShoes-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"BlackShoes-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:22:\"BlackShoes-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:22:\"BlackShoes-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"BlackShoes-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:22:\"BlackShoes-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"BlackShoes-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"BlackShoes-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"BlackShoes-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"BlackShoes-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3475,1926,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:22:\"2019/12/BlackDress.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"BlackDress-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"BlackDress-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"BlackDress-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:22:\"BlackDress-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:22:\"BlackDress-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"BlackDress-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:22:\"BlackDress-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"BlackDress-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"BlackDress-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"BlackDress-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"BlackDress-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3476,1925,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:23:\"2019/12/BlackBlazer.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"BlackBlazer-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"BlackBlazer-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"BlackBlazer-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:23:\"BlackBlazer-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:23:\"BlackBlazer-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"BlackBlazer-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:23:\"BlackBlazer-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"BlackBlazer-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:23:\"BlackBlazer-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"BlackBlazer-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"BlackBlazer-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3477,1896,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:350;s:6:\"height\";i:1;s:4:\"file\";s:21:\"2019/12/about-gap.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"about-gap-300x1.png\";s:5:\"width\";i:300;s:6:\"height\";i:1;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"about-gap-150x1.png\";s:5:\"width\";i:150;s:6:\"height\";i:1;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:19:\"about-gap-300x1.png\";s:5:\"width\";i:300;s:6:\"height\";i:1;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:19:\"about-gap-250x1.png\";s:5:\"width\";i:250;s:6:\"height\";i:1;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:19:\"about-gap-300x1.png\";s:5:\"width\";i:300;s:6:\"height\";i:1;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"about-gap-250x1.png\";s:5:\"width\";i:250;s:6:\"height\";i:1;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3478,1892,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:95;s:6:\"height\";i:85;s:4:\"file\";s:21:\"2019/12/signature.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3479,1877,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:558;s:6:\"height\";i:631;s:4:\"file\";s:18:\"2019/12/about1.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"about1-265x300.png\";s:5:\"width\";i:265;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"about1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:18:\"about1-558x313.png\";s:5:\"width\";i:558;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:18:\"about1-558x450.png\";s:5:\"width\";i:558;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:18:\"about1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:18:\"about1-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:18:\"about1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"about1-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3480,1860,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:900;s:4:\"file\";s:20:\"2019/12/theme-15.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"theme-15-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-15-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"theme-15-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"theme-15-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:20:\"theme-15-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"theme-15-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"theme-15-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-15-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"theme-15-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"theme-15-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-15-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3481,1706,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:370;s:6:\"height\";i:390;s:4:\"file\";s:23:\"2019/12/team-single.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"team-single-285x300.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"team-single-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:23:\"team-single-370x313.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"team-single-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"team-single-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:23:\"team-single-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"team-single-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3482,1693,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:19:\"2019/12/team-04.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3483,1692,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:19:\"2019/12/team-03.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3484,1691,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:19:\"2019/12/team-02.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3485,1690,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:19:\"2019/12/team-01.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3486,1678,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:196;s:6:\"height\";i:36;s:4:\"file\";s:21:\"2019/12/client-05.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"client-05-150x36.png\";s:5:\"width\";i:150;s:6:\"height\";i:36;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3487,1658,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:130;s:6:\"height\";i:130;s:4:\"file\";s:26:\"2019/12/testimonial-09.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3488,1657,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:130;s:6:\"height\";i:130;s:4:\"file\";s:26:\"2019/12/testimonial-08.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3489,1656,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:130;s:6:\"height\";i:130;s:4:\"file\";s:26:\"2019/12/testimonial-07.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3490,1568,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:601;s:6:\"height\";i:706;s:4:\"file\";s:26:\"2019/12/contact-about1.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"contact-about1-255x300.png\";s:5:\"width\";i:255;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"contact-about1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:26:\"contact-about1-601x313.png\";s:5:\"width\";i:601;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:26:\"contact-about1-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"contact-about1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"contact-about1-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:26:\"contact-about1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"contact-about1-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3491,1558,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:80;s:6:\"height\";i:80;s:4:\"file\";s:19:\"2019/12/favicon.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3492,1557,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:22:\"2019/12/gallery-06.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"gallery-06-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"gallery-06-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:22:\"gallery-06-600x313.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:22:\"gallery-06-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"gallery-06-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"gallery-06-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"gallery-06-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"gallery-06-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3493,1556,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:22:\"2019/12/gallery-05.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"gallery-05-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"gallery-05-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:22:\"gallery-05-600x313.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:22:\"gallery-05-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"gallery-05-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"gallery-05-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"gallery-05-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"gallery-05-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3494,1555,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:22:\"2019/12/gallery-04.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"gallery-04-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"gallery-04-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:22:\"gallery-04-600x313.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:22:\"gallery-04-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"gallery-04-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"gallery-04-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"gallery-04-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"gallery-04-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3495,1554,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:22:\"2019/12/gallery-03.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"gallery-03-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"gallery-03-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:22:\"gallery-03-600x313.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:22:\"gallery-03-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"gallery-03-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"gallery-03-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"gallery-03-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"gallery-03-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3496,1553,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:22:\"2019/12/gallery-02.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"gallery-02-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"gallery-02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:22:\"gallery-02-600x313.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:22:\"gallery-02-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"gallery-02-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"gallery-02-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"gallery-02-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"gallery-02-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3497,1552,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:22:\"2019/12/gallery-01.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"gallery-01-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"gallery-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:22:\"gallery-01-600x313.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:22:\"gallery-01-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"gallery-01-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"gallery-01-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"gallery-01-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"gallery-01-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3498,1543,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1200;s:4:\"file\";s:20:\"2019/11/theme-14.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"theme-14-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"theme-14-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-14-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"theme-14-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:21:\"theme-14-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"theme-14-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:20:\"theme-14-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"theme-14-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"theme-14-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-14-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"theme-14-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"theme-14-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-14-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3499,1542,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1200;s:4:\"file\";s:20:\"2019/11/theme-13.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"theme-13-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"theme-13-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-13-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"theme-13-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:21:\"theme-13-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"theme-13-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:20:\"theme-13-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"theme-13-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"theme-13-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-13-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"theme-13-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"theme-13-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-13-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3500,1541,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1200;s:4:\"file\";s:20:\"2019/11/theme-12.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"theme-12-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"theme-12-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-12-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"theme-12-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:21:\"theme-12-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"theme-12-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:20:\"theme-12-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"theme-12-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"theme-12-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-12-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"theme-12-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"theme-12-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-12-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3501,1540,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1200;s:4:\"file\";s:20:\"2019/11/theme-11.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"theme-11-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"theme-11-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"theme-11-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:21:\"theme-11-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"theme-11-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:20:\"theme-11-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"theme-11-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"theme-11-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-11-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"theme-11-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"theme-11-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-11-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3502,1539,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1200;s:4:\"file\";s:20:\"2019/11/theme-10.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"theme-10-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"theme-10-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-10-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"theme-10-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:21:\"theme-10-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"theme-10-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:20:\"theme-10-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"theme-10-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"theme-10-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-10-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"theme-10-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"theme-10-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-10-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3503,1538,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1200;s:4:\"file\";s:20:\"2019/11/theme-09.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"theme-09-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"theme-09-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-09-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"theme-09-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:21:\"theme-09-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"theme-09-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:20:\"theme-09-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"theme-09-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"theme-09-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-09-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"theme-09-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"theme-09-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-09-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3504,1537,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1200;s:4:\"file\";s:20:\"2019/11/theme-08.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"theme-08-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"theme-08-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-08-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"theme-08-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:21:\"theme-08-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"theme-08-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:20:\"theme-08-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"theme-08-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"theme-08-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-08-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"theme-08-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"theme-08-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-08-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3505,1536,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1200;s:4:\"file\";s:20:\"2019/11/theme-07.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"theme-07-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"theme-07-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-07-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"theme-07-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:21:\"theme-07-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"theme-07-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:20:\"theme-07-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"theme-07-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"theme-07-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-07-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"theme-07-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"theme-07-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-07-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3506,1535,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1200;s:4:\"file\";s:20:\"2019/11/theme-06.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"theme-06-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"theme-06-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-06-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"theme-06-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:21:\"theme-06-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"theme-06-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:20:\"theme-06-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"theme-06-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"theme-06-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-06-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"theme-06-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"theme-06-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-06-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3507,1534,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1200;s:4:\"file\";s:20:\"2019/11/theme-05.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"theme-05-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"theme-05-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-05-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"theme-05-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:21:\"theme-05-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"theme-05-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:20:\"theme-05-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"theme-05-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"theme-05-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-05-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"theme-05-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"theme-05-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-05-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3508,1533,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1200;s:4:\"file\";s:20:\"2019/11/theme-04.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"theme-04-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"theme-04-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-04-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"theme-04-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:21:\"theme-04-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"theme-04-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:20:\"theme-04-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"theme-04-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"theme-04-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-04-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"theme-04-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"theme-04-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-04-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3509,1532,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1200;s:4:\"file\";s:20:\"2019/11/theme-03.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"theme-03-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"theme-03-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-03-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"theme-03-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:21:\"theme-03-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"theme-03-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:20:\"theme-03-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"theme-03-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"theme-03-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-03-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"theme-03-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"theme-03-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-03-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3510,1531,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1200;s:4:\"file\";s:20:\"2019/11/theme-02.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"theme-02-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"theme-02-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"theme-02-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:21:\"theme-02-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"theme-02-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:20:\"theme-02-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"theme-02-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"theme-02-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-02-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"theme-02-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"theme-02-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-02-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3511,1530,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1200;s:4:\"file\";s:20:\"2019/11/theme-01.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"theme-01-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"theme-01-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"theme-01-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:21:\"theme-01-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"theme-01-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:20:\"theme-01-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"theme-01-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"theme-01-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-01-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"theme-01-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"theme-01-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-01-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3512,1524,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:145;s:6:\"height\";i:45;s:4:\"file\";s:23:\"2019/10/google-play.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3513,1522,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:157;s:6:\"height\";i:46;s:4:\"file\";s:21:\"2019/10/app-store.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"app-store-150x46.png\";s:5:\"width\";i:150;s:6:\"height\";i:46;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3514,1516,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:95;s:6:\"height\";i:337;s:4:\"file\";s:22:\"2019/10/bg-footer1.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"bg-footer1-85x300.png\";s:5:\"width\";i:85;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"bg-footer1-95x150.png\";s:5:\"width\";i:95;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:21:\"bg-footer1-95x313.png\";s:5:\"width\";i:95;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"bg-footer1-95x300.png\";s:5:\"width\";i:95;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"bg-footer1-95x285.png\";s:5:\"width\";i:95;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:21:\"bg-footer1-95x300.png\";s:5:\"width\";i:95;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"bg-footer1-95x285.png\";s:5:\"width\";i:95;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3515,1513,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:223;s:6:\"height\";i:59;s:4:\"file\";s:23:\"2019/10/logo-footer.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"logo-footer-150x59.png\";s:5:\"width\";i:150;s:6:\"height\";i:59;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3516,1512,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:570;s:4:\"file\";s:25:\"2019/11/bg-page-title.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"bg-page-title-300x89.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:89;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"bg-page-title-1024x304.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:304;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"bg-page-title-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"bg-page-title-768x228.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:228;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:26:\"bg-page-title-1536x456.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:456;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:25:\"bg-page-title-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:25:\"bg-page-title-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"bg-page-title-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"bg-page-title-600x178.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:178;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"bg-page-title-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"bg-page-title-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"bg-page-title-600x178.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:178;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"bg-page-title-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3517,1000,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:170;s:6:\"height\";i:35;s:4:\"file\";s:21:\"2019/11/client-04.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"client-04-150x35.png\";s:5:\"width\";i:150;s:6:\"height\";i:35;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3518,999,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:166;s:6:\"height\";i:38;s:4:\"file\";s:21:\"2019/11/client-03.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"client-03-150x38.png\";s:5:\"width\";i:150;s:6:\"height\";i:38;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3519,998,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:143;s:6:\"height\";i:42;s:4:\"file\";s:21:\"2019/11/client-02.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3520,997,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:169;s:6:\"height\";i:35;s:4:\"file\";s:21:\"2019/11/client-01.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"client-01-150x35.png\";s:5:\"width\";i:150;s:6:\"height\";i:35;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3521,402,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:109;s:6:\"height\";i:109;s:4:\"file\";s:26:\"2019/11/testimonial-06.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3522,401,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:109;s:6:\"height\";i:109;s:4:\"file\";s:26:\"2019/11/testimonial-05.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3523,400,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:109;s:6:\"height\";i:109;s:4:\"file\";s:26:\"2019/11/testimonial-04.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3524,399,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:109;s:6:\"height\";i:109;s:4:\"file\";s:26:\"2019/11/testimonial-03.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3525,398,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:109;s:6:\"height\";i:109;s:4:\"file\";s:26:\"2019/11/testimonial-02.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3526,397,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:109;s:6:\"height\";i:109;s:4:\"file\";s:26:\"2019/11/testimonial-01.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3527,238,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:92;s:6:\"height\";i:92;s:4:\"file\";s:21:\"2019/11/author-02.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3528,237,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:92;s:6:\"height\";i:92;s:4:\"file\";s:21:\"2019/11/author-01.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3537,3193,'_edit_lock','1618447881:1'),(3610,4117,'_wp_page_template','default'),(3611,4117,'_elementor_edit_mode','builder'),(3612,4117,'_elementor_template_type','wp-page'),(3613,4117,'_elementor_version','3.1.4'),(3614,4117,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a609d52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1fdd1c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"73\",\"right\":\"0\",\"bottom\":\"95\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have appreciated by our clients!\",\"sub_title\":\"Testimonial\",\"sub_title_color\":\"#00C7D4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#00C7D4\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/author-02.jpg\",\"id\":238},\"title\":\"Maria Silverii\",\"position\":\"CEO of Blue Illusion\",\"description\":\"\\u201c I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail as a Leadership Program\\u2019 is Her passion.\\u201d\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/author-01.jpg\",\"id\":237},\"title\":\"Rebecca Leo \",\"position\":\"Web Designer\",\"description\":\"\\u201c I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail as a Leadership Program\\u2019 is Her passion.\\u201d\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"Blog\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"99958ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(3634,4126,'_wp_page_template','default'),(3635,4126,'_elementor_edit_mode','builder'),(3636,4126,'_elementor_template_type','wp-page'),(3637,4126,'_elementor_version','3.1.4'),(3638,4126,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a609d52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1fdd1c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"73\",\"right\":\"0\",\"bottom\":\"95\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have appreciated by our clients!\",\"sub_title\":\"Testimonial\",\"sub_title_color\":\"#00C7D4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#00C7D4\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/author-02.jpg\",\"id\":238},\"title\":\"Maria Silverii\",\"position\":\"CEO of Blue Illusion\",\"description\":\"\\u201c I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail as a Leadership Program\\u2019 is Her passion.\\u201d\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/author-01.jpg\",\"id\":237},\"title\":\"Rebecca Leo \",\"position\":\"Web Designer\",\"description\":\"\\u201c I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail as a Leadership Program\\u2019 is Her passion.\\u201d\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"Blog\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"99958ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(3618,4118,'_wp_attached_file','2021/03/Screen-Shot-2021-03-26-at-1.45.54-PM.png'),(3619,4118,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:466;s:6:\"height\";i:178;s:4:\"file\";s:48:\"2021/03/Screen-Shot-2021-03-26-at-1.45.54-PM.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-03-26-at-1.45.54-PM-300x115.png\";s:5:\"width\";i:300;s:6:\"height\";i:115;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-03-26-at-1.45.54-PM-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:48:\"Screen-Shot-2021-03-26-at-1.45.54-PM-300x178.png\";s:5:\"width\";i:300;s:6:\"height\";i:178;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-03-26-at-1.45.54-PM-250x178.png\";s:5:\"width\";i:250;s:6:\"height\";i:178;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-03-26-at-1.45.54-PM-300x178.png\";s:5:\"width\";i:300;s:6:\"height\";i:178;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-03-26-at-1.45.54-PM-250x178.png\";s:5:\"width\";i:250;s:6:\"height\";i:178;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3622,4120,'_wp_attached_file','2021/03/Screen-Shot-2021-03-26-at-11.38.59-PM.png'),(3623,4120,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:928;s:6:\"height\";i:1328;s:4:\"file\";s:49:\"2021/03/Screen-Shot-2021-03-26-at-11.38.59-PM.png\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2021-03-26-at-11.38.59-PM-210x300.png\";s:5:\"width\";i:210;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:50:\"Screen-Shot-2021-03-26-at-11.38.59-PM-716x1024.png\";s:5:\"width\";i:716;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2021-03-26-at-11.38.59-PM-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:50:\"Screen-Shot-2021-03-26-at-11.38.59-PM-768x1099.png\";s:5:\"width\";i:768;s:6:\"height\";i:1099;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2021-03-26-at-11.38.59-PM-900x313.png\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2021-03-26-at-11.38.59-PM-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:49:\"Screen-Shot-2021-03-26-at-11.38.59-PM-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2021-03-26-at-11.38.59-PM-600x859.png\";s:5:\"width\";i:600;s:6:\"height\";i:859;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2021-03-26-at-11.38.59-PM-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2021-03-26-at-11.38.59-PM-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2021-03-26-at-11.38.59-PM-600x859.png\";s:5:\"width\";i:600;s:6:\"height\";i:859;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2021-03-26-at-11.38.59-PM-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3550,4103,'_wp_page_template','default'),(3551,4103,'_elementor_edit_mode','builder'),(3552,4103,'_elementor_template_type','wp-page'),(3553,4103,'_elementor_version','2.8.5'),(3554,4103,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a14fd35\",\"elType\":\"widget\",\"settings\":{\"content\":[{\"icon_type\":\"icon\",\"icon\":{\"value\":\"\",\"library\":\"\"},\"icon_image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"\",\"description\":\"\",\"button_text\":\"\",\"button_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"df0046f\"},{\"icon_type\":\"icon\",\"icon\":{\"value\":\"\",\"library\":\"\"},\"icon_image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"\",\"description\":\"\",\"button_text\":\"\",\"button_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"144974b\"}],\"content_fancy_box\":[{\"icon_type\":\"image\",\"icon\":{\"value\":\"flaticon flaticon-diagram\",\"library\":\"flaticon\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-icon-service1.png\",\"id\":3292},\"title\":\"Business Planning\",\"description\":\"We develop the relationships that under the next phase in your organisation.\",\"button_text\":\"Read more\",\"button_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/service\\/seo-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"e3dbcbe\"},{\"icon_type\":\"image\",\"icon\":{\"value\":\"flaticon flaticon-diagram\",\"library\":\"flaticon\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-icon-service2.png\",\"id\":3294},\"title\":\"Stakeholder relations\",\"description\":\"Developing a program to improve the best sanitation and alleviate poverty.\",\"button_text\":\"Read more\",\"button_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/service\\/seo-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"c36fabf\"},{\"icon_type\":\"image\",\"icon\":{\"value\":\"flaticon flaticon-diagram\",\"library\":\"flaticon\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-icon-service3.png\",\"id\":3295},\"title\":\"Risk management\",\"description\":\"Through nuanced stakeholder relations and astute partnership building.\",\"button_text\":\"Read more\",\"button_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/service\\/seo-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5b4e6a0\"},{\"icon_type\":\"image\",\"icon\":{\"value\":\"flaticon flaticon-diagram\",\"library\":\"flaticon\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-icon-service1.png\",\"id\":3292},\"title\":\"Business Planning\",\"description\":\"We develop the relationships that under the next phase in your organisation.\",\"button_text\":\"Read more\",\"button_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/service\\/seo-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"206cb42\"},{\"icon_type\":\"image\",\"icon\":{\"value\":\"flaticon flaticon-diagram\",\"library\":\"flaticon\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-icon-service2.png\",\"id\":3294},\"title\":\"Stakeholder relations\",\"description\":\"Developing a program to improve the best sanitation and alleviate poverty.\",\"button_text\":\"Read more\",\"button_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/service\\/seo-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"205af4f\"},{\"icon_type\":\"image\",\"icon\":{\"value\":\"flaticon flaticon-diagram\",\"library\":\"flaticon\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-icon-service3.png\",\"id\":3295},\"title\":\"Risk management\",\"description\":\"Through nuanced stakeholder relations and astute partnership building.\",\"button_text\":\"Read more\",\"button_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/service\\/seo-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ce109f\"}],\"col_md\":\"2\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_carousel\"},{\"id\":\"3a516fc\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"You can also find our <a href=\\\"#\\\" class=\\\"link-underline\\\">Consultant Service<\\/a> to contact for the consulting\",\"align\":\"center\",\"text_color\":\"#000000\",\"link_color\":\"#2635F5\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9664f51\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-bg-section-01.jpg\",\"id\":3304},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"bottom\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"f96b168\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9e41435\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"css_classes\":\"feature-offset\"},\"elements\":[{\"id\":\"3b4b403\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4691af72\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Strategic vision\",\"description_text\":\"A client once told us that where the others focus on one star one issue we see the whole sky. \",\"_margin\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"icon_color\":\"#4B58FF\",\"title_color\":\"#0E0E0E\",\"desc_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"ct_feature\"},{\"id\":\"7777c895\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Interpersonal skills\",\"description_text\":\"Forging relationships between\\nmulti-national corporations, govern ments and global NGOs begins.\",\"_margin\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"icon_color\":\"#4B58FF\",\"title_color\":\"#0E0E0E\",\"desc_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"ct_feature\"}],\"isInner\":true},{\"id\":\"708318e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"16ac3530\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Networks that span\",\"description_text\":\"Over more than 20 years, we\\u2019ve \\nfostered trusted relationships across government.\",\"_margin\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"icon_color\":\"#4B58FF\",\"title_color\":\"#0E0E0E\",\"desc_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"ct_feature\"},{\"id\":\"186c3405\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Flexible delivery\",\"description_text\":\"We adapt our delivery to the way your work, whether as an external provider or by providing senior.\",\"_margin\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"icon_color\":\"#4B58FF\",\"title_color\":\"#0E0E0E\",\"desc_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"ct_feature\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1383f02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"be402ff\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"particle\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-shape-6.png\",\"id\":3349},\"particle_animate\":\"shape-animate1\",\"top_positioon\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"_id\":\"ceb05ff\"},{\"particle\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-shape-7.png\",\"id\":3350},\"particle_animate\":\"shape-animate2\",\"top_positioon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"_id\":\"39fffe4\"},{\"particle\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-shape-5.png\",\"id\":3348},\"particle_animate\":\"shape-animate6\",\"top_positioon\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_id\":\"a3a57b0\"}]},\"elements\":[],\"widgetType\":\"ct_particle_animate\"},{\"id\":\"6ccf3b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Don\\u2019t misread here we have random & interesting facts will inspire you.\\n\",\"sub_title\":\"Why Choose us?\",\"sub_title_color\":\"#00C7D4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#00C7D4\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a745e15\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"b8c6e35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"112\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2453399\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_css_classes\":\"text-center\"},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":true},{\"id\":\"8566a64\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f8ae85\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"ending_number\":105,\"suffix\":\"+\",\"title\":\"Team <br\\/> Members\",\"show_icon\":\"true\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-counter-icon1.png\",\"id\":3315},\"ct_animate\":\"wow fadeInUp\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"156101f\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"ending_number\":18,\"suffix\":\"+\",\"title\":\"Winning <br\\/> Awards\",\"show_icon\":\"true\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-counter-icon2.png\",\"id\":3316},\"ct_animate\":\"wow fadeInUp\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"275cc9f\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"ending_number\":310,\"suffix\":\"+\",\"title\":\"Completed <br\\/> Works\",\"show_icon\":\"true\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-counter-icon3.png\",\"id\":3317},\"ct_animate\":\"wow fadeInUp\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"fea2c81\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"ending_number\":215,\"suffix\":\"+\",\"title\":\"Client\\u2019s <br\\/> Feedback\",\"show_icon\":\"true\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-counter-icon4.png\",\"id\":3318},\"ct_animate\":\"wow fadeInUp\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9c7403d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a1a6cd5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"95\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#0E0E0E\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"4a6e471\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d47d960\",\"elType\":\"widget\",\"settings\":{\"title\":\"Don\\u2019t misread here we have random & interesting facts will inspire you.\\n\",\"sub_title\":\"Why Choose us?\",\"sub_title_color\":\"#00C7D4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#00C7D4\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b5cdb15\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Strategic vision\",\"description_text\":\"A client once told us that where the others focus on one star one issue we see the whole sky. \",\"_margin\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"icon_color\":\"#4B58FF\",\"title_color\":\"#FFFFFF\",\"desc_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_feature\"},{\"id\":\"a02c1eb\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Interpersonal skills\",\"description_text\":\"Forging relationships between\\nmulti-national corporations, govern ments and global NGOs begins.\",\"_margin\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"icon_color\":\"#4B58FF\",\"title_color\":\"#FFFFFF\",\"desc_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_feature\"},{\"id\":\"857db09\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Networks that span\",\"description_text\":\"Over more than 20 years, we\\u2019ve \\nfostered trusted relationships across government.\",\"_margin\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"icon_color\":\"#4B58FF\",\"title_color\":\"#FFFFFF\",\"desc_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_feature\"},{\"id\":\"f6c95b9\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Flexible delivery\",\"description_text\":\"We adapt our delivery to the way your work, whether as an external provider or by providing senior.\",\"_margin\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"icon_color\":\"#4B58FF\",\"title_color\":\"#FFFFFF\",\"desc_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_feature\"},{\"id\":\"4372fd7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style3\",\"_margin\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"5dd01c0\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"ending_number\":105,\"suffix\":\"+\",\"title\":\"Team <br\\/> Members\",\"show_icon\":\"true\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-counter-icon1.png\",\"id\":3315},\"ct_animate\":\"wow fadeInUp\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"cc755c1\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"ending_number\":18,\"suffix\":\"+\",\"title\":\"Winning <br\\/> Awards\",\"show_icon\":\"true\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-counter-icon2.png\",\"id\":3316},\"ct_animate\":\"wow fadeInUp\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"68ad207\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"ending_number\":310,\"suffix\":\"+\",\"title\":\"Completed <br\\/> Works\",\"show_icon\":\"true\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-counter-icon3.png\",\"id\":3317},\"ct_animate\":\"wow fadeInUp\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"6e3d424\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"ending_number\":215,\"suffix\":\"+\",\"title\":\"Client\\u2019s <br\\/> Feedback\",\"show_icon\":\"true\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-counter-icon4.png\",\"id\":3318},\"ct_animate\":\"wow fadeInUp\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"41d68de\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fccf35d\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"particle\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-shape-6.png\",\"id\":3349},\"particle_animate\":\"shape-animate1\",\"top_positioon\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"_id\":\"ceb05ff\"},{\"particle\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-shape-7.png\",\"id\":3350},\"particle_animate\":\"shape-animate2\",\"top_positioon\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"_id\":\"39fffe4\"},{\"particle\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-shape-5.png\",\"id\":3348},\"particle_animate\":\"shape-animate6\",\"top_positioon\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"_id\":\"a3a57b0\"}]},\"elements\":[],\"widgetType\":\"ct_particle_animate\"},{\"id\":\"c275883\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":95,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"73\",\"right\":\"0\",\"bottom\":\"95\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"89fb46a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"ct_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"title\":\"Tax Consultancy\",\"description\":\"This is one of many areas of\\nprofessional services where our firm is well ahead of the competition.\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/service\\/business-strategy\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"ad3ffd2\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-service-icon4.png\",\"id\":3364}},{\"ct_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"title\":\"Audit & assurance\",\"description\":\"People are only as good as the tools they possess. So, to consistently deliver high-quality auditing services.\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/service\\/business-strategy\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-service-icon5.png\",\"id\":3365},\"_id\":\"549e205\"},{\"ct_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"title\":\"Value Added Tax\",\"description\":\"We are providing and dealing with all sorts of legal and professional services and matters to operate.\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/service\\/business-strategy\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-service-icon6.png\",\"id\":3366},\"_id\":\"c96dff0\"},{\"ct_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"title\":\"Accounting Services\",\"description\":\"Our professionals provide a range of accounting and assurance services of the highest standards.\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/service\\/business-strategy\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-service-icon7.png\",\"id\":3367},\"_id\":\"c5fa888\"},{\"ct_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"title\":\"Tax Outsourcing\",\"description\":\"Unlike our competitors we have in house qualified lawyers and accountants who can help you.\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/service\\/business-strategy\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-service-icon8.png\",\"id\":3368},\"_id\":\"70a20db\"},{\"ct_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"title\":\"Amazing Strategy\",\"description\":\"Operates an atmosphere that promote creative approach for clients needs.\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/service\\/business-strategy\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-service-icon9.png\",\"id\":3369},\"_id\":\"838b0fb\"}],\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b7bb6c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#0E0E0E\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-bg-section-02.png\",\"id\":3411},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\"},\"elements\":[{\"id\":\"a796c56\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":28,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"9\",\"bottom\":\"0\",\"left\":\"9\",\"isLinked\":false},\"_inline_size_tablet\":40,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"3368f88\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2771f7f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have expert team members\",\"sub_title\":\"Team member \",\"sub_title_color\":\"#00C7D4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#00C7D4\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"16b2035\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Learn about the skills that are most useful in helping you to work effectively as part of a team, and how this fits with Belbin\'s Team Roles.\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"42\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"d268853\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"For any Emergency <b class=\\\"text-underline\\\">Call:<\\/b>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"86\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"11\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"5a80544\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<i class=\\\"h6-icon-phone fac fac-phone\\\">icon phone<\\/i>(210) 123-451\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"86\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"f6eeeb2\",\"elType\":\"widget\",\"settings\":{\"style\":\"btn-round2\",\"text\":\"Team details\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"btn_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_button\"},{\"id\":\"6684593\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"2dc2543\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":72,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"c6f767f\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"title\":\"\",\"position\":\"\",\"btn_text\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"8fd12a6\"}],\"content_list2\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-team1.jpg\",\"id\":3383},\"title\":\"Iven Rocky\",\"position\":\"Senior Web Developer\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-dribbble\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"1f79747\",\"progressbar\":\"[{\\\"title\\\":\\\"WordPress\\\",\\\"number\\\":\\\"90\\\"},{\\\"title\\\":\\\"Java\\\",\\\"number\\\":\\\"50\\\"},{\\\"title\\\":\\\"Css\\\",\\\"number\\\":\\\"70\\\"}]\",\"lists\":\"\",\"image_position\":\"img-right\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Rebecca Leo\",\"position\":\"Web Designer\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-youtube-play\\\",\\\"url\\\":\\\"#\\\"}]\",\"progressbar\":\"[{\\\"title\\\":\\\"Photoshop\\\",\\\"number\\\":\\\"90\\\"},{\\\"title\\\":\\\"Sketch\\\",\\\"number\\\":\\\"80\\\"},{\\\"title\\\":\\\"Css\\\",\\\"number\\\":\\\"70\\\"}]\",\"lists\":\"\",\"_id\":\"da16f47\",\"image_position\":\"img-right\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-team3.jpg\",\"id\":3400},\"title\":\"Adam Ivan\",\"position\":\"Chef Advisor\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-dribbble\\\",\\\"url\\\":\\\"#\\\"}]\",\"progressbar\":\"[{\\\"title\\\":\\\"Business Sense\\\",\\\"number\\\":\\\"90\\\"},{\\\"title\\\":\\\"Cleanliness\\\",\\\"number\\\":\\\"80\\\"},{\\\"title\\\":\\\"Creativity\\\",\\\"number\\\":\\\"70\\\"}]\",\"lists\":\"\",\"_id\":\"9d03385\",\"image_position\":\"img-left\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Obira Franc\",\"position\":\"Tax Consultant\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-dribbble\\\",\\\"url\\\":\\\"#\\\"}]\",\"progressbar\":\"[{\\\"title\\\":\\\"Negotiation\\\",\\\"number\\\":\\\"90\\\"},{\\\"title\\\":\\\"Tax law\\\",\\\"number\\\":\\\"50\\\"},{\\\"title\\\":\\\"Organisation\\\",\\\"number\\\":\\\"70\\\"}]\",\"lists\":\"\",\"_id\":\"f836421\",\"image_position\":\"img-left\"}],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a99864e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"115\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#0E0E0E\"},\"elements\":[{\"id\":\"1288a01c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e19352b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"44\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c7f8f11\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.332999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"943ec01\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are very happy for our awesome case studies!\",\"sub_title\":\"Case Studies\",\"sub_title_color\":\"#00C7D4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#00C7D4\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"13ed5210\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.62700000000000244426701101474463939666748046875},\"elements\":[{\"id\":\"486ee6f8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Like what you see? Contact us to see what type of solutions we can deploy for your business!\",\"text_color\":\"#ABABAB\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3f8eab43\",\"elType\":\"widget\",\"settings\":{\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"layout\":\"2\",\"col_sm\":\"1\",\"arrows\":\"true\",\"arrow_style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#151D85\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false}},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have appreciated by our clients!\",\"sub_title\":\"Testimonial\",\"sub_title_color\":\"#00C7D4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#00C7D4\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/author-02.jpg\",\"id\":238},\"title\":\"Maria Silverii\",\"position\":\"CEO of Blue Illusion\",\"description\":\"\\u201c I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail as a Leadership Program\\u2019 is Her passion.\\u201d\",\"_id\":\"f8dba69\",\"sub_title\":\"\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/author-01.jpg\",\"id\":237},\"title\":\"Rebecca Leo \",\"position\":\"Web Designer\",\"description\":\"\\u201c I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail as a Leadership Program\\u2019 is Her passion.\\u201d\",\"_id\":\"5f76277\",\"sub_title\":\"\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-tax.png\",\"id\":3468},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-180\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"Blog\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"99958ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4588050c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-14\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7b2eb799\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"30ef0fdc\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(3624,4121,'_wp_attached_file','2021/03/golden-tee.jpeg'),(3625,4121,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:933;s:6:\"height\";i:1432;s:4:\"file\";s:23:\"2021/03/golden-tee.jpeg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"golden-tee-195x300.jpeg\";s:5:\"width\";i:195;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"golden-tee-667x1024.jpeg\";s:5:\"width\";i:667;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"golden-tee-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"golden-tee-768x1179.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:1179;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:23:\"golden-tee-900x313.jpeg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:23:\"golden-tee-600x450.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"golden-tee-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:23:\"golden-tee-600x921.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:921;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"golden-tee-250x285.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:23:\"golden-tee-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"golden-tee-600x921.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:921;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"golden-tee-250x285.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3626,4122,'_wp_attached_file','2021/03/pantherhighlandmaplefullbody.png'),(3627,4122,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1495;s:4:\"file\";s:40:\"2021/03/pantherhighlandmaplefullbody.png\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"pantherhighlandmaplefullbody-201x300.png\";s:5:\"width\";i:201;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"pantherhighlandmaplefullbody-685x1024.png\";s:5:\"width\";i:685;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"pantherhighlandmaplefullbody-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"pantherhighlandmaplefullbody-768x1148.png\";s:5:\"width\";i:768;s:6:\"height\";i:1148;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:40:\"pantherhighlandmaplefullbody-900x313.png\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:40:\"pantherhighlandmaplefullbody-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:40:\"pantherhighlandmaplefullbody-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:40:\"pantherhighlandmaplefullbody-600x897.png\";s:5:\"width\";i:600;s:6:\"height\";i:897;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:40:\"pantherhighlandmaplefullbody-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:40:\"pantherhighlandmaplefullbody-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:40:\"pantherhighlandmaplefullbody-600x897.png\";s:5:\"width\";i:600;s:6:\"height\";i:897;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:40:\"pantherhighlandmaplefullbody-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3628,4123,'_wp_attached_file','2021/03/billiard-table-.jpeg'),(3629,4123,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:560;s:6:\"height\";i:560;s:4:\"file\";s:28:\"2021/03/billiard-table-.jpeg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"billiard-table--300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"billiard-table--150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:28:\"billiard-table--560x313.jpeg\";s:5:\"width\";i:560;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:28:\"billiard-table--560x450.jpeg\";s:5:\"width\";i:560;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"billiard-table--300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"billiard-table--250x285.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:28:\"billiard-table--300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"billiard-table--250x285.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3630,4124,'_wp_attached_file','2021/03/claw-machine.jpeg'),(3631,4124,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:720;s:4:\"file\";s:25:\"2021/03/claw-machine.jpeg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"claw-machine-300x180.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"claw-machine-1024x614.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"claw-machine-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"claw-machine-768x461.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:25:\"claw-machine-900x313.jpeg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:25:\"claw-machine-600x450.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"claw-machine-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"claw-machine-600x360.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"claw-machine-250x285.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"claw-machine-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"claw-machine-600x360.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"claw-machine-250x285.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3632,4125,'_wp_attached_file','2021/03/touch-tunes-.jpeg'),(3633,4125,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1098;s:6:\"height\";i:612;s:4:\"file\";s:25:\"2021/03/touch-tunes-.jpeg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"touch-tunes--300x167.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"touch-tunes--1024x571.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:571;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"touch-tunes--150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"touch-tunes--768x428.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:428;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:25:\"touch-tunes--900x313.jpeg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:25:\"touch-tunes--600x450.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"touch-tunes--300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"touch-tunes--600x334.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:334;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"touch-tunes--250x285.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"touch-tunes--300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"touch-tunes--600x334.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:334;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"touch-tunes--250x285.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3640,4127,'_wp_page_template','default'),(3641,4127,'_elementor_edit_mode','builder'),(3642,4127,'_elementor_template_type','wp-page'),(3643,4127,'_elementor_version','3.1.4'),(3644,4127,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a609d52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1fdd1c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"73\",\"right\":\"0\",\"bottom\":\"95\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have appreciated by our clients!\",\"sub_title\":\"Testimonial\",\"sub_title_color\":\"#00C7D4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#00C7D4\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/author-02.jpg\",\"id\":238},\"title\":\"Maria Silverii\",\"position\":\"CEO of Blue Illusion\",\"description\":\"\\u201c I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail as a Leadership Program\\u2019 is Her passion.\\u201d\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/author-01.jpg\",\"id\":237},\"title\":\"Rebecca Leo \",\"position\":\"Web Designer\",\"description\":\"\\u201c I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail as a Leadership Program\\u2019 is Her passion.\\u201d\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"Blog\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"99958ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(3646,4128,'_wp_page_template','default'),(3647,4128,'_elementor_edit_mode','builder'),(3648,4128,'_elementor_template_type','wp-page'),(3649,4128,'_elementor_version','3.1.4'),(3650,4128,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a609d52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1fdd1c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"73\",\"right\":\"0\",\"bottom\":\"95\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have appreciated by our clients!\",\"sub_title\":\"Testimonial\",\"sub_title_color\":\"#00C7D4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#00C7D4\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/author-02.jpg\",\"id\":238},\"title\":\"Maria Silverii\",\"position\":\"CEO of Blue Illusion\",\"description\":\"\\u201c I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail as a Leadership Program\\u2019 is Her passion.\\u201d\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/author-01.jpg\",\"id\":237},\"title\":\"Rebecca Leo \",\"position\":\"Web Designer\",\"description\":\"\\u201c I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail as a Leadership Program\\u2019 is Her passion.\\u201d\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"Blog\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"99958ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(3663,4131,'_wp_page_template','default'),(3664,4131,'_elementor_edit_mode','builder'),(3665,4131,'_elementor_template_type','wp-page'),(3666,4131,'_elementor_version','3.1.4'),(3667,4131,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a609d52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1fdd1c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"73\",\"right\":\"0\",\"bottom\":\"95\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have appreciated by our clients!\",\"sub_title\":\"Testimonial\",\"sub_title_color\":\"#00C7D4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#00C7D4\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/author-02.jpg\",\"id\":238},\"title\":\"Maria Silverii\",\"position\":\"CEO of Blue Illusion\",\"description\":\"\\u201c I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail as a Leadership Program\\u2019 is Her passion.\\u201d\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/author-01.jpg\",\"id\":237},\"title\":\"Rebecca Leo \",\"position\":\"Web Designer\",\"description\":\"\\u201c I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail as a Leadership Program\\u2019 is Her passion.\\u201d\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"Blog\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"99958ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(3654,4129,'_wp_attached_file','2021/03/the-munsters-premium-pinball-cabinet-stern.png'),(3655,4129,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:54:\"2021/03/the-munsters-premium-pinball-cabinet-stern.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:54:\"the-munsters-premium-pinball-cabinet-stern-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:54:\"the-munsters-premium-pinball-cabinet-stern-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:54:\"the-munsters-premium-pinball-cabinet-stern-600x313.png\";s:5:\"width\";i:600;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:54:\"the-munsters-premium-pinball-cabinet-stern-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:54:\"the-munsters-premium-pinball-cabinet-stern-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:54:\"the-munsters-premium-pinball-cabinet-stern-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:54:\"the-munsters-premium-pinball-cabinet-stern-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:54:\"the-munsters-premium-pinball-cabinet-stern-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3673,4133,'_wp_page_template','default'),(3674,4133,'_elementor_edit_mode','builder'),(3675,4133,'_elementor_template_type','wp-page'),(3676,4133,'_elementor_version','3.1.4');
INSERT INTO `wp9s_postmeta` VALUES (3677,4133,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#FF0202\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFF600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a609d52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1fdd1c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have appreciated by our clients!\",\"sub_title\":\"Testimonial\",\"sub_title_color\":\"#00C7D4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#00C7D4\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/author-02.jpg\",\"id\":238},\"title\":\"Maria Silverii\",\"position\":\"CEO of Blue Illusion\",\"description\":\"\\u201c I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail as a Leadership Program\\u2019 is Her passion.\\u201d\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/author-01.jpg\",\"id\":237},\"title\":\"Rebecca Leo \",\"position\":\"Web Designer\",\"description\":\"\\u201c I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail as a Leadership Program\\u2019 is Her passion.\\u201d\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(3668,4132,'_wp_page_template','default'),(3669,4132,'_elementor_edit_mode','builder'),(3670,4132,'_elementor_template_type','wp-page'),(3671,4132,'_elementor_version','3.1.4'),(3672,4132,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a609d52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1fdd1c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"73\",\"right\":\"0\",\"bottom\":\"95\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have appreciated by our clients!\",\"sub_title\":\"Testimonial\",\"sub_title_color\":\"#00C7D4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#00C7D4\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/author-02.jpg\",\"id\":238},\"title\":\"Maria Silverii\",\"position\":\"CEO of Blue Illusion\",\"description\":\"\\u201c I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail as a Leadership Program\\u2019 is Her passion.\\u201d\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/author-01.jpg\",\"id\":237},\"title\":\"Rebecca Leo \",\"position\":\"Web Designer\",\"description\":\"\\u201c I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail as a Leadership Program\\u2019 is Her passion.\\u201d\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"Blog\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"99958ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(3679,4134,'_wp_page_template','default'),(3680,4134,'_elementor_edit_mode','builder'),(3681,4134,'_elementor_template_type','wp-page'),(3682,4134,'_elementor_version','3.1.4'),(3683,4134,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#FF0202\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFF600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a609d52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1fdd1c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have appreciated by our clients!\",\"sub_title\":\"Testimonial\",\"sub_title_color\":\"#00C7D4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#00C7D4\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/author-02.jpg\",\"id\":238},\"title\":\"Maria Silverii\",\"position\":\"CEO of Blue Illusion\",\"description\":\"\\u201c I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail as a Leadership Program\\u2019 is Her passion.\\u201d\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/author-01.jpg\",\"id\":237},\"title\":\"Rebecca Leo \",\"position\":\"Web Designer\",\"description\":\"\\u201c I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail as a Leadership Program\\u2019 is Her passion.\\u201d\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(3684,4135,'_wp_page_template','default'),(3685,4135,'_elementor_edit_mode','builder'),(3686,4135,'_elementor_template_type','wp-page'),(3687,4135,'_elementor_version','3.1.4'),(3688,4135,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#FF0202\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFF600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a609d52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1fdd1c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have appreciated by our clients!\",\"sub_title\":\"Testimonial\",\"sub_title_color\":\"#00C7D4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#00C7D4\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/author-02.jpg\",\"id\":238},\"title\":\"Maria Silverii\",\"position\":\"CEO of Blue Illusion\",\"description\":\"\\u201c I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail as a Leadership Program\\u2019 is Her passion.\\u201d\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/author-01.jpg\",\"id\":237},\"title\":\"Rebecca Leo \",\"position\":\"Web Designer\",\"description\":\"\\u201c I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail as a Leadership Program\\u2019 is Her passion.\\u201d\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(3689,4136,'_wp_page_template','default'),(3690,4136,'_elementor_edit_mode','builder'),(3691,4136,'_elementor_template_type','wp-page'),(3692,4136,'_elementor_version','3.1.4'),(3693,4136,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#FF0202\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFF600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a609d52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1fdd1c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have appreciated by our clients!\",\"sub_title\":\"Testimonial\",\"sub_title_color\":\"#00C7D4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#00C7D4\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/author-02.jpg\",\"id\":238},\"title\":\"Maria Silverii\",\"position\":\"CEO of Blue Illusion\",\"description\":\"\\u201c I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail as a Leadership Program\\u2019 is Her passion.\\u201d\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/author-01.jpg\",\"id\":237},\"title\":\"Rebecca Leo \",\"position\":\"Web Designer\",\"description\":\"\\u201c I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail as a Leadership Program\\u2019 is Her passion.\\u201d\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(3703,4139,'_wp_page_template','default'),(3704,4139,'_elementor_edit_mode','builder'),(3705,4139,'_elementor_template_type','wp-page'),(3706,4139,'_elementor_version','3.1.4'),(3707,4139,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#FF0202\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFF600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a609d52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1fdd1c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have appreciated by our clients!\",\"sub_title\":\"Testimonial\",\"sub_title_color\":\"#00C7D4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#00C7D4\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/author-02.jpg\",\"id\":238},\"title\":\"Maria Silverii\",\"position\":\"CEO of Blue Illusion\",\"description\":\"\\u201c I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail as a Leadership Program\\u2019 is Her passion.\\u201d\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/author-01.jpg\",\"id\":237},\"title\":\"Rebecca Leo \",\"position\":\"Web Designer\",\"description\":\"\\u201c I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail as a Leadership Program\\u2019 is Her passion.\\u201d\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(3713,4141,'_wp_page_template','default'),(3714,4141,'_elementor_edit_mode','builder'),(3715,4141,'_elementor_template_type','wp-page'),(3716,4141,'_elementor_version','3.1.4'),(3717,4141,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#FF0202\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFF600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a609d52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1fdd1c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have appreciated by our clients!\",\"sub_title\":\"Testimonial\",\"sub_title_color\":\"#00C7D4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#00C7D4\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/author-02.jpg\",\"id\":238},\"title\":\"Maria Silverii\",\"position\":\"CEO of Blue Illusion\",\"description\":\"\\u201c I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail as a Leadership Program\\u2019 is Her passion.\\u201d\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/author-01.jpg\",\"id\":237},\"title\":\"Rebecca Leo \",\"position\":\"Web Designer\",\"description\":\"\\u201c I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail as a Leadership Program\\u2019 is Her passion.\\u201d\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#FF0202\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFF600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3701,4138,'_wp_attached_file','2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg'),(3702,4138,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1398;s:4:\"file\";s:77:\"2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:70:\"business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:164;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:71:\"business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:559;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:70:\"business-target-background-marketing-and-advertisi-BPQH5CA-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:70:\"business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:419;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:71:\"business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:839;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:72:\"business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:70:\"business-target-background-marketing-and-advertisi-BPQH5CA-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:70:\"business-target-background-marketing-and-advertisi-BPQH5CA-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:70:\"business-target-background-marketing-and-advertisi-BPQH5CA-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:70:\"business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:328;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:70:\"business-target-background-marketing-and-advertisi-BPQH5CA-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:70:\"business-target-background-marketing-and-advertisi-BPQH5CA-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:70:\"business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:328;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:70:\"business-target-background-marketing-and-advertisi-BPQH5CA-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:15:\"Olivier Le Moal\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:130:\"Three darts and business target over grey background and copyspace on the left. Marketing and advertising concept. 3d illustration\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:15:\"Olivier Le Moal\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:104:\"Three darts and business target background and copyspace on the left. Marketing and advertising concept.\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:48:{i:0;s:9:\"marketing\";i:1;s:8:\"business\";i:2;s:6:\"target\";i:3;s:10:\"objectives\";i:4;s:10:\"background\";i:5;s:6:\"market\";i:6;s:9:\"targeting\";i:7;s:8:\"strategy\";i:8;s:11:\"positioning\";i:9;s:9:\"strategic\";i:10;s:7:\"success\";i:11;s:5:\"goals\";i:12;s:11:\"advertising\";i:13;s:9:\"advertize\";i:14;s:7:\"concept\";i:15;s:4:\"dart\";i:16;s:9:\"dartboard\";i:17;s:9:\"copyspace\";i:18;s:4:\"grey\";i:19;s:3:\"red\";i:20;s:5:\"three\";i:21;s:5:\"darts\";i:22;s:15:\"3d illustration\";i:23;s:10:\"horizontal\";i:24;s:15:\"design template\";i:25;s:6:\"center\";i:26;s:11:\"competition\";i:27;s:4:\"goal\";i:28;s:3:\"aim\";i:29;s:8:\"accuracy\";i:30;s:5:\"board\";i:31;s:8:\"bullseye\";i:32;s:11:\"achievement\";i:33;s:11:\"performance\";i:34;s:6:\"aiming\";i:35;s:7:\"perfect\";i:36;s:6:\"symbol\";i:37;s:7:\"achieve\";i:38;s:9:\"objective\";i:39;s:9:\"challenge\";i:40;s:9:\"corporate\";i:41;s:11:\"opportunity\";i:42;s:9:\"advantage\";i:43;s:11:\"competitive\";i:44;s:8:\"personal\";i:45;s:9:\"achieving\";i:46;s:13:\"communication\";i:47;s:6:\"expert\";}}s:14:\"original_image\";s:62:\"business-target-background-marketing-and-advertisi-BPQH5CA.jpg\";}'),(3708,4140,'_wp_page_template','default'),(3709,4140,'_elementor_edit_mode','builder'),(3710,4140,'_elementor_template_type','wp-page'),(3711,4140,'_elementor_version','3.1.4'),(3712,4140,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#FF0202\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFF600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a609d52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1fdd1c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have appreciated by our clients!\",\"sub_title\":\"Testimonial\",\"sub_title_color\":\"#00C7D4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#00C7D4\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/author-02.jpg\",\"id\":238},\"title\":\"Maria Silverii\",\"position\":\"CEO of Blue Illusion\",\"description\":\"\\u201c I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail as a Leadership Program\\u2019 is Her passion.\\u201d\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/author-01.jpg\",\"id\":237},\"title\":\"Rebecca Leo \",\"position\":\"Web Designer\",\"description\":\"\\u201c I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail as a Leadership Program\\u2019 is Her passion.\\u201d\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(3721,4143,'_wp_page_template','default'),(3722,4143,'_elementor_edit_mode','builder'),(3723,4143,'_elementor_template_type','wp-page'),(3724,4143,'_elementor_version','3.1.4'),(3725,4143,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#FF0202\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFF600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a609d52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1fdd1c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have appreciated by our clients!\",\"sub_title\":\"Testimonial\",\"sub_title_color\":\"#00C7D4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#00C7D4\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/author-02.jpg\",\"id\":238},\"title\":\"Maria Silverii\",\"position\":\"CEO of Blue Illusion\",\"description\":\"\\u201c I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail as a Leadership Program\\u2019 is Her passion.\\u201d\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/author-01.jpg\",\"id\":237},\"title\":\"Rebecca Leo \",\"position\":\"Web Designer\",\"description\":\"\\u201c I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail as a Leadership Program\\u2019 is Her passion.\\u201d\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#FF0202\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFF600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3719,4142,'_wp_attached_file','2021/03/dart-throwing-1-.jpeg'),(3720,4142,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:696;s:6:\"height\";i:461;s:4:\"file\";s:29:\"2021/03/dart-throwing-1-.jpeg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"dart-throwing-1--300x199.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"dart-throwing-1--150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:29:\"dart-throwing-1--696x313.jpeg\";s:5:\"width\";i:696;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:29:\"dart-throwing-1--600x450.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"dart-throwing-1--300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:29:\"dart-throwing-1--600x397.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:397;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"dart-throwing-1--250x285.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:29:\"dart-throwing-1--300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:29:\"dart-throwing-1--600x397.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:397;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"dart-throwing-1--250x285.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3726,4144,'_wp_page_template','default'),(3727,4144,'_elementor_edit_mode','builder'),(3728,4144,'_elementor_template_type','wp-page'),(3729,4144,'_elementor_version','3.1.4'),(3730,4144,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#FF0202\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFF600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a609d52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1fdd1c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have appreciated by our clients!\",\"sub_title\":\"Testimonial\",\"sub_title_color\":\"#00C7D4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#00C7D4\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/author-02.jpg\",\"id\":238},\"title\":\"Maria Silverii\",\"position\":\"CEO of Blue Illusion\",\"description\":\"\\u201c I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail as a Leadership Program\\u2019 is Her passion.\\u201d\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/author-01.jpg\",\"id\":237},\"title\":\"Rebecca Leo \",\"position\":\"Web Designer\",\"description\":\"\\u201c I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail as a Leadership Program\\u2019 is Her passion.\\u201d\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#FF0202\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFF600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3731,4145,'_wp_page_template','default'),(3732,4145,'_elementor_edit_mode','builder'),(3733,4145,'_elementor_template_type','wp-page'),(3734,4145,'_elementor_version','3.1.4'),(3735,4145,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#FF0202\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFF600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a609d52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1fdd1c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3c742c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have appreciated by our clients!\",\"sub_title\":\"Testimonial\",\"sub_title_color\":\"#00C7D4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#00C7D4\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/author-02.jpg\",\"id\":238},\"title\":\"Maria Silverii\",\"position\":\"CEO of Blue Illusion\",\"description\":\"\\u201c I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail as a Leadership Program\\u2019 is Her passion.\\u201d\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/author-01.jpg\",\"id\":237},\"title\":\"Rebecca Leo \",\"position\":\"Web Designer\",\"description\":\"\\u201c I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail as a Leadership Program\\u2019 is Her passion.\\u201d\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":53.42099999999999937472239253111183643341064453125},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFF600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.91100000000000136424205265939235687255859375,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3737,4146,'_wp_page_template','default'),(3738,4146,'_elementor_edit_mode','builder'),(3739,4146,'_elementor_template_type','wp-page'),(3740,4146,'_elementor_version','3.1.4'),(3741,4146,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#FF0202\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFF600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a609d52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1fdd1c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3c742c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have appreciated by our clients!\",\"sub_title\":\"Testimonial\",\"sub_title_color\":\"#00C7D4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#00C7D4\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/author-02.jpg\",\"id\":238},\"title\":\"Maria Silverii\",\"position\":\"CEO of Blue Illusion\",\"description\":\"\\u201c I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail as a Leadership Program\\u2019 is Her passion.\\u201d\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/author-01.jpg\",\"id\":237},\"title\":\"Rebecca Leo \",\"position\":\"Web Designer\",\"description\":\"\\u201c I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail as a Leadership Program\\u2019 is Her passion.\\u201d\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":53.42099999999999937472239253111183643341064453125},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFF600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.91100000000000136424205265939235687255859375,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3742,4147,'_wp_page_template','default'),(3743,4147,'_elementor_edit_mode','builder'),(3744,4147,'_elementor_template_type','wp-page'),(3745,4147,'_elementor_version','3.1.4'),(3746,4147,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#FF0202\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFF600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a609d52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1fdd1c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3c742c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have appreciated by our clients!\",\"sub_title\":\"Testimonial\",\"sub_title_color\":\"#00C7D4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#00C7D4\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/author-02.jpg\",\"id\":238},\"title\":\"Maria Silverii\",\"position\":\"CEO of Blue Illusion\",\"description\":\"\\u201c I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail as a Leadership Program\\u2019 is Her passion.\\u201d\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/author-01.jpg\",\"id\":237},\"title\":\"Rebecca Leo \",\"position\":\"Web Designer\",\"description\":\"\\u201c I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail as a Leadership Program\\u2019 is Her passion.\\u201d\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":53.42099999999999937472239253111183643341064453125},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFF600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.91100000000000136424205265939235687255859375,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3813,4161,'_wp_page_template','default'),(3747,4148,'_wp_page_template','default'),(3748,4148,'_elementor_edit_mode','builder'),(3749,4148,'_elementor_template_type','wp-page'),(3750,4148,'_elementor_version','3.1.4'),(3751,4148,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#FF0202\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFF600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a609d52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1fdd1c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3c742c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have appreciated by our clients!\",\"sub_title\":\"Testimonial\",\"sub_title_color\":\"#00C7D4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#00C7D4\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/author-02.jpg\",\"id\":238},\"title\":\"Maria Silverii\",\"position\":\"CEO of Blue Illusion\",\"description\":\"\\u201c I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail as a Leadership Program\\u2019 is Her passion.\\u201d\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/author-01.jpg\",\"id\":237},\"title\":\"Rebecca Leo \",\"position\":\"Web Designer\",\"description\":\"\\u201c I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail as a Leadership Program\\u2019 is Her passion.\\u201d\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":53.42099999999999937472239253111183643341064453125},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFF600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.91100000000000136424205265939235687255859375,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3753,4149,'_wp_page_template','default'),(3754,4149,'_elementor_edit_mode','builder'),(3755,4149,'_elementor_template_type','wp-page'),(3756,4149,'_elementor_version','3.1.4'),(3757,4149,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#FF0202\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFF600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a609d52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1fdd1c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3c742c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have appreciated by our clients!\",\"sub_title\":\"Testimonial\",\"sub_title_color\":\"#00C7D4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#00C7D4\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/author-02.jpg\",\"id\":238},\"title\":\"Maria Silverii\",\"position\":\"CEO of Blue Illusion\",\"description\":\"\\u201c I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail as a Leadership Program\\u2019 is Her passion.\\u201d\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/author-01.jpg\",\"id\":237},\"title\":\"Rebecca Leo \",\"position\":\"Web Designer\",\"description\":\"\\u201c I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail as a Leadership Program\\u2019 is Her passion.\\u201d\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":53.42099999999999937472239253111183643341064453125},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFF600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.91100000000000136424205265939235687255859375,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3758,4150,'_wp_page_template','default'),(3759,4150,'_elementor_edit_mode','builder'),(3760,4150,'_elementor_template_type','wp-page'),(3761,4150,'_elementor_version','3.1.4'),(3762,4150,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#FF0202\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFF600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a609d52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1fdd1c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3c742c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have appreciated by our clients!\",\"sub_title\":\"Testimonial\",\"sub_title_color\":\"#00C7D4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#00C7D4\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/author-02.jpg\",\"id\":238},\"title\":\"Maria Silverii\",\"position\":\"CEO of Blue Illusion\",\"description\":\"\\u201c I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail as a Leadership Program\\u2019 is Her passion.\\u201d\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/author-01.jpg\",\"id\":237},\"title\":\"Rebecca Leo \",\"position\":\"Web Designer\",\"description\":\"\\u201c I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail as a Leadership Program\\u2019 is Her passion.\\u201d\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":53.42099999999999937472239253111183643341064453125},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFF600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.91100000000000136424205265939235687255859375,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3763,4151,'_wp_page_template','default'),(3764,4151,'_elementor_edit_mode','builder'),(3765,4151,'_elementor_template_type','wp-page'),(3766,4151,'_elementor_version','3.1.4'),(3767,4151,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#FF0202\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFF600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a609d52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1fdd1c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3c742c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have appreciated by our clients!\",\"sub_title\":\"Testimonial\",\"sub_title_color\":\"#00C7D4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#00C7D4\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/author-02.jpg\",\"id\":238},\"title\":\"Maria Silverii\",\"position\":\"CEO of Blue Illusion\",\"description\":\"\\u201c I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail as a Leadership Program\\u2019 is Her passion.\\u201d\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/author-01.jpg\",\"id\":237},\"title\":\"Rebecca Leo \",\"position\":\"Web Designer\",\"description\":\"\\u201c I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail as a Leadership Program\\u2019 is Her passion.\\u201d\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":53.68599999999999994315658113919198513031005859375},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFEB4B\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFF600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.6460000000000007958078640513122081756591796875,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3769,4152,'_wp_page_template','default'),(3770,4152,'_elementor_edit_mode','builder'),(3771,4152,'_elementor_template_type','wp-page'),(3772,4152,'_elementor_version','3.1.4'),(3773,4152,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#FF0202\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFF600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a609d52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1fdd1c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3c742c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have appreciated by our clients!\",\"sub_title\":\"Testimonial\",\"sub_title_color\":\"#00C7D4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#00C7D4\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/author-02.jpg\",\"id\":238},\"title\":\"Maria Silverii\",\"position\":\"CEO of Blue Illusion\",\"description\":\"\\u201c I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail as a Leadership Program\\u2019 is Her passion.\\u201d\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/author-01.jpg\",\"id\":237},\"title\":\"Rebecca Leo \",\"position\":\"Web Designer\",\"description\":\"\\u201c I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail as a Leadership Program\\u2019 is Her passion.\\u201d\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":53.68599999999999994315658113919198513031005859375},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFEB4B\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFF600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.6460000000000007958078640513122081756591796875,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3774,4153,'_wp_page_template','default'),(3775,4153,'_elementor_edit_mode','builder'),(3776,4153,'_elementor_template_type','wp-page'),(3777,4153,'_elementor_version','3.1.4'),(3778,4153,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#FF0202\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFF600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a609d52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1fdd1c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3c742c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have appreciated by our clients!\",\"sub_title\":\"Testimonial\",\"sub_title_color\":\"#00C7D4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#00C7D4\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/author-02.jpg\",\"id\":238},\"title\":\"Maria Silverii\",\"position\":\"CEO of Blue Illusion\",\"description\":\"\\u201c I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail as a Leadership Program\\u2019 is Her passion.\\u201d\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/author-01.jpg\",\"id\":237},\"title\":\"Rebecca Leo \",\"position\":\"Web Designer\",\"description\":\"\\u201c I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail as a Leadership Program\\u2019 is Her passion.\\u201d\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":53.68599999999999994315658113919198513031005859375},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFEB4B\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFF600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.6460000000000007958078640513122081756591796875,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3797,4158,'_wp_page_template','default'),(3779,4154,'_wp_page_template','default'),(3780,4154,'_elementor_edit_mode','builder'),(3781,4154,'_elementor_template_type','wp-page'),(3782,4154,'_elementor_version','3.1.4'),(3783,4154,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#FF0202\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFF600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a609d52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1fdd1c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3c742c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have appreciated by our clients!\",\"sub_title\":\"Testimonial\",\"sub_title_color\":\"#00C7D4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#00C7D4\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/author-02.jpg\",\"id\":238},\"title\":\"Maria Silverii\",\"position\":\"CEO of Blue Illusion\",\"description\":\"\\u201c I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail as a Leadership Program\\u2019 is Her passion.\\u201d\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/author-01.jpg\",\"id\":237},\"title\":\"Rebecca Leo \",\"position\":\"Web Designer\",\"description\":\"\\u201c I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail as a Leadership Program\\u2019 is Her passion.\\u201d\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":53.68599999999999994315658113919198513031005859375},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFEB4B\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFF600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.6460000000000007958078640513122081756591796875,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3787,4156,'_wp_page_template','default'),(3788,4156,'_elementor_edit_mode','builder'),(3789,4156,'_elementor_template_type','wp-page'),(3790,4156,'_elementor_version','3.1.4'),(3791,4156,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#FF0202\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFF600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a609d52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1fdd1c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3c742c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have appreciated by our clients!\",\"sub_title\":\"Testimonial\",\"sub_title_color\":\"#00C7D4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#00C7D4\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/author-02.jpg\",\"id\":238},\"title\":\"Maria Silverii\",\"position\":\"CEO of Blue Illusion\",\"description\":\"\\u201c I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail as a Leadership Program\\u2019 is Her passion.\\u201d\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/author-01.jpg\",\"id\":237},\"title\":\"Rebecca Leo \",\"position\":\"Web Designer\",\"description\":\"\\u201c I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail as a Leadership Program\\u2019 is Her passion.\\u201d\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":53.68599999999999994315658113919198513031005859375},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFEB4B\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFF600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.6460000000000007958078640513122081756591796875,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3785,4155,'_wp_attached_file','2021/03/golden-thumbsup.jpg'),(3786,4155,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:820;s:6:\"height\";i:860;s:4:\"file\";s:27:\"2021/03/golden-thumbsup.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"golden-thumbsup-286x300.jpg\";s:5:\"width\";i:286;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"golden-thumbsup-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"golden-thumbsup-768x805.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:805;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:27:\"golden-thumbsup-820x313.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:27:\"golden-thumbsup-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"golden-thumbsup-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"golden-thumbsup-600x629.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:629;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"golden-thumbsup-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:27:\"golden-thumbsup-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"golden-thumbsup-600x629.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:629;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"golden-thumbsup-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3792,4157,'_wp_page_template','default'),(3793,4157,'_elementor_edit_mode','builder'),(3794,4157,'_elementor_template_type','wp-page'),(3795,4157,'_elementor_version','3.1.4'),(3796,4157,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#FF0202\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFF600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a609d52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1fdd1c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3c742c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have appreciated by our clients!\",\"sub_title\":\"Testimonial\",\"sub_title_color\":\"#00C7D4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#00C7D4\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/author-02.jpg\",\"id\":238},\"title\":\"Maria Silverii\",\"position\":\"CEO of Blue Illusion\",\"description\":\"\\u201c I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail as a Leadership Program\\u2019 is Her passion.\\u201d\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/author-01.jpg\",\"id\":237},\"title\":\"Rebecca Leo \",\"position\":\"Web Designer\",\"description\":\"\\u201c I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail as a Leadership Program\\u2019 is Her passion.\\u201d\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":53.68599999999999994315658113919198513031005859375},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFEB4B\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFF600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.6460000000000007958078640513122081756591796875,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3798,4158,'_elementor_edit_mode','builder'),(3799,4158,'_elementor_template_type','wp-page'),(3800,4158,'_elementor_version','3.1.4'),(3801,4158,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#FF0202\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFF600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a609d52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1fdd1c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3c742c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have appreciated by our clients!\",\"sub_title\":\"Testimonial\",\"sub_title_color\":\"#00C7D4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#00C7D4\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/author-01.jpg\",\"id\":237},\"title\":\"Rebecca Leo \",\"position\":\"Web Designer\",\"description\":\"\\u201c I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail as a Leadership Program\\u2019 is Her passion.\\u201d\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":53.68599999999999994315658113919198513031005859375},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFEB4B\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFF600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.6460000000000007958078640513122081756591796875,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3803,4159,'_wp_page_template','default'),(3804,4159,'_elementor_edit_mode','builder'),(3805,4159,'_elementor_template_type','wp-page'),(3806,4159,'_elementor_version','3.1.4'),(3807,4159,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#FF0202\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFF600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a609d52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1fdd1c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3c742c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have appreciated by our clients!\",\"sub_title\":\"Testimonial\",\"sub_title_color\":\"#00C7D4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#00C7D4\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/author-01.jpg\",\"id\":237},\"title\":\"Rebecca Leo \",\"position\":\"Web Designer\",\"description\":\"\\u201c I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail as a Leadership Program\\u2019 is Her passion.\\u201d\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":53.68599999999999994315658113919198513031005859375},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFEB4B\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFF600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.6460000000000007958078640513122081756591796875,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3808,4160,'_wp_page_template','default'),(3809,4160,'_elementor_edit_mode','builder'),(3810,4160,'_elementor_template_type','wp-page'),(3811,4160,'_elementor_version','3.1.4'),(3812,4160,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#FF0202\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFF600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a609d52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1fdd1c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3c742c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have appreciated by our clients!\",\"sub_title\":\"Testimonial\",\"sub_title_color\":\"#00C7D4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#00C7D4\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/author-01.jpg\",\"id\":237},\"title\":\"Rebecca Leo \",\"position\":\"Web Designer\",\"description\":\"\\u201c I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail as a Leadership Program\\u2019 is Her passion.\\u201d\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":53.68599999999999994315658113919198513031005859375},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFEB4B\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFF600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.6460000000000007958078640513122081756591796875,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3814,4161,'_elementor_edit_mode','builder'),(3815,4161,'_elementor_template_type','wp-page'),(3816,4161,'_elementor_version','3.1.4'),(3817,4161,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#FF0202\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFF600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a609d52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1fdd1c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3c742c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":53.68599999999999994315658113919198513031005859375},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.6460000000000007958078640513122081756591796875,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3819,4162,'_wp_page_template','default'),(3820,4162,'_elementor_edit_mode','builder'),(3821,4162,'_elementor_template_type','wp-page'),(3822,4162,'_elementor_version','3.1.4'),(3823,4162,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#FF0202\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFF600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a609d52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1fdd1c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3c742c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":53.68599999999999994315658113919198513031005859375},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.6460000000000007958078640513122081756591796875,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3824,4163,'_wp_page_template','default'),(3825,4163,'_elementor_edit_mode','builder'),(3826,4163,'_elementor_template_type','wp-page'),(3827,4163,'_elementor_version','3.1.4'),(3828,4163,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#FF0202\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFF600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a609d52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1fdd1c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3c742c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":53.68599999999999994315658113919198513031005859375},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.6460000000000007958078640513122081756591796875,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3829,4164,'_wp_page_template','default'),(3830,4164,'_elementor_edit_mode','builder'),(3831,4164,'_elementor_template_type','wp-page'),(3832,4164,'_elementor_version','3.1.4'),(3833,4164,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFF600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a609d52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1fdd1c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3c742c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":53.68599999999999994315658113919198513031005859375},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.6460000000000007958078640513122081756591796875,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3835,4165,'_wp_page_template','default'),(3836,4165,'_elementor_edit_mode','builder'),(3837,4165,'_elementor_template_type','wp-page'),(3838,4165,'_elementor_version','3.1.4'),(3839,4165,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFF600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a609d52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1fdd1c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3c742c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":53.68599999999999994315658113919198513031005859375},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.6460000000000007958078640513122081756591796875,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3840,4166,'_wp_page_template','default'),(3841,4166,'_elementor_edit_mode','builder'),(3842,4166,'_elementor_template_type','wp-page'),(3843,4166,'_elementor_version','3.1.4'),(3844,4166,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFF600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a609d52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1fdd1c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3c742c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":53.68599999999999994315658113919198513031005859375},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.6460000000000007958078640513122081756591796875,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3845,4167,'_wp_page_template','default'),(3846,4167,'_elementor_edit_mode','builder'),(3847,4167,'_elementor_template_type','wp-page'),(3848,4167,'_elementor_version','3.1.4'),(3849,4167,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFF600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a609d52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1fdd1c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3c742c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":53.68599999999999994315658113919198513031005859375},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.6460000000000007958078640513122081756591796875,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3851,4168,'_wp_page_template','default'),(3852,4168,'_elementor_edit_mode','builder'),(3853,4168,'_elementor_template_type','wp-page'),(3854,4168,'_elementor_version','3.1.4'),(3855,4168,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFF600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a609d52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1fdd1c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3c742c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":53.68599999999999994315658113919198513031005859375},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.6460000000000007958078640513122081756591796875,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3856,4169,'_wp_page_template','default'),(3857,4169,'_elementor_edit_mode','builder'),(3858,4169,'_elementor_template_type','wp-page'),(3859,4169,'_elementor_version','3.1.4'),(3860,4169,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFF600\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a609d52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1fdd1c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3c742c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":53.68599999999999994315658113919198513031005859375},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.6460000000000007958078640513122081756591796875,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3861,4170,'_wp_page_template','default'),(3862,4170,'_elementor_edit_mode','builder'),(3863,4170,'_elementor_template_type','wp-page'),(3864,4170,'_elementor_version','3.1.4'),(3865,4170,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a609d52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1fdd1c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3c742c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":53.68599999999999994315658113919198513031005859375},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.6460000000000007958078640513122081756591796875,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3879,4176,'_wp_page_template','default'),(3880,4176,'_elementor_edit_mode','builder'),(3881,4176,'_elementor_template_type','wp-page'),(3882,4176,'_elementor_version','3.1.4');
INSERT INTO `wp9s_postmeta` VALUES (3883,4176,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a609d52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1fdd1c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3c742c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":53.68599999999999994315658113919198513031005859375},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.6460000000000007958078640513122081756591796875,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3868,4171,'_wp_attached_file','2021/03/arachnid-dart-board-.jpeg'),(3869,4171,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:33:\"2021/03/arachnid-dart-board-.jpeg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"arachnid-dart-board--300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"arachnid-dart-board--150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:33:\"arachnid-dart-board--600x313.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:33:\"arachnid-dart-board--600x450.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:33:\"arachnid-dart-board--300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:33:\"arachnid-dart-board--250x285.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:33:\"arachnid-dart-board--300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"arachnid-dart-board--250x285.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3870,4172,'_wp_attached_file','2021/03/tranax_mini-bank_x4000.jpeg'),(3871,4172,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:156;s:6:\"height\";i:426;s:4:\"file\";s:35:\"2021/03/tranax_mini-bank_x4000.jpeg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"tranax_mini-bank_x4000-110x300.jpeg\";s:5:\"width\";i:110;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"tranax_mini-bank_x4000-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:35:\"tranax_mini-bank_x4000-156x313.jpeg\";s:5:\"width\";i:156;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"tranax_mini-bank_x4000-156x300.jpeg\";s:5:\"width\";i:156;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"tranax_mini-bank_x4000-156x285.jpeg\";s:5:\"width\";i:156;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:35:\"tranax_mini-bank_x4000-156x300.jpeg\";s:5:\"width\";i:156;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:35:\"tranax_mini-bank_x4000-156x285.jpeg\";s:5:\"width\";i:156;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3872,4173,'_wp_attached_file','2021/03/Screen-Shot-2021-03-27-at-2.17.21-AM.png'),(3873,4173,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:730;s:6:\"height\";i:880;s:4:\"file\";s:48:\"2021/03/Screen-Shot-2021-03-27-at-2.17.21-AM.png\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-03-27-at-2.17.21-AM-249x300.png\";s:5:\"width\";i:249;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-03-27-at-2.17.21-AM-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-03-27-at-2.17.21-AM-730x313.png\";s:5:\"width\";i:730;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-03-27-at-2.17.21-AM-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:48:\"Screen-Shot-2021-03-27-at-2.17.21-AM-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-03-27-at-2.17.21-AM-600x723.png\";s:5:\"width\";i:600;s:6:\"height\";i:723;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-03-27-at-2.17.21-AM-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-03-27-at-2.17.21-AM-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-03-27-at-2.17.21-AM-600x723.png\";s:5:\"width\";i:600;s:6:\"height\";i:723;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-03-27-at-2.17.21-AM-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3874,4174,'_wp_attached_file','2021/03/kv-v5.jpg'),(3875,4174,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1468;s:6:\"height\";i:1406;s:4:\"file\";s:17:\"2021/03/kv-v5.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"kv-v5-300x287.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:287;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"kv-v5-1024x981.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:981;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"kv-v5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"kv-v5-768x736.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:736;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:17:\"kv-v5-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:17:\"kv-v5-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:17:\"kv-v5-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:17:\"kv-v5-600x575.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:17:\"kv-v5-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:17:\"kv-v5-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:17:\"kv-v5-600x575.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:17:\"kv-v5-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3877,4175,'_wp_attached_file','2021/03/shooting-pool-.png'),(3878,4175,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:985;s:6:\"height\";i:500;s:4:\"file\";s:26:\"2021/03/shooting-pool-.png\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"shooting-pool--300x152.png\";s:5:\"width\";i:300;s:6:\"height\";i:152;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"shooting-pool--150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"shooting-pool--768x390.png\";s:5:\"width\";i:768;s:6:\"height\";i:390;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:26:\"shooting-pool--900x313.png\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:26:\"shooting-pool--600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"shooting-pool--300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"shooting-pool--600x305.png\";s:5:\"width\";i:600;s:6:\"height\";i:305;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"shooting-pool--250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:26:\"shooting-pool--300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"shooting-pool--600x305.png\";s:5:\"width\";i:600;s:6:\"height\";i:305;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"shooting-pool--250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3885,4177,'_wp_page_template','default'),(3886,4177,'_elementor_edit_mode','builder'),(3887,4177,'_elementor_template_type','wp-page'),(3888,4177,'_elementor_version','3.1.4'),(3889,4177,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a609d52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1fdd1c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3c742c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":53.68599999999999994315658113919198513031005859375},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.6460000000000007958078640513122081756591796875,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3937,4188,'_elementor_edit_mode','builder'),(3938,4188,'_elementor_template_type','wp-page'),(3891,4178,'_wp_page_template','default'),(3892,4178,'_elementor_edit_mode','builder'),(3893,4178,'_elementor_template_type','wp-page'),(3894,4178,'_elementor_version','3.1.4'),(3895,4178,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a609d52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1fdd1c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3c742c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":53.68599999999999994315658113919198513031005859375},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.6460000000000007958078640513122081756591796875,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b943818\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"08fd1c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.6460000000000007958078640513122081756591796875,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b4246c7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/shooting-pool-.png\",\"id\":4175},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d29b63e\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":53.68599999999999994315658113919198513031005859375},\"elements\":[{\"id\":\"b1c331b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8537d5c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(3898,4179,'_wp_page_template','default'),(3899,4179,'_elementor_edit_mode','builder'),(3900,4179,'_elementor_template_type','wp-page'),(3901,4179,'_elementor_version','3.1.4'),(3902,4179,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a609d52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1fdd1c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3c742c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":53.68599999999999994315658113919198513031005859375},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.6460000000000007958078640513122081756591796875,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b943818\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"08fd1c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.6460000000000007958078640513122081756591796875,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b4246c7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/shooting-pool-.png\",\"id\":4175},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d29b63e\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":53.68599999999999994315658113919198513031005859375},\"elements\":[{\"id\":\"b1c331b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8537d5c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(3903,4180,'_wp_page_template','default'),(3904,4180,'_elementor_edit_mode','builder'),(3905,4180,'_elementor_template_type','wp-page'),(3906,4180,'_elementor_version','3.1.4'),(3907,4180,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a609d52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1fdd1c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3c742c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":53.68599999999999994315658113919198513031005859375},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.6460000000000007958078640513122081756591796875,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b943818\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"08fd1c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.6460000000000007958078640513122081756591796875,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b4246c7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/shooting-pool-.png\",\"id\":4175},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d29b63e\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":53.68599999999999994315658113919198513031005859375},\"elements\":[{\"id\":\"b1c331b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8537d5c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(3936,4188,'_wp_page_template','default'),(3908,4181,'_wp_page_template','default'),(3909,4181,'_elementor_edit_mode','builder'),(3910,4181,'_elementor_template_type','wp-page'),(3911,4181,'_elementor_version','3.1.4'),(3912,4181,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a609d52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1fdd1c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3c742c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":53.68599999999999994315658113919198513031005859375},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.6460000000000007958078640513122081756591796875,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b943818\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"08fd1c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.28999999999999914734871708787977695465087890625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b4246c7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/shooting-pool-.png\",\"id\":4175},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d29b63e\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.042000000000001591615728102624416351318359375},\"elements\":[{\"id\":\"b1c331b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8537d5c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(3926,4186,'_wp_page_template','default'),(3927,4186,'_elementor_edit_mode','builder'),(3928,4186,'_elementor_template_type','wp-page'),(3929,4186,'_elementor_version','3.1.4'),(3930,4186,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a609d52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1fdd1c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3c742c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":53.68599999999999994315658113919198513031005859375},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.6460000000000007958078640513122081756591796875,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b943818\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"08fd1c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.28999999999999914734871708787977695465087890625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b4246c7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/shooting-pool-.png\",\"id\":4175},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d29b63e\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.042000000000001591615728102624416351318359375},\"elements\":[{\"id\":\"b1c331b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8537d5c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(3914,4182,'_wp_attached_file','2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1-scaled.jpg'),(3915,4182,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:70:\"2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1-scaled.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:63:\"young-couple-playing-together-pool-in-bar-96FRQW7-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:64:\"young-couple-playing-together-pool-in-bar-96FRQW7-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"young-couple-playing-together-pool-in-bar-96FRQW7-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:63:\"young-couple-playing-together-pool-in-bar-96FRQW7-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:65:\"young-couple-playing-together-pool-in-bar-96FRQW7-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:65:\"young-couple-playing-together-pool-in-bar-96FRQW7-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:63:\"young-couple-playing-together-pool-in-bar-96FRQW7-1-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:63:\"young-couple-playing-together-pool-in-bar-96FRQW7-1-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:63:\"young-couple-playing-together-pool-in-bar-96FRQW7-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:63:\"young-couple-playing-together-pool-in-bar-96FRQW7-1-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:63:\"young-couple-playing-together-pool-in-bar-96FRQW7-1-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:63:\"young-couple-playing-together-pool-in-bar-96FRQW7-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:63:\"young-couple-playing-together-pool-in-bar-96FRQW7-1-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:63:\"young-couple-playing-together-pool-in-bar-96FRQW7-1-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:63:\"Young couple playing pool in bar while having night out in town\";s:17:\"created_timestamp\";s:10:\"1477676191\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:41:\"Young couple playing together pool in bar\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:40:{i:0;s:6:\"couple\";i:1;s:4:\"pool\";i:2;s:7:\"snooker\";i:3;s:8:\"billiard\";i:4;s:7:\"playing\";i:5;s:13:\"entertainment\";i:6;s:3:\"fun\";i:7;s:5:\"young\";i:8;s:9:\"beautiful\";i:9;s:3:\"pub\";i:10;s:4:\"love\";i:11;s:5:\"table\";i:12;s:6:\"aiming\";i:13;s:3:\"bar\";i:14;s:8:\"flirting\";i:15;s:10:\"recreation\";i:16;s:5:\"sport\";i:17;s:9:\"enjoyment\";i:18;s:6:\"people\";i:19;s:8:\"together\";i:20;s:5:\"women\";i:21;s:8:\"activity\";i:22;s:4:\"game\";i:23;s:7:\"leisure\";i:24;s:7:\"smiling\";i:25;s:6:\"social\";i:26;s:3:\"two\";i:27;s:4:\"male\";i:28;s:4:\"club\";i:29;s:10:\"relaxation\";i:30;s:3:\"man\";i:31;s:7:\"friends\";i:32;s:8:\"pointing\";i:33;s:11:\"socializing\";i:34;s:5:\"adult\";i:35;s:6:\"female\";i:36;s:7:\"indoors\";i:37;s:7:\"looking\";i:38;s:8:\"shooting\";i:39;s:9:\"caucasian\";}}s:14:\"original_image\";s:55:\"young-couple-playing-together-pool-in-bar-96FRQW7-1.jpg\";}'),(3916,4183,'_wp_attached_file','2021/03/shooting-pool-1.jpeg'),(3917,4183,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:360;s:4:\"file\";s:28:\"2021/03/shooting-pool-1.jpeg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"shooting-pool-1-300x169.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"shooting-pool-1-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:28:\"shooting-pool-1-640x313.jpeg\";s:5:\"width\";i:640;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:28:\"shooting-pool-1-600x360.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"shooting-pool-1-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:28:\"shooting-pool-1-600x338.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"shooting-pool-1-250x285.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:28:\"shooting-pool-1-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:28:\"shooting-pool-1-600x338.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"shooting-pool-1-250x285.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Getty Images\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:117:\"HD1080p: Super Slow Motion Close-Up shot of a man\'s hand shooting the cue ball with a pool cue. Recorded at 1050 fps.\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:14:\"SimonKr d.o.o.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3950,4190,'_elementor_template_type','wp-page'),(3951,4190,'_elementor_version','3.1.4'),(3952,4190,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a609d52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1fdd1c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3c742c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b943818\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"08fd1c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":50.4440000000000026147972675971686840057373046875,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21c7800\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/shooting-pool-717.jpeg\",\"id\":4185}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d29b63e\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":48.88799999999999812416717759333550930023193359375},\"elements\":[{\"id\":\"b1c331b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our pool league! Click the button below to view our schedule and info!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8537d5c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(3939,4188,'_elementor_version','3.1.4'),(3940,4188,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a609d52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1fdd1c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3c742c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b943818\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"08fd1c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":50.4440000000000026147972675971686840057373046875,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21c7800\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/shooting-pool-717.jpeg\",\"id\":4185}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d29b63e\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":48.88799999999999812416717759333550930023193359375},\"elements\":[{\"id\":\"b1c331b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our pool league! Click the button below to view our schedule and info!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8537d5c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(3924,4185,'_wp_attached_file','2021/03/shooting-pool-717.jpeg'),(3925,4185,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:768;s:6:\"height\";i:512;s:4:\"file\";s:30:\"2021/03/shooting-pool-717.jpeg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"shooting-pool-717-300x200.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"shooting-pool-717-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:30:\"shooting-pool-717-768x313.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:30:\"shooting-pool-717-600x450.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:30:\"shooting-pool-717-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:30:\"shooting-pool-717-600x400.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:30:\"shooting-pool-717-250x285.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:30:\"shooting-pool-717-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:30:\"shooting-pool-717-600x400.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:30:\"shooting-pool-717-250x285.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3931,4187,'_wp_page_template','default'),(3932,4187,'_elementor_edit_mode','builder'),(3933,4187,'_elementor_template_type','wp-page'),(3934,4187,'_elementor_version','3.1.4'),(3935,4187,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a609d52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1fdd1c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3c742c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":53.68599999999999994315658113919198513031005859375},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.6460000000000007958078640513122081756591796875,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b943818\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"08fd1c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.28999999999999914734871708787977695465087890625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b4246c7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/shooting-pool-.png\",\"id\":4175},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d29b63e\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.042000000000001591615728102624416351318359375},\"elements\":[{\"id\":\"b1c331b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8537d5c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(3948,4190,'_wp_page_template','default'),(3949,4190,'_elementor_edit_mode','builder'),(3958,4192,'_wp_page_template','default'),(3959,4192,'_elementor_edit_mode','builder'),(3960,4192,'_elementor_template_type','wp-page'),(3961,4192,'_elementor_version','3.1.4'),(3962,4192,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b943818\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"08fd1c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":50.4440000000000026147972675971686840057373046875,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21c7800\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/shooting-pool-717.jpeg\",\"id\":4185}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d29b63e\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":48.88799999999999812416717759333550930023193359375},\"elements\":[{\"id\":\"b1c331b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our pool league! Click the button below to view our schedule and info!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8537d5c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(3953,4191,'_wp_page_template','default'),(3954,4191,'_elementor_edit_mode','builder'),(3955,4191,'_elementor_template_type','wp-page'),(3956,4191,'_elementor_version','3.1.4'),(3957,4191,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a609d52\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1fdd1c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3c742c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b943818\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"08fd1c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":50.4440000000000026147972675971686840057373046875,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21c7800\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/shooting-pool-717.jpeg\",\"id\":4185}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d29b63e\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":48.88799999999999812416717759333550930023193359375},\"elements\":[{\"id\":\"b1c331b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our pool league! Click the button below to view our schedule and info!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8537d5c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(3964,4193,'_wp_page_template','default'),(3965,4193,'_elementor_edit_mode','builder'),(3966,4193,'_elementor_template_type','wp-page'),(3967,4193,'_elementor_version','3.1.4'),(3968,4193,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b943818\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"08fd1c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":50.4440000000000026147972675971686840057373046875,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21c7800\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/shooting-pool-717.jpeg\",\"id\":4185}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d29b63e\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":48.88799999999999812416717759333550930023193359375},\"elements\":[{\"id\":\"b1c331b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our pool league! Click the button below to view our schedule and info!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8537d5c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(3969,4194,'_wp_page_template','default'),(3970,4194,'_elementor_edit_mode','builder'),(3971,4194,'_elementor_template_type','wp-page'),(3972,4194,'_elementor_version','3.1.4'),(3973,4194,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b943818\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"08fd1c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":50.4440000000000026147972675971686840057373046875,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21c7800\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/shooting-pool-717.jpeg\",\"id\":4185}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d29b63e\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":48.88799999999999812416717759333550930023193359375},\"elements\":[{\"id\":\"b1c331b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our pool league! Click the button below to view our schedule and info!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8537d5c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(3974,4195,'_wp_page_template','default'),(3975,4195,'_elementor_edit_mode','builder'),(3976,4195,'_elementor_template_type','wp-page'),(3977,4195,'_elementor_version','3.1.4'),(3978,4195,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b943818\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"08fd1c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":50.4440000000000026147972675971686840057373046875,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21c7800\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/shooting-pool-717.jpeg\",\"id\":4185}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d29b63e\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":48.88799999999999812416717759333550930023193359375},\"elements\":[{\"id\":\"b1c331b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our pool league! Click the button below to view our schedule and info!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8537d5c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(3980,4196,'_wp_page_template','default'),(3981,4196,'_elementor_edit_mode','builder'),(3982,4196,'_elementor_template_type','wp-page'),(3983,4196,'_elementor_version','3.1.4'),(3984,4196,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b943818\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"08fd1c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":50.4440000000000026147972675971686840057373046875,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21c7800\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/shooting-pool-717.jpeg\",\"id\":4185}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d29b63e\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":48.88799999999999812416717759333550930023193359375},\"elements\":[{\"id\":\"b1c331b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our pool league! Click the button below to view our schedule and info!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8537d5c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(3985,4197,'_wp_page_template','default'),(3986,4197,'_elementor_edit_mode','builder'),(3987,4197,'_elementor_template_type','wp-page'),(3988,4197,'_elementor_version','3.1.4'),(3989,4197,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b943818\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"08fd1c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":50.4440000000000026147972675971686840057373046875,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21c7800\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/shooting-pool-717.jpeg\",\"id\":4185}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d29b63e\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":48.88799999999999812416717759333550930023193359375},\"elements\":[{\"id\":\"b1c331b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our pool league! Click the button below to view our schedule and info!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8537d5c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4089,4216,'_elementor_version','3.1.4'),(4090,4216,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f1d6f6d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"thousand_separator\":\"\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#000000\",\"icon_color\":\"#FF0000\",\"icon_color_gradient\":\"#FF0000\",\"typography_icon_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Stay up to date about products, leagues and more\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3990,4198,'_wp_page_template','default'),(3991,4198,'_elementor_edit_mode','builder'),(3992,4198,'_elementor_template_type','wp-page'),(3993,4198,'_elementor_version','3.1.4'),(3994,4198,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f1d6f6d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Quality Equipment\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b943818\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"08fd1c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":50.4440000000000026147972675971686840057373046875,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21c7800\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/shooting-pool-717.jpeg\",\"id\":4185}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d29b63e\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":48.88799999999999812416717759333550930023193359375},\"elements\":[{\"id\":\"b1c331b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our pool league! Click the button below to view our schedule and info!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8537d5c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(3996,4199,'_wp_page_template','default'),(3997,4199,'_elementor_edit_mode','builder'),(3998,4199,'_elementor_template_type','wp-page'),(3999,4199,'_elementor_version','3.1.4'),(4000,4199,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f1d6f6d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Quality Equipment\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b943818\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"08fd1c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":50.4440000000000026147972675971686840057373046875,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21c7800\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/shooting-pool-717.jpeg\",\"id\":4185}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d29b63e\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":48.88799999999999812416717759333550930023193359375},\"elements\":[{\"id\":\"b1c331b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our pool league! Click the button below to view our schedule and info!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8537d5c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4001,4200,'_wp_page_template','default'),(4002,4200,'_elementor_edit_mode','builder'),(4003,4200,'_elementor_template_type','wp-page'),(4004,4200,'_elementor_version','3.1.4'),(4005,4200,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f1d6f6d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Quality Equipment\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b943818\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"08fd1c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":50.4440000000000026147972675971686840057373046875,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21c7800\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/shooting-pool-717.jpeg\",\"id\":4185}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d29b63e\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":48.88799999999999812416717759333550930023193359375},\"elements\":[{\"id\":\"b1c331b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our pool league! Click the button below to view our schedule and info!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8537d5c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4006,4201,'_wp_page_template','default'),(4007,4201,'_elementor_edit_mode','builder'),(4008,4201,'_elementor_template_type','wp-page'),(4009,4201,'_elementor_version','3.1.4'),(4010,4201,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss outfitting your business?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f1d6f6d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Quality Equipment\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b943818\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"08fd1c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":50.4440000000000026147972675971686840057373046875,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21c7800\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/shooting-pool-717.jpeg\",\"id\":4185}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d29b63e\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":48.88799999999999812416717759333550930023193359375},\"elements\":[{\"id\":\"b1c331b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our pool league! Click the button below to view our schedule and info!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8537d5c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4012,4202,'_wp_page_template','default'),(4013,4202,'_elementor_edit_mode','builder'),(4014,4202,'_elementor_template_type','wp-page'),(4015,4202,'_elementor_version','3.1.4'),(4016,4202,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss outfitting your business?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f1d6f6d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Quality Equipment\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b943818\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"08fd1c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":50.4440000000000026147972675971686840057373046875,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21c7800\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/shooting-pool-717.jpeg\",\"id\":4185}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d29b63e\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":48.88799999999999812416717759333550930023193359375},\"elements\":[{\"id\":\"b1c331b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our pool league! Click the button below to view our schedule and info!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8537d5c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4017,4203,'_wp_page_template','default'),(4018,4203,'_elementor_edit_mode','builder'),(4019,4203,'_elementor_template_type','wp-page'),(4020,4203,'_elementor_version','3.1.4'),(4021,4203,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss outfitting your business?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f1d6f6d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Quality Equipment\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b943818\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"08fd1c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":50.4440000000000026147972675971686840057373046875,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21c7800\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/shooting-pool-717.jpeg\",\"id\":4185}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d29b63e\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":48.88799999999999812416717759333550930023193359375},\"elements\":[{\"id\":\"b1c331b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our pool league! Click the button below to view our schedule and info!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8537d5c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4022,4204,'_wp_page_template','default'),(4023,4204,'_elementor_edit_mode','builder'),(4024,4204,'_elementor_template_type','wp-page'),(4025,4204,'_elementor_version','3.1.4'),(4026,4204,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f1d6f6d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Quality Equipment\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b943818\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"08fd1c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":50.4440000000000026147972675971686840057373046875,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21c7800\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/shooting-pool-717.jpeg\",\"id\":4185}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d29b63e\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":48.88799999999999812416717759333550930023193359375},\"elements\":[{\"id\":\"b1c331b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our pool league! Click the button below to view our schedule and info!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8537d5c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4028,4205,'_wp_page_template','default'),(4029,4205,'_elementor_edit_mode','builder'),(4030,4205,'_elementor_template_type','wp-page'),(4031,4205,'_elementor_version','3.1.4'),(4032,4205,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f1d6f6d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Quality Equipment\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b943818\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"08fd1c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":50.4440000000000026147972675971686840057373046875,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21c7800\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/shooting-pool-717.jpeg\",\"id\":4185}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d29b63e\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":48.88799999999999812416717759333550930023193359375},\"elements\":[{\"id\":\"b1c331b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our pool league! Click the button below to view our schedule and info!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8537d5c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4033,4206,'_wp_page_template','default'),(4034,4206,'_elementor_edit_mode','builder'),(4035,4206,'_elementor_template_type','wp-page'),(4036,4206,'_elementor_version','3.1.4'),(4037,4206,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f1d6f6d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Quality Equipment\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b943818\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"08fd1c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":50.4440000000000026147972675971686840057373046875,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21c7800\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/shooting-pool-717.jpeg\",\"id\":4185}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d29b63e\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":48.88799999999999812416717759333550930023193359375},\"elements\":[{\"id\":\"b1c331b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our pool league! Click the button below to view our schedule and info!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8537d5c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4038,4207,'_wp_page_template','default'),(4039,4207,'_elementor_edit_mode','builder'),(4040,4207,'_elementor_template_type','wp-page'),(4041,4207,'_elementor_version','3.1.4'),(4042,4207,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f1d6f6d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Quality Equipment\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b943818\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"08fd1c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":50.4440000000000026147972675971686840057373046875,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21c7800\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/shooting-pool-717.jpeg\",\"id\":4185}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d29b63e\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":48.88799999999999812416717759333550930023193359375},\"elements\":[{\"id\":\"b1c331b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our pool league! Click the button below to view our schedule and info!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8537d5c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4044,4208,'_wp_page_template','default'),(4045,4208,'_elementor_edit_mode','builder'),(4046,4208,'_elementor_template_type','wp-page'),(4047,4208,'_elementor_version','3.1.4'),(4048,4208,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f1d6f6d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Quality Equipment\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b943818\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"08fd1c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":50.4440000000000026147972675971686840057373046875,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21c7800\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/shooting-pool-717.jpeg\",\"id\":4185}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d29b63e\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":48.88799999999999812416717759333550930023193359375},\"elements\":[{\"id\":\"b1c331b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our pool league! Click the button below to view our schedule and info!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8537d5c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4049,4209,'_wp_page_template','default'),(4050,4209,'_elementor_edit_mode','builder'),(4051,4209,'_elementor_template_type','wp-page'),(4052,4209,'_elementor_version','3.1.4');
INSERT INTO `wp9s_postmeta` VALUES (4053,4209,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f1d6f6d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Quality Equipment\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b943818\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"08fd1c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":50.4440000000000026147972675971686840057373046875,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21c7800\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/shooting-pool-717.jpeg\",\"id\":4185}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d29b63e\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":48.88799999999999812416717759333550930023193359375},\"elements\":[{\"id\":\"b1c331b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our pool league! Click the button below to view our schedule and info!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8537d5c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4087,4216,'_elementor_edit_mode','builder'),(4088,4216,'_elementor_template_type','wp-page'),(4054,4210,'_wp_page_template','default'),(4055,4210,'_elementor_edit_mode','builder'),(4056,4210,'_elementor_template_type','wp-page'),(4057,4210,'_elementor_version','3.1.4'),(4058,4210,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f1d6f6d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"thousand_separator\":\"\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#000000\",\"icon_color\":\"#FF0000\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b943818\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"08fd1c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":50.4440000000000026147972675971686840057373046875,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21c7800\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/shooting-pool-717.jpeg\",\"id\":4185}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d29b63e\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":48.88799999999999812416717759333550930023193359375},\"elements\":[{\"id\":\"b1c331b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our pool league! Click the button below to view our schedule and info!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8537d5c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4060,4211,'_wp_page_template','default'),(4061,4211,'_elementor_edit_mode','builder'),(4062,4211,'_elementor_template_type','wp-page'),(4063,4211,'_elementor_version','3.1.4'),(4064,4211,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f1d6f6d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"thousand_separator\":\"\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#000000\",\"icon_color\":\"#FF0000\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b943818\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"08fd1c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":50.4440000000000026147972675971686840057373046875,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21c7800\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/shooting-pool-717.jpeg\",\"id\":4185}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d29b63e\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":48.88799999999999812416717759333550930023193359375},\"elements\":[{\"id\":\"b1c331b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our pool league! Click the button below to view our schedule and info!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8537d5c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4065,4212,'_wp_page_template','default'),(4066,4212,'_elementor_edit_mode','builder'),(4067,4212,'_elementor_template_type','wp-page'),(4068,4212,'_elementor_version','3.1.4'),(4069,4212,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f1d6f6d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"thousand_separator\":\"\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#000000\",\"icon_color\":\"#FF0000\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b943818\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"08fd1c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":50.4440000000000026147972675971686840057373046875,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21c7800\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/shooting-pool-717.jpeg\",\"id\":4185}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d29b63e\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":48.88799999999999812416717759333550930023193359375},\"elements\":[{\"id\":\"b1c331b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our pool league! Click the button below to view our schedule and info!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8537d5c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4086,4216,'_wp_page_template','default'),(4070,4213,'_wp_page_template','default'),(4071,4213,'_elementor_edit_mode','builder'),(4072,4213,'_elementor_template_type','wp-page'),(4073,4213,'_elementor_version','3.1.4'),(4074,4213,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f1d6f6d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"thousand_separator\":\"\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#000000\",\"icon_color\":\"#FF0000\",\"icon_color_gradient\":\"#FF0000\",\"typography_icon_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b943818\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"08fd1c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":50.4440000000000026147972675971686840057373046875,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21c7800\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/shooting-pool-717.jpeg\",\"id\":4185}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d29b63e\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":48.88799999999999812416717759333550930023193359375},\"elements\":[{\"id\":\"b1c331b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our pool league! Click the button below to view our schedule and info!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8537d5c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4076,4214,'_wp_page_template','default'),(4077,4214,'_elementor_edit_mode','builder'),(4078,4214,'_elementor_template_type','wp-page'),(4079,4214,'_elementor_version','3.1.4'),(4080,4214,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f1d6f6d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"thousand_separator\":\"\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#000000\",\"icon_color\":\"#FF0000\",\"icon_color_gradient\":\"#FF0000\",\"typography_icon_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b943818\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"08fd1c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":50.4440000000000026147972675971686840057373046875,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21c7800\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/shooting-pool-717.jpeg\",\"id\":4185}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d29b63e\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":48.88799999999999812416717759333550930023193359375},\"elements\":[{\"id\":\"b1c331b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our pool league! Click the button below to view our schedule and info!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8537d5c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4081,4215,'_wp_page_template','default'),(4082,4215,'_elementor_edit_mode','builder'),(4083,4215,'_elementor_template_type','wp-page'),(4084,4215,'_elementor_version','3.1.4'),(4085,4215,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f1d6f6d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"thousand_separator\":\"\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#000000\",\"icon_color\":\"#FF0000\",\"icon_color_gradient\":\"#FF0000\",\"typography_icon_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & news from resource\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d4e54d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A blog <b>(a truncation of \\\"weblog\\\")<\\/b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b943818\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":130,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"08fd1c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":50.4440000000000026147972675971686840057373046875,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21c7800\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/shooting-pool-717.jpeg\",\"id\":4185}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d29b63e\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":48.88799999999999812416717759333550930023193359375},\"elements\":[{\"id\":\"b1c331b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join our pool league! Click the button below to view our schedule and info!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8537d5c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4093,4217,'_wp_page_template','default'),(4094,4217,'_elementor_edit_mode','builder'),(4095,4217,'_elementor_template_type','wp-page'),(4096,4217,'_elementor_version','3.1.4'),(4097,4217,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f1d6f6d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"thousand_separator\":\"\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#000000\",\"icon_color\":\"#FF0000\",\"icon_color_gradient\":\"#FF0000\",\"typography_icon_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Stay up to date about products, leagues and more\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4099,4218,'_wp_page_template','default'),(4100,4218,'_elementor_edit_mode','builder'),(4101,4218,'_elementor_template_type','wp-page'),(4102,4218,'_elementor_version','3.1.4'),(4103,4218,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-section-01.png\",\"id\":3282},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f1d6f6d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"thousand_separator\":\"\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#000000\",\"icon_color\":\"#FF0000\",\"icon_color_gradient\":\"#FF0000\",\"typography_icon_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Stay up to date about products, leagues and more\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4122,4222,'_wp_page_template','default'),(4123,4222,'_elementor_edit_mode','builder'),(4124,4222,'_elementor_template_type','wp-page'),(4125,4222,'_elementor_version','3.1.4'),(4126,4222,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f1d6f6d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"thousand_separator\":\"\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#000000\",\"icon_color\":\"#FF0000\",\"icon_color_gradient\":\"#FF0000\",\"typography_icon_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Stay up to date about products, leagues and more\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4105,4219,'_wp_page_template','default'),(4106,4219,'_elementor_edit_mode','builder'),(4107,4219,'_elementor_template_type','wp-page'),(4108,4219,'_elementor_version','3.1.4'),(4109,4219,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f1d6f6d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"thousand_separator\":\"\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#000000\",\"icon_color\":\"#FF0000\",\"icon_color_gradient\":\"#FF0000\",\"typography_icon_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"30ca970\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0b02290\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"37fa6b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":false},{\"id\":\"86cf297\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"294b6d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.33200000000000073896444519050419330596923828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Stay up to date about products, leagues and more\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4112,4220,'_wp_page_template','default'),(4113,4220,'_elementor_edit_mode','builder'),(4114,4220,'_elementor_template_type','wp-page'),(4115,4220,'_elementor_version','3.1.4'),(4116,4220,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f1d6f6d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"thousand_separator\":\"\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#000000\",\"icon_color\":\"#FF0000\",\"icon_color_gradient\":\"#FF0000\",\"typography_icon_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"30ca970\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0b02290\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"37fa6b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":false},{\"id\":\"86cf297\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"294b6d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.33200000000000073896444519050419330596923828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Stay up to date about products, leagues and more\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4117,4221,'_wp_page_template','default'),(4118,4221,'_elementor_edit_mode','builder'),(4119,4221,'_elementor_template_type','wp-page'),(4120,4221,'_elementor_version','3.1.4'),(4121,4221,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f1d6f6d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"thousand_separator\":\"\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#000000\",\"icon_color\":\"#FF0000\",\"icon_color_gradient\":\"#FF0000\",\"typography_icon_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"30ca970\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0b02290\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"37fa6b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":false},{\"id\":\"86cf297\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"294b6d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.33200000000000073896444519050419330596923828125},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Stay up to date about products, leagues and more\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4128,4223,'_wp_page_template','default'),(4129,4223,'_elementor_edit_mode','builder'),(4130,4223,'_elementor_template_type','wp-page'),(4131,4223,'_elementor_version','3.1.4'),(4132,4223,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f1d6f6d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"thousand_separator\":\"\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#000000\",\"icon_color\":\"#FF0000\",\"icon_color_gradient\":\"#FF0000\",\"typography_icon_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Stay up to date about products, leagues and more\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4133,4224,'_wp_page_template','default'),(4134,4224,'_elementor_edit_mode','builder'),(4135,4224,'_elementor_template_type','wp-page'),(4136,4224,'_elementor_version','3.1.4'),(4137,4224,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f1d6f6d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"thousand_separator\":\"\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#000000\",\"icon_color\":\"#FF0000\",\"icon_color_gradient\":\"#FF0000\",\"typography_icon_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Stay up to date about products, leagues and more\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4138,4225,'_wp_page_template','default'),(4139,4225,'_elementor_edit_mode','builder'),(4140,4225,'_elementor_template_type','wp-page'),(4141,4225,'_elementor_version','3.1.4'),(4142,4225,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f1d6f6d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"thousand_separator\":\"\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#000000\",\"icon_color\":\"#FF0000\",\"icon_color_gradient\":\"#FF0000\",\"typography_icon_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Stay up to date about products, leagues and more\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4144,4226,'_wp_page_template','default'),(4145,4226,'_elementor_edit_mode','builder'),(4146,4226,'_elementor_template_type','wp-page'),(4147,4226,'_elementor_version','3.1.4'),(4148,4226,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f1d6f6d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"thousand_separator\":\"\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#000000\",\"icon_color\":\"#FF0000\",\"icon_color_gradient\":\"#FF0000\",\"typography_icon_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Stay up to date about products, leagues and more\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4149,4227,'_wp_page_template','default'),(4150,4227,'_elementor_edit_mode','builder'),(4151,4227,'_elementor_template_type','wp-page'),(4152,4227,'_elementor_version','3.1.4'),(4153,4227,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are famous for features\",\"sub_title\":\"Featured services\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f1d6f6d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"thousand_separator\":\"\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#000000\",\"icon_color\":\"#FF0000\",\"icon_color_gradient\":\"#FF0000\",\"typography_icon_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Stay up to date about products, leagues and more\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4154,4228,'_wp_page_template','default'),(4155,4228,'_elementor_edit_mode','builder'),(4156,4228,'_elementor_template_type','wp-page'),(4157,4228,'_elementor_version','3.1.4'),(4158,4228,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment and Solutions\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f1d6f6d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"thousand_separator\":\"\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#000000\",\"icon_color\":\"#FF0000\",\"icon_color_gradient\":\"#FF0000\",\"typography_icon_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Stay up to date about products, leagues and more\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4161,4229,'_wp_page_template','default'),(4162,4229,'_elementor_edit_mode','builder'),(4163,4229,'_elementor_template_type','wp-page'),(4164,4229,'_elementor_version','3.1.4'),(4165,4229,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment and Solutions\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f1d6f6d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"thousand_separator\":\"\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#000000\",\"icon_color\":\"#FF0000\",\"icon_color_gradient\":\"#FF0000\",\"typography_icon_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Stay up to date about products, leagues and more\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4167,4230,'_wp_page_template','default'),(4168,4230,'_elementor_edit_mode','builder'),(4169,4230,'_elementor_template_type','wp-page'),(4170,4230,'_elementor_version','3.1.4'),(4171,4230,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment and Solutions\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f1d6f6d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"thousand_separator\":\"\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#000000\",\"icon_color\":\"#FF0000\",\"icon_color_gradient\":\"#FF0000\",\"typography_icon_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Stay up to date about products, leagues and more\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4173,4231,'_wp_page_template','default'),(4174,4231,'_elementor_edit_mode','builder'),(4175,4231,'_elementor_template_type','wp-page'),(4176,4231,'_elementor_version','3.1.4'),(4177,4231,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment and Solutions\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f1d6f6d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"thousand_separator\":\"\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#000000\",\"icon_color\":\"#FF0000\",\"icon_color_gradient\":\"#FF0000\",\"typography_icon_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Stay up to date about products, leagues and more\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4180,4232,'_wp_page_template','default'),(4181,4232,'_elementor_edit_mode','builder'),(4182,4232,'_elementor_template_type','wp-page'),(4183,4232,'_elementor_version','3.1.4'),(4184,4232,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment and Solutions\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f1d6f6d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"thousand_separator\":\"\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#000000\",\"icon_color\":\"#FF0000\",\"icon_color_gradient\":\"#FF0000\",\"typography_icon_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Stay up to date about products, leagues and more\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4185,4233,'_wp_page_template','default'),(4186,4233,'_elementor_edit_mode','builder'),(4187,4233,'_elementor_template_type','wp-page'),(4188,4233,'_elementor_version','3.1.4'),(4189,4233,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment and Solutions\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f1d6f6d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"thousand_separator\":\"\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#000000\",\"icon_color\":\"#FF0000\",\"icon_color_gradient\":\"#FF0000\",\"typography_icon_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Stay up to date about products, leagues and more\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4190,4234,'_wp_page_template','default'),(4191,4234,'_elementor_edit_mode','builder'),(4192,4234,'_elementor_template_type','wp-page'),(4193,4234,'_elementor_version','3.1.4'),(4194,4234,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment and Solutions\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f1d6f6d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"thousand_separator\":\"\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#000000\",\"icon_color\":\"#FF0000\",\"icon_color_gradient\":\"#FF0000\",\"typography_icon_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Stay up to date about products, leagues and more\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4196,4235,'_wp_page_template','default'),(4197,4235,'_elementor_edit_mode','builder'),(4198,4235,'_elementor_template_type','wp-page'),(4199,4235,'_elementor_version','3.1.4'),(4200,4235,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment and Solutions\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f1d6f6d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"thousand_separator\":\"\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#000000\",\"icon_color\":\"#FF0000\",\"icon_color_gradient\":\"#FF0000\",\"typography_icon_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Stay up to date about products, leagues and more\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4201,4236,'_wp_page_template','default'),(4202,4236,'_elementor_edit_mode','builder'),(4203,4236,'_elementor_template_type','wp-page'),(4204,4236,'_elementor_version','3.1.4'),(4205,4236,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment and Solutions\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f1d6f6d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"thousand_separator\":\"\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#000000\",\"icon_color\":\"#FF0000\",\"icon_color_gradient\":\"#FF0000\",\"typography_icon_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Stay up to date about products, leagues and more\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFFD00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFD00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4206,4237,'_wp_page_template','default'),(4207,4237,'_elementor_edit_mode','builder'),(4208,4237,'_elementor_template_type','wp-page'),(4209,4237,'_elementor_version','3.1.4'),(4210,4237,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment and Solutions\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f1d6f6d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"thousand_separator\":\"\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#000000\",\"icon_color\":\"#FF0000\",\"icon_color_gradient\":\"#FF0000\",\"typography_icon_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Stay up to date about products, leagues and more\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4212,4238,'_wp_page_template','default'),(4213,4238,'_elementor_edit_mode','builder'),(4214,4238,'_elementor_template_type','wp-page'),(4215,4238,'_elementor_version','3.1.4');
INSERT INTO `wp9s_postmeta` VALUES (4216,4238,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment and Solutions\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f1d6f6d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"thousand_separator\":\"\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#000000\",\"icon_color\":\"#FF0000\",\"icon_color_gradient\":\"#FF0000\",\"typography_icon_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Stay up to date about products, leagues and more\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4217,4239,'_wp_page_template','default'),(4218,4239,'_elementor_edit_mode','builder'),(4219,4239,'_elementor_template_type','wp-page'),(4220,4239,'_elementor_version','3.1.4'),(4221,4239,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment and Solutions\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f1d6f6d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"thousand_separator\":\"\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#000000\",\"icon_color\":\"#FF0000\",\"icon_color_gradient\":\"#FF0000\",\"typography_icon_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Stay up to date about products, leagues and more\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4222,4240,'_wp_page_template','default'),(4223,4240,'_elementor_edit_mode','builder'),(4224,4240,'_elementor_template_type','wp-page'),(4225,4240,'_elementor_version','3.1.4'),(4226,4240,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f1d6f6d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"thousand_separator\":\"\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#000000\",\"icon_color\":\"#FF0000\",\"icon_color_gradient\":\"#FF0000\",\"typography_icon_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Stay up to date about products, leagues and more\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4228,4241,'_wp_page_template','default'),(4229,4241,'_elementor_edit_mode','builder'),(4230,4241,'_elementor_template_type','wp-page'),(4231,4241,'_elementor_version','3.1.4'),(4232,4241,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f1d6f6d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"thousand_separator\":\"\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#000000\",\"icon_color\":\"#FF0000\",\"icon_color_gradient\":\"#FF0000\",\"typography_icon_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Stay up to date about products, leagues and more\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4233,4242,'_wp_page_template','default'),(4234,4242,'_elementor_edit_mode','builder'),(4235,4242,'_elementor_template_type','wp-page'),(4236,4242,'_elementor_version','3.1.4'),(4237,4242,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f1d6f6d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"thousand_separator\":\"\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#000000\",\"icon_color\":\"#FF0000\",\"icon_color_gradient\":\"#FF0000\",\"typography_icon_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Stay up to date about products, leagues and more\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4265,4248,'_wp_page_template','default'),(4266,4248,'_elementor_edit_mode','builder'),(4238,4243,'_wp_page_template','default'),(4239,4243,'_elementor_edit_mode','builder'),(4240,4243,'_elementor_template_type','wp-page'),(4241,4243,'_elementor_version','3.1.4'),(4242,4243,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#0693B8\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f1d6f6d\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"thousand_separator\":\"\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#000000\",\"icon_color\":\"#FF0000\",\"icon_color_gradient\":\"#FF0000\",\"typography_icon_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Stay up to date about products, leagues and more\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4253,4246,'_wp_page_template','default'),(4254,4246,'_elementor_edit_mode','builder'),(4255,4246,'_elementor_template_type','wp-page'),(4256,4246,'_elementor_version','3.1.4'),(4257,4246,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#0693B8\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f1d6f6d\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"thousand_separator\":\"\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#000000\",\"icon_color\":\"#FF0000\",\"icon_color_gradient\":\"#FF0000\",\"typography_icon_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Stay up to date about products, leagues and more\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4272,4249,'_wp_page_template','default'),(4273,4249,'_elementor_edit_mode','builder'),(4274,4249,'_elementor_template_type','wp-page'),(4275,4249,'_elementor_version','3.1.4'),(4276,4249,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#0693B8\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"117d70c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Quality Equipment\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Stay up to date about products, leagues and more\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4267,4248,'_elementor_template_type','wp-page'),(4268,4248,'_elementor_version','3.1.4'),(4269,4248,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#0693B8\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"117d70c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Quality Equipment\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Stay up to date about products, leagues and more\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4251,4245,'_wp_attached_file','2021/03/Munsters-LE-Details-19.jpeg'),(4252,4245,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2208;s:6:\"height\";i:1474;s:4:\"file\";s:35:\"2021/03/Munsters-LE-Details-19.jpeg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"Munsters-LE-Details-19-300x200.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"Munsters-LE-Details-19-1024x684.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"Munsters-LE-Details-19-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"Munsters-LE-Details-19-768x513.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:37:\"Munsters-LE-Details-19-1536x1025.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:37:\"Munsters-LE-Details-19-2048x1367.jpeg\";s:5:\"width\";i:2048;s:6:\"height\";i:1367;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:35:\"Munsters-LE-Details-19-900x313.jpeg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:35:\"Munsters-LE-Details-19-600x450.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"Munsters-LE-Details-19-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:35:\"Munsters-LE-Details-19-600x401.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:401;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"Munsters-LE-Details-19-250x285.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:35:\"Munsters-LE-Details-19-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:35:\"Munsters-LE-Details-19-600x401.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:401;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:35:\"Munsters-LE-Details-19-250x285.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4259,4247,'_wp_page_template','default'),(4260,4247,'_elementor_edit_mode','builder'),(4261,4247,'_elementor_template_type','wp-page'),(4262,4247,'_elementor_version','3.1.4'),(4263,4247,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#0693B8\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f1d6f6d\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"thousand_separator\":\"\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#000000\",\"icon_color\":\"#FF0000\",\"icon_color_gradient\":\"#FF0000\",\"typography_icon_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Stay up to date about products, leagues and more\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4277,4250,'_wp_page_template','default'),(4278,4250,'_elementor_edit_mode','builder'),(4279,4250,'_elementor_template_type','wp-page'),(4280,4250,'_elementor_version','3.1.4'),(4281,4250,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#0693B8\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"117d70c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Quality Equipment\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Stay up to date about products, leagues and more\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4282,4251,'_wp_page_template','default'),(4283,4251,'_elementor_edit_mode','builder'),(4284,4251,'_elementor_template_type','wp-page'),(4285,4251,'_elementor_version','3.1.4'),(4286,4251,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#06B0DD\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"117d70c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Stay up to date about products, leagues and more\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4289,4252,'_wp_page_template','default'),(4290,4252,'_elementor_edit_mode','builder'),(4291,4252,'_elementor_template_type','wp-page'),(4292,4252,'_elementor_version','3.1.4'),(4293,4252,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#06B0DD\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"117d70c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Stay up to date about products, leagues and more\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4295,4253,'_wp_page_template','default'),(4296,4253,'_elementor_edit_mode','builder'),(4297,4253,'_elementor_template_type','wp-page'),(4298,4253,'_elementor_version','3.1.4'),(4299,4253,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#06B0DD\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"117d70c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Stay up to date about products, leagues and more\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4301,4254,'_wp_page_template','default'),(4302,4254,'_elementor_edit_mode','builder'),(4303,4254,'_elementor_template_type','wp-page'),(4304,4254,'_elementor_version','3.1.4'),(4305,4254,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#06B0DD\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#000000\"},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"117d70c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Stay up to date about products, leagues and more\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4310,4256,'_wp_page_template','default'),(4311,4256,'_elementor_edit_mode','builder'),(4312,4256,'_elementor_template_type','wp-page'),(4313,4256,'_elementor_version','3.1.4'),(4314,4256,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#06B0DD\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#000000\"},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"117d70c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Stay up to date about products, leagues and more\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4308,4255,'_wp_attached_file','2021/03/Billiards-Triangle-hd-wallpapers.jpeg'),(4309,4255,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:45:\"2021/03/Billiards-Triangle-hd-wallpapers.jpeg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"Billiards-Triangle-hd-wallpapers-300x169.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"Billiards-Triangle-hd-wallpapers-1024x576.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"Billiards-Triangle-hd-wallpapers-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:45:\"Billiards-Triangle-hd-wallpapers-768x432.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:46:\"Billiards-Triangle-hd-wallpapers-1536x864.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:45:\"Billiards-Triangle-hd-wallpapers-900x313.jpeg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:45:\"Billiards-Triangle-hd-wallpapers-600x450.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:45:\"Billiards-Triangle-hd-wallpapers-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:45:\"Billiards-Triangle-hd-wallpapers-600x338.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:45:\"Billiards-Triangle-hd-wallpapers-250x285.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:45:\"Billiards-Triangle-hd-wallpapers-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:45:\"Billiards-Triangle-hd-wallpapers-600x338.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:45:\"Billiards-Triangle-hd-wallpapers-250x285.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 7D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1283464580\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"28\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4315,4257,'_wp_page_template','default'),(4316,4257,'_elementor_edit_mode','builder'),(4317,4257,'_elementor_template_type','wp-page'),(4318,4257,'_elementor_version','3.1.4'),(4319,4257,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#06B0DD\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#000000\"},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"117d70c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Stay up to date about products, leagues and more\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4465,4285,'_wp_page_template','default'),(4466,4285,'_elementor_edit_mode','builder'),(4467,4285,'_elementor_template_type','wp-page'),(4468,4285,'_elementor_version','3.1.4'),(4469,4285,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#06B0DD\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#000000\"},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"117d70c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"style3\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.3319999999999936335370875895023345947265625},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_border_color\":\"#747474\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn About Our Pool League, and Get Signed Up Today!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4320,4258,'_wp_page_template','default'),(4321,4258,'_elementor_edit_mode','builder'),(4322,4258,'_elementor_template_type','wp-page'),(4323,4258,'_elementor_version','3.1.4'),(4324,4258,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#06B0DD\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#000000\"},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"117d70c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Stay up to date about products, leagues and more\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4326,4259,'_wp_page_template','default'),(4327,4259,'_elementor_edit_mode','builder'),(4328,4259,'_elementor_template_type','wp-page'),(4329,4259,'_elementor_version','3.1.4'),(4330,4259,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#06B0DD\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#000000\"},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"117d70c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Stay up to date about products, leagues and more\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4331,4260,'_wp_page_template','default'),(4332,4260,'_elementor_edit_mode','builder'),(4333,4260,'_elementor_template_type','wp-page'),(4334,4260,'_elementor_version','3.1.4'),(4335,4260,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#06B0DD\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#000000\"},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"117d70c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Stay up to date about products, leagues and more\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4336,4261,'_wp_page_template','default'),(4337,4261,'_elementor_edit_mode','builder'),(4338,4261,'_elementor_template_type','wp-page'),(4339,4261,'_elementor_version','3.1.4'),(4340,4261,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#06B0DD\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#000000\"},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"117d70c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Stay up to date about products, leagues and more\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4342,4262,'_wp_page_template','default'),(4343,4262,'_elementor_edit_mode','builder'),(4344,4262,'_elementor_template_type','wp-page'),(4345,4262,'_elementor_version','3.1.4'),(4346,4262,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#06B0DD\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#000000\"},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"117d70c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Stay up to date about products, leagues and more\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4347,4263,'_wp_page_template','default'),(4348,4263,'_elementor_edit_mode','builder'),(4349,4263,'_elementor_template_type','wp-page'),(4350,4263,'_elementor_version','3.1.4'),(4351,4263,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#06B0DD\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#000000\"},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"117d70c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Stay up to date about products, leagues and more\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4352,4264,'_wp_page_template','default'),(4353,4264,'_elementor_edit_mode','builder'),(4354,4264,'_elementor_template_type','wp-page'),(4355,4264,'_elementor_version','3.1.4'),(4356,4264,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#06B0DD\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#000000\"},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"117d70c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Stay up to date about products, leagues and more\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn About Our Pool League, and Get Signed Up Today!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4358,4265,'_wp_page_template','default'),(4359,4265,'_elementor_edit_mode','builder'),(4360,4265,'_elementor_template_type','wp-page'),(4361,4265,'_elementor_version','3.1.4'),(4362,4265,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#06B0DD\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#000000\"},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"117d70c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Stay up to date about products, leagues and more\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn About Our Pool League, and Get Signed Up Today!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4363,4266,'_wp_page_template','default'),(4364,4266,'_elementor_edit_mode','builder'),(4365,4266,'_elementor_template_type','wp-page'),(4366,4266,'_elementor_version','3.1.4'),(4367,4266,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#06B0DD\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#000000\"},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"117d70c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Stay up to date about products, leagues and more\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#D70101\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn About Our Pool League, and Get Signed Up Today!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4368,4267,'_wp_page_template','default'),(4369,4267,'_elementor_edit_mode','builder'),(4370,4267,'_elementor_template_type','wp-page'),(4371,4267,'_elementor_version','3.1.4');
INSERT INTO `wp9s_postmeta` VALUES (4372,4267,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#06B0DD\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#000000\"},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"117d70c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Stay up to date about products, leagues and more\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn About Our Pool League, and Get Signed Up Today!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4374,4268,'_wp_page_template','default'),(4375,4268,'_elementor_edit_mode','builder'),(4376,4268,'_elementor_template_type','wp-page'),(4377,4268,'_elementor_version','3.1.4'),(4378,4268,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#06B0DD\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#000000\"},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"117d70c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Stay up to date about products, leagues and more\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn About Our Pool League, and Get Signed Up Today!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4379,4269,'_wp_page_template','default'),(4380,4269,'_elementor_edit_mode','builder'),(4381,4269,'_elementor_template_type','wp-page'),(4382,4269,'_elementor_version','3.1.4'),(4383,4269,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#06B0DD\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#000000\"},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"117d70c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Stay up to date about products, leagues and more\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn About Our Pool League, and Get Signed Up Today!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4384,4270,'_wp_page_template','default'),(4385,4270,'_elementor_edit_mode','builder'),(4386,4270,'_elementor_template_type','wp-page'),(4387,4270,'_elementor_version','3.1.4'),(4388,4270,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#06B0DD\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#000000\"},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"117d70c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Stay up to date about products, leagues and more\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn About Our Pool League, and Get Signed Up Today!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4390,4271,'_wp_page_template','default'),(4391,4271,'_elementor_edit_mode','builder'),(4392,4271,'_elementor_template_type','wp-page'),(4393,4271,'_elementor_version','3.1.4'),(4394,4271,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#06B0DD\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#000000\"},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"117d70c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Stay up to date about products, leagues and more\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn About Our Pool League, and Get Signed Up Today!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4395,4272,'_wp_page_template','default'),(4396,4272,'_elementor_edit_mode','builder'),(4397,4272,'_elementor_template_type','wp-page'),(4398,4272,'_elementor_version','3.1.4'),(4399,4272,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#06B0DD\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#000000\"},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"117d70c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Stay up to date about products, leagues and more\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn About Our Pool League, and Get Signed Up Today!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4400,4273,'_wp_page_template','default'),(4401,4273,'_elementor_edit_mode','builder'),(4402,4273,'_elementor_template_type','wp-page'),(4403,4273,'_elementor_version','3.1.4'),(4404,4273,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#06B0DD\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#000000\"},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"117d70c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Stay up to date about products, leagues and more\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn About Our Pool League, and Get Signed Up Today!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4406,4274,'_wp_page_template','default'),(4407,4274,'_elementor_edit_mode','builder'),(4408,4274,'_elementor_template_type','wp-page'),(4409,4274,'_elementor_version','3.1.4'),(4410,4274,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#06B0DD\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#000000\"},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"117d70c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Stay up to date about products, leagues and more\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn About Our Pool League, and Get Signed Up Today!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4411,4275,'_wp_page_template','default'),(4412,4275,'_elementor_edit_mode','builder'),(4413,4275,'_elementor_template_type','wp-page'),(4414,4275,'_elementor_version','3.1.4'),(4415,4275,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#06B0DD\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#000000\"},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"117d70c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Stay up to date about products, leagues and more\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn About Our Pool League, and Get Signed Up Today!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4416,4276,'_wp_page_template','default'),(4417,4276,'_elementor_edit_mode','builder'),(4418,4276,'_elementor_template_type','wp-page'),(4419,4276,'_elementor_version','3.1.4'),(4420,4276,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#06B0DD\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#000000\"},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"117d70c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Stay up to date about products, leagues and more\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn About Our Pool League, and Get Signed Up Today!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4422,4277,'_wp_page_template','default'),(4423,4277,'_elementor_edit_mode','builder'),(4424,4277,'_elementor_template_type','wp-page'),(4425,4277,'_elementor_version','3.1.4'),(4426,4277,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#06B0DD\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#000000\"},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"117d70c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Stay up to date about products, leagues and more\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn About Our Pool League, and Get Signed Up Today!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4427,4278,'_wp_page_template','default'),(4428,4278,'_elementor_edit_mode','builder'),(4429,4278,'_elementor_template_type','wp-page'),(4430,4278,'_elementor_version','3.1.4'),(4431,4278,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#06B0DD\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#000000\"},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"117d70c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Stay up to date about products, leagues and more\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn About Our Pool League, and Get Signed Up Today!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4432,4279,'_wp_page_template','default'),(4433,4279,'_elementor_edit_mode','builder'),(4434,4279,'_elementor_template_type','wp-page'),(4435,4279,'_elementor_version','3.1.4'),(4436,4279,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#06B0DD\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#000000\"},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"117d70c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"style3\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Stay up to date about products, leagues and more\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn About Our Pool League, and Get Signed Up Today!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4453,4283,'_wp_page_template','default'),(4454,4283,'_elementor_edit_mode','builder'),(4455,4283,'_elementor_template_type','wp-page'),(4456,4283,'_elementor_version','3.1.4'),(4457,4283,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#06B0DD\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#000000\"},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"117d70c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"style3\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Stay up to date about products, leagues and more\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn About Our Pool League, and Get Signed Up Today!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4439,4280,'_elementor_edit_mode','builder'),(4440,4280,'_elementor_template_type','section'),(4441,4280,'_elementor_version','3.1.4'),(4442,4281,'_elementor_edit_mode','builder'),(4443,4281,'_elementor_template_type','section'),(4444,4281,'_elementor_version','3.1.4'),(4445,4280,'_wp_page_template','default'),(4446,4280,'_elementor_data','[{\"id\":\"14a995f8\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c5c728\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f56e861\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4447,4282,'_elementor_edit_mode','builder'),(4448,4282,'_elementor_template_type','section'),(4449,4282,'_elementor_version','3.1.4'),(4450,4282,'_wp_page_template','default'),(4451,4282,'_elementor_data','[{\"id\":\"14a995f8\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c5c728\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f56e861\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4452,4280,'_elementor_controls_usage','a:3:{s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"arrows\";i:1;s:4:\"dots\";i:1;s:6:\"col_md\";i:1;s:10:\"ct_animate\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;}}}}}'),(4459,4284,'_wp_page_template','default'),(4460,4284,'_elementor_edit_mode','builder'),(4461,4284,'_elementor_template_type','wp-page'),(4462,4284,'_elementor_version','3.1.4'),(4463,4284,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#06B0DD\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#000000\"},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"117d70c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"style3\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3c9470\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"85\",\"right\":0,\"bottom\":\"4\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f8d78d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"95df9cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Stay up to date about products, leagues and more\",\"sub_title\":\"System Amusement News and Updates\",\"sub_title_color\":\"#FD0909\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"sub_title_style\":\"style8\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67447001\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"421bd40e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2bcb4cc6\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn About Our Pool League, and Get Signed Up Today!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4472,4286,'_wp_page_template','default'),(4473,4286,'_elementor_edit_mode','builder'),(4474,4286,'_elementor_template_type','wp-page'),(4475,4286,'_elementor_version','3.1.4'),(4476,4286,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#06B0DD\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#000000\"},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"117d70c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"style3\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.3319999999999936335370875895023345947265625},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_border_color\":\"#747474\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn About Our Pool League, and Get Signed Up Today!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4477,4287,'_wp_page_template','default'),(4478,4287,'_elementor_edit_mode','builder'),(4479,4287,'_elementor_template_type','wp-page'),(4480,4287,'_elementor_version','3.1.4'),(4481,4287,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#06B0DD\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#000000\"},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"117d70c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"style3\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.3319999999999936335370875895023345947265625},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_border_color\":\"#747474\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn About Our Pool League, and Get Signed Up Today!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4482,4288,'_wp_page_template','default'),(4483,4288,'_elementor_edit_mode','builder'),(4484,4288,'_elementor_template_type','wp-page'),(4485,4288,'_elementor_version','3.1.4'),(4486,4288,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#06B0DD\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#000000\"},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"117d70c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"style3\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.3319999999999936335370875895023345947265625},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_border_color\":\"#747474\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn About Our Pool League, and Get Signed Up Today!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4528,4296,'_wp_page_template','default'),(4529,4296,'_elementor_edit_mode','builder'),(4530,4296,'_elementor_template_type','wp-page'),(4531,4296,'_elementor_version','3.1.4'),(4532,4296,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#06B0DD\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#000000\"},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"117d70c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"style3\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.3319999999999936335370875895023345947265625},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_border_color\":\"#747474\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn About Our Pool League, and Get Signed Up Today!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(5188,4383,'_wp_attached_file','2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png'),(5189,4383,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:692;s:6:\"height\";i:848;s:4:\"file\";s:48:\"2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-14-at-3.43.33-PM-245x300.png\";s:5:\"width\";i:245;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-14-at-3.43.33-PM-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-14-at-3.43.33-PM-692x313.png\";s:5:\"width\";i:692;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-14-at-3.43.33-PM-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-14-at-3.43.33-PM-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-14-at-3.43.33-PM-600x735.png\";s:5:\"width\";i:600;s:6:\"height\";i:735;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-14-at-3.43.33-PM-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-14-at-3.43.33-PM-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-14-at-3.43.33-PM-600x735.png\";s:5:\"width\";i:600;s:6:\"height\";i:735;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-14-at-3.43.33-PM-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4492,3491,'_edit_lock','1618457430:1'),(4493,4289,'_elementor_edit_mode','builder'),(4494,4289,'_elementor_template_type','section'),(4495,4289,'_elementor_version','3.1.4'),(4496,4290,'_elementor_edit_mode','builder'),(4497,4290,'_elementor_template_type','section'),(4498,4290,'_elementor_version','3.1.4'),(4499,4289,'_wp_page_template','default'),(4500,4289,'_elementor_data','[{\"id\":\"7f5ca0b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"67\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3171efc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"11107c38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consulting is a law firm specialising in corporate finance work\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sub_title\":\"About us\",\"sub_title_style\":\"style2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"192c5ebd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Advice on comprehensive legal solutions and legal planning on all aspects of business, including: issues under Company Law & Exchange Control Regulations.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14c90dce\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"6c7a24b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"275e82e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work<br\\/> Development\",\"percentage_value\":80,\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_piecharts\"}],\"isInner\":true},{\"id\":\"67238af9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3f9e9172\",\"elType\":\"widget\",\"settings\":{\"title\":\"Plan<br\\/> Fulfilled\",\"percentage_value\":90,\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_piecharts\"}],\"isInner\":true},{\"id\":\"331790c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"65add45e\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI\\/UX<br\\/> Desigining\",\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_piecharts\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"77c615f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"23c52dab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h4-about1-1.png\",\"id\":3937},\"image_size\":\"full\",\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4501,4291,'_elementor_edit_mode','builder'),(4502,4291,'_elementor_template_type','section'),(4503,4291,'_elementor_version','3.1.4'),(4504,4291,'_wp_page_template','default'),(4505,4291,'_elementor_data','[{\"id\":\"7f5ca0b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"67\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3171efc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"11107c38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consulting is a law firm specialising in corporate finance work\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sub_title\":\"About us\",\"sub_title_style\":\"style2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"192c5ebd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Advice on comprehensive legal solutions and legal planning on all aspects of business, including: issues under Company Law & Exchange Control Regulations.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14c90dce\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"6c7a24b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"275e82e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work<br\\/> Development\",\"percentage_value\":80,\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_piecharts\"}],\"isInner\":true},{\"id\":\"67238af9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3f9e9172\",\"elType\":\"widget\",\"settings\":{\"title\":\"Plan<br\\/> Fulfilled\",\"percentage_value\":90,\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_piecharts\"}],\"isInner\":true},{\"id\":\"331790c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"65add45e\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI\\/UX<br\\/> Desigining\",\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_piecharts\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"77c615f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"23c52dab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h4-about1-1.png\",\"id\":3937},\"image_size\":\"full\",\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4506,4289,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:10:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:28:\"title_typography_line_height\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;s:18:\"title_space_bottom\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;s:35:\"title_typography_line_height_mobile\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:1;s:15:\"sub_title_style\";i:1;s:26:\"sub_title_space_top_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:22:\"typography_line_height\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:12:\"ct_piecharts\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:17:\"section_piecharts\";a:8:{s:5:\"title\";i:3;s:16:\"percentage_value\";i:2;s:10:\"chart_size\";i:3;s:5:\"style\";i:3;s:11:\"track_color\";i:3;s:27:\"title_typography_typography\";i:3;s:33:\"title_typography_font_size_tablet\";i:3;s:10:\"ct_animate\";i:3;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:5;s:19:\"_inline_size_tablet\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}}'),(4507,4292,'_elementor_edit_mode','builder'),(4508,4292,'_elementor_template_type','section'),(4509,4292,'_elementor_version','3.1.4'),(4510,4293,'_elementor_edit_mode','builder'),(4511,4293,'_elementor_template_type','section'),(4512,4293,'_elementor_version','3.1.4'),(4513,4292,'_wp_page_template','default'),(4514,4292,'_elementor_data','[{\"id\":\"74acfbcf\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\",\"id\":1536},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/bg-section-04.png\",\"id\":2125},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.88000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"284410d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.5},\"elements\":[{\"id\":\"23d328c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Don\\u2019t misread here we have random & interesting facts.\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"title_color\":\"#ffffff\",\"sub_title\":\"Funfact\",\"sub_title_color\":\"#FFFFFF\",\"sub_title_style\":\"style2\",\"sub_title_space_top\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3f72918c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Starfish can re-grow their arms. In fact, a single arm can regenerate a whole body. Google\'s founders were willing\\nto sell & consult.\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"52\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"030\",\"bottom\":\"0\",\"left\":\"52\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"68f1a02\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"_margin\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"52\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"52\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"img_size\":\"full\"},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"49bb0441\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.5,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"65\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1112a487\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"457b1189\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6570c44f\",\"elType\":\"widget\",\"settings\":{\"ending_number\":105,\"suffix\":\"+\",\"title\":\"Team members\",\"show_icon\":\"\",\"bg_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/gallery-01.jpg\",\"id\":1552},\"size\":\"size2\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"65\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"-10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"39d04688\",\"elType\":\"widget\",\"settings\":{\"ending_number\":8,\"suffix\":\"+\",\"title\":\"Winning Awards\",\"show_icon\":\"\",\"bg_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/gallery-06.jpg\",\"id\":1557},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"1eae0065\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"691ff4a4\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"suffix\":\"+\",\"title\":\"Client\\u2019s Feedback\",\"show_icon\":\"\",\"bg_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/gallery-02.jpg\",\"id\":1553},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"-25\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"4609c9e2\",\"elType\":\"widget\",\"settings\":{\"ending_number\":310,\"suffix\":\"+\",\"title\":\"Completed Works\",\"show_icon\":\"\",\"bg_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/gallery-03.jpg\",\"id\":1554},\"size\":\"size2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4515,4294,'_elementor_edit_mode','builder'),(4516,4294,'_elementor_template_type','section'),(4517,4294,'_elementor_version','3.1.4'),(4518,4294,'_wp_page_template','default'),(4519,4294,'_elementor_data','[{\"id\":\"74acfbcf\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\",\"id\":1536},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/bg-section-04.png\",\"id\":2125},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.88000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"284410d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.5},\"elements\":[{\"id\":\"23d328c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Don\\u2019t misread here we have random & interesting facts.\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"title_color\":\"#ffffff\",\"sub_title\":\"Funfact\",\"sub_title_color\":\"#FFFFFF\",\"sub_title_style\":\"style2\",\"sub_title_space_top\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3f72918c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Starfish can re-grow their arms. In fact, a single arm can regenerate a whole body. Google\'s founders were willing\\nto sell & consult.\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"52\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"030\",\"bottom\":\"0\",\"left\":\"52\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"68f1a02\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"_margin\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"52\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"52\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"img_size\":\"full\"},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"49bb0441\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.5,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"65\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1112a487\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"457b1189\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6570c44f\",\"elType\":\"widget\",\"settings\":{\"ending_number\":105,\"suffix\":\"+\",\"title\":\"Team members\",\"show_icon\":\"\",\"bg_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/gallery-01.jpg\",\"id\":1552},\"size\":\"size2\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"65\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"-10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"39d04688\",\"elType\":\"widget\",\"settings\":{\"ending_number\":8,\"suffix\":\"+\",\"title\":\"Winning Awards\",\"show_icon\":\"\",\"bg_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/gallery-06.jpg\",\"id\":1557},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"1eae0065\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"691ff4a4\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"suffix\":\"+\",\"title\":\"Client\\u2019s Feedback\",\"show_icon\":\"\",\"bg_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/gallery-02.jpg\",\"id\":1553},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"-25\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"4609c9e2\",\"elType\":\"widget\",\"settings\":{\"ending_number\":310,\"suffix\":\"+\",\"title\":\"Completed Works\",\"show_icon\":\"\",\"bg_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/gallery-03.jpg\",\"id\":1554},\"size\":\"size2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4520,4292,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:11:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:28:\"title_typography_line_height\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;s:18:\"title_space_bottom\";i:1;s:11:\"title_color\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;s:35:\"title_typography_line_height_mobile\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"sub_title_section\";a:4:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:15:\"sub_title_style\";i:1;s:19:\"sub_title_space_top\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:22:\"typography_line_height\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;s:12:\"_css_classes\";i:1;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:4;s:19:\"_inline_size_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:7:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:8:\"bg_image\";i:4;s:4:\"size\";i:2;s:10:\"ct_animate\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:2;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}}'),(4545,4299,'_wp_page_template','default'),(4546,4299,'_elementor_edit_mode','builder'),(4547,4299,'_elementor_template_type','wp-page'),(4548,4299,'_elementor_version','3.1.4'),(4549,4299,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#06B0DD\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#000000\"},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"117d70c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4b55eccc\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"67\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"303a614f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"417790bd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"54d544b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"398eab98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quality Equipment\",\"percentage_value\":100,\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"title_color\":\"#FFFFFF\",\"desc_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_piecharts\"},{\"id\":\"277b5cfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable Support\",\"percentage_value\":90,\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_piecharts\"}],\"isInner\":true},{\"id\":\"337f14ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3930a21d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Attention to Detail\",\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_piecharts\"},{\"id\":\"fbbc494\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Dedication\",\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_piecharts\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"572433b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"76d4a99c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/pantherhighlandmaplefullbody.png\",\"id\":4122},\"image_size\":\"full\",\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"style3\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.3319999999999936335370875895023345947265625},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_border_color\":\"#747474\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn About Our Pool League, and Get Signed Up Today!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4650,4317,'_wp_page_template','default'),(4651,4317,'_elementor_edit_mode','builder'),(4652,4317,'_elementor_template_type','wp-page'),(4653,4317,'_elementor_version','3.1.4'),(4627,4313,'_wp_page_template','default'),(4628,4313,'_elementor_edit_mode','builder'),(4629,4313,'_elementor_template_type','wp-page'),(4630,4313,'_elementor_version','3.1.4'),(4631,4313,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67e2ef8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"background_overlay_position\":\"center center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]}},\"elements\":[{\"id\":\"9c14fbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our 50+ Years of Dedication to our Clients!\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"a9c9135\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9d75c94\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"398eab98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quality Equipment\",\"percentage_value\":100,\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"title_color\":\"#FFFFFF\",\"desc_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_piecharts\"}],\"isInner\":true},{\"id\":\"90408e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3930a21d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Attention to Detail\",\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"percentage_value\":100,\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_piecharts\"}],\"isInner\":true},{\"id\":\"27bc7b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"564046d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable Support\",\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"percentage_value\":100,\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_piecharts\"}],\"isInner\":true},{\"id\":\"6f96213\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9812d13\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Dedication\",\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"percentage_value\":100,\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_piecharts\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.3319999999999936335370875895023345947265625},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_border_color\":\"#747474\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn About Our Pool League, and Get Signed Up Today!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4608,4310,'_wp_page_template','default'),(4609,4310,'_elementor_edit_mode','builder'),(4610,4310,'_elementor_template_type','wp-page'),(4611,4310,'_elementor_version','3.1.4'),(4612,4310,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67e2ef8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"9c14fbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"a9c9135\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"9d75c94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[{\"id\":\"398eab98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quality Equipment\",\"percentage_value\":100,\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"title_color\":\"#FFFFFF\",\"desc_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_piecharts\"},{\"id\":\"277b5cfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable Support\",\"percentage_value\":100,\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_piecharts\"}],\"isInner\":true},{\"id\":\"90408e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"3930a21d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Attention to Detail\",\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"percentage_value\":100,\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_piecharts\"},{\"id\":\"fbbc494\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Dedication\",\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"percentage_value\":100,\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_piecharts\"}],\"isInner\":true},{\"id\":\"9b02d95\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":50},\"elements\":[{\"id\":\"76d4a99c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/pantherhighlandmaplefullbody.png\",\"id\":4122},\"image_size\":\"full\",\"_css_classes\":\"wow fadeInRight\",\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"style3\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.3319999999999936335370875895023345947265625},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_border_color\":\"#747474\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn About Our Pool League, and Get Signed Up Today!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4592,4307,'_elementor_edit_mode','builder'),(4593,4307,'_elementor_template_type','wp-page'),(4594,4307,'_elementor_version','3.1.4'),(4595,4307,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67e2ef8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"9c14fbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4b55eccc\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"303a614f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"417790bd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"54d544b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"398eab98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quality Equipment\",\"percentage_value\":100,\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"title_color\":\"#FFFFFF\",\"desc_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_piecharts\"},{\"id\":\"277b5cfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable Support\",\"percentage_value\":100,\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_piecharts\"}],\"isInner\":true},{\"id\":\"337f14ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3930a21d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Attention to Detail\",\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"percentage_value\":100,\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_piecharts\"},{\"id\":\"fbbc494\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Dedication\",\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"percentage_value\":100,\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_piecharts\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"572433b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"76d4a99c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/pantherhighlandmaplefullbody.png\",\"id\":4122},\"image_size\":\"full\",\"_css_classes\":\"wow fadeInRight\",\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"style3\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.3319999999999936335370875895023345947265625},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_border_color\":\"#747474\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn About Our Pool League, and Get Signed Up Today!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4538,4298,'_wp_page_template','default'),(4539,4298,'_elementor_edit_mode','builder'),(4540,4298,'_elementor_template_type','wp-page'),(4541,4298,'_elementor_version','3.1.4'),(4542,4298,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#06B0DD\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#000000\"},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"117d70c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4b55eccc\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"67\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"303a614f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"417790bd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"54d544b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"398eab98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quality Equipment\",\"percentage_value\":100,\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"title_color\":\"#FFFFFF\",\"desc_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_piecharts\"},{\"id\":\"277b5cfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable Support\",\"percentage_value\":90,\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_piecharts\"}],\"isInner\":true},{\"id\":\"337f14ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3930a21d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Attention to Detail\",\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_piecharts\"},{\"id\":\"fbbc494\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Dedication\",\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_piecharts\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"572433b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"76d4a99c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/pantherhighlandmaplefullbody.png\",\"id\":4122},\"image_size\":\"full\",\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"style3\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.3319999999999936335370875895023345947265625},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_border_color\":\"#747474\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn About Our Pool League, and Get Signed Up Today!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4533,4297,'_wp_page_template','default'),(4534,4297,'_elementor_edit_mode','builder'),(4535,4297,'_elementor_template_type','wp-page'),(4536,4297,'_elementor_version','3.1.4'),(4537,4297,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#06B0DD\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#000000\"},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"117d70c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"style3\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.3319999999999936335370875895023345947265625},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_border_color\":\"#747474\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn About Our Pool League, and Get Signed Up Today!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4551,4300,'_wp_page_template','default'),(4552,4300,'_elementor_edit_mode','builder'),(4553,4300,'_elementor_template_type','wp-page'),(4554,4300,'_elementor_version','3.1.4');
INSERT INTO `wp9s_postmeta` VALUES (4555,4300,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#06B0DD\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#000000\"},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"117d70c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4b55eccc\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"67\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"303a614f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"417790bd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"54d544b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"398eab98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quality Equipment\",\"percentage_value\":100,\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"title_color\":\"#FFFFFF\",\"desc_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_piecharts\"},{\"id\":\"277b5cfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable Support\",\"percentage_value\":90,\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_piecharts\"}],\"isInner\":true},{\"id\":\"337f14ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3930a21d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Attention to Detail\",\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_piecharts\"},{\"id\":\"fbbc494\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Dedication\",\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_piecharts\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"572433b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"76d4a99c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/pantherhighlandmaplefullbody.png\",\"id\":4122},\"image_size\":\"full\",\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"style3\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.3319999999999936335370875895023345947265625},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_border_color\":\"#747474\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn About Our Pool League, and Get Signed Up Today!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4591,4307,'_wp_page_template','default'),(4557,4301,'_wp_page_template','default'),(4558,4301,'_elementor_edit_mode','builder'),(4559,4301,'_elementor_template_type','wp-page'),(4560,4301,'_elementor_version','3.1.4'),(4561,4301,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#06B0DD\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#000000\"},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"117d70c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4b55eccc\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"67\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"303a614f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"417790bd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"54d544b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"398eab98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quality Equipment\",\"percentage_value\":100,\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"title_color\":\"#FFFFFF\",\"desc_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_piecharts\"},{\"id\":\"277b5cfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable Support\",\"percentage_value\":100,\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_piecharts\"}],\"isInner\":true},{\"id\":\"337f14ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3930a21d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Attention to Detail\",\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"percentage_value\":100,\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_piecharts\"},{\"id\":\"fbbc494\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Dedication\",\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"percentage_value\":100,\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_piecharts\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"572433b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"76d4a99c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/pantherhighlandmaplefullbody.png\",\"id\":4122},\"image_size\":\"full\",\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"style3\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.3319999999999936335370875895023345947265625},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_border_color\":\"#747474\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn About Our Pool League, and Get Signed Up Today!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4579,4305,'_wp_page_template','default'),(4580,4305,'_elementor_edit_mode','builder'),(4581,4305,'_elementor_template_type','wp-page'),(4582,4305,'_elementor_version','3.1.4'),(4583,4305,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#06B0DD\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#000000\"},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"117d70c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4b55eccc\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"67\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"303a614f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"417790bd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"54d544b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"398eab98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quality Equipment\",\"percentage_value\":100,\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"title_color\":\"#FFFFFF\",\"desc_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_piecharts\"},{\"id\":\"277b5cfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable Support\",\"percentage_value\":100,\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_piecharts\"}],\"isInner\":true},{\"id\":\"337f14ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3930a21d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Attention to Detail\",\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"percentage_value\":100,\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_piecharts\"},{\"id\":\"fbbc494\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Dedication\",\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"percentage_value\":100,\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_piecharts\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"572433b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"76d4a99c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/pantherhighlandmaplefullbody.png\",\"id\":4122},\"image_size\":\"full\",\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"style3\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.3319999999999936335370875895023345947265625},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_border_color\":\"#747474\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn About Our Pool League, and Get Signed Up Today!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4565,4302,'_elementor_edit_mode','builder'),(4566,4302,'_elementor_template_type','section'),(4567,4302,'_elementor_version','3.1.4'),(4568,4303,'_elementor_edit_mode','builder'),(4569,4303,'_elementor_template_type','section'),(4570,4303,'_elementor_version','3.1.4'),(4571,4302,'_wp_page_template','default'),(4572,4302,'_elementor_data','[{\"id\":\"6340f3bf\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#06B0DD\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#000000\"},\"elements\":[{\"id\":\"52c1cd95\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7538fcad\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7d0fb86e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3694967d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"13fc9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1ae26271\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"26f725e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fb73269\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false}]'),(4573,4304,'_elementor_edit_mode','builder'),(4574,4304,'_elementor_template_type','section'),(4575,4304,'_elementor_version','3.1.4'),(4576,4304,'_wp_page_template','default'),(4577,4304,'_elementor_data','[{\"id\":\"6340f3bf\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#06B0DD\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#000000\"},\"elements\":[{\"id\":\"52c1cd95\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7538fcad\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7d0fb86e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3694967d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"13fc9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1ae26271\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"26f725e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fb73269\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false}]'),(4578,4302,'_elementor_controls_usage','a:3:{s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:2:{s:6:\"suffix\";i:4;s:5:\"title\";i:4;}}s:5:\"style\";a:2:{s:14:\"section_number\";a:1:{s:12:\"number_color\";i:1;}s:13:\"section_title\";a:1:{s:11:\"title_color\";i:4;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:1;s:6:\"margin\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:3:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}}}}'),(4585,4306,'_wp_page_template','default'),(4586,4306,'_elementor_edit_mode','builder'),(4587,4306,'_elementor_template_type','wp-page'),(4588,4306,'_elementor_version','3.1.4'),(4589,4306,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dde62e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f1a37d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3470082\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#06B0DD\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_color\":\"#000000\"},\"elements\":[{\"id\":\"5e0601b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"117d70c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"number_color\":\"#000000\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"83e7bd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1a32c76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"7912914\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d03698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false},{\"id\":\"a7da68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a285b12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"title_color\":\"#FFCE00\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4b55eccc\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"67\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"303a614f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"417790bd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"54d544b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"398eab98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quality Equipment\",\"percentage_value\":100,\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"title_color\":\"#FFFFFF\",\"desc_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_piecharts\"},{\"id\":\"277b5cfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable Support\",\"percentage_value\":100,\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_piecharts\"}],\"isInner\":true},{\"id\":\"337f14ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3930a21d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Attention to Detail\",\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"percentage_value\":100,\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_piecharts\"},{\"id\":\"fbbc494\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Dedication\",\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"percentage_value\":100,\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_piecharts\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"572433b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"76d4a99c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/pantherhighlandmaplefullbody.png\",\"id\":4122},\"image_size\":\"full\",\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"style3\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.3319999999999936335370875895023345947265625},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_border_color\":\"#747474\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn About Our Pool League, and Get Signed Up Today!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4598,4308,'_wp_page_template','default'),(4599,4308,'_elementor_edit_mode','builder'),(4600,4308,'_elementor_template_type','wp-page'),(4601,4308,'_elementor_version','3.1.4'),(4602,4308,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67e2ef8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"9c14fbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4b55eccc\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"303a614f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"417790bd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"54d544b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"398eab98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quality Equipment\",\"percentage_value\":100,\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"title_color\":\"#FFFFFF\",\"desc_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_piecharts\"},{\"id\":\"277b5cfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable Support\",\"percentage_value\":100,\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_piecharts\"}],\"isInner\":true},{\"id\":\"337f14ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3930a21d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Attention to Detail\",\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"percentage_value\":100,\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_piecharts\"},{\"id\":\"fbbc494\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Dedication\",\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"percentage_value\":100,\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_piecharts\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"572433b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"76d4a99c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/pantherhighlandmaplefullbody.png\",\"id\":4122},\"image_size\":\"full\",\"_css_classes\":\"wow fadeInRight\",\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"style3\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.3319999999999936335370875895023345947265625},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_border_color\":\"#747474\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn About Our Pool League, and Get Signed Up Today!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4603,4309,'_wp_page_template','default'),(4604,4309,'_elementor_edit_mode','builder'),(4605,4309,'_elementor_template_type','wp-page'),(4606,4309,'_elementor_version','3.1.4'),(4607,4309,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67e2ef8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"9c14fbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4b55eccc\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"303a614f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"417790bd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"54d544b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"398eab98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quality Equipment\",\"percentage_value\":100,\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"title_color\":\"#FFFFFF\",\"desc_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_piecharts\"},{\"id\":\"277b5cfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable Support\",\"percentage_value\":100,\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_piecharts\"}],\"isInner\":true},{\"id\":\"337f14ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3930a21d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Attention to Detail\",\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"percentage_value\":100,\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_piecharts\"},{\"id\":\"fbbc494\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Dedication\",\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"percentage_value\":100,\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_piecharts\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"572433b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"76d4a99c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/pantherhighlandmaplefullbody.png\",\"id\":4122},\"image_size\":\"full\",\"_css_classes\":\"wow fadeInRight\",\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"style3\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.3319999999999936335370875895023345947265625},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_border_color\":\"#747474\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn About Our Pool League, and Get Signed Up Today!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4615,4311,'_wp_page_template','default'),(4616,4311,'_elementor_edit_mode','builder'),(4617,4311,'_elementor_template_type','wp-page'),(4618,4311,'_elementor_version','3.1.4'),(4619,4311,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67e2ef8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"9c14fbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"a9c9135\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"9d75c94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[{\"id\":\"398eab98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quality Equipment\",\"percentage_value\":100,\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"title_color\":\"#FFFFFF\",\"desc_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_piecharts\"},{\"id\":\"277b5cfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable Support\",\"percentage_value\":100,\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_piecharts\"}],\"isInner\":true},{\"id\":\"90408e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"3930a21d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Attention to Detail\",\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"percentage_value\":100,\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_piecharts\"},{\"id\":\"fbbc494\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Dedication\",\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"percentage_value\":100,\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_piecharts\"}],\"isInner\":true},{\"id\":\"9b02d95\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":50},\"elements\":[{\"id\":\"76d4a99c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/pantherhighlandmaplefullbody.png\",\"id\":4122},\"image_size\":\"full\",\"_css_classes\":\"wow fadeInRight\",\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"style3\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.3319999999999936335370875895023345947265625},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_border_color\":\"#747474\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn About Our Pool League, and Get Signed Up Today!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4621,4312,'_wp_page_template','default'),(4622,4312,'_elementor_edit_mode','builder'),(4623,4312,'_elementor_template_type','wp-page'),(4624,4312,'_elementor_version','3.1.4'),(4625,4312,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67e2ef8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"9c14fbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Dedication To Our Clients\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"a9c9135\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"9d75c94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25},\"elements\":[{\"id\":\"398eab98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quality Equipment\",\"percentage_value\":100,\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"title_color\":\"#FFFFFF\",\"desc_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_piecharts\"},{\"id\":\"277b5cfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable Support\",\"percentage_value\":100,\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_piecharts\"}],\"isInner\":true},{\"id\":\"90408e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"3930a21d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Attention to Detail\",\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"percentage_value\":100,\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_piecharts\"},{\"id\":\"fbbc494\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Dedication\",\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"percentage_value\":100,\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_piecharts\"}],\"isInner\":true},{\"id\":\"9b02d95\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":50},\"elements\":[{\"id\":\"76d4a99c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/pantherhighlandmaplefullbody.png\",\"id\":4122},\"image_size\":\"full\",\"_css_classes\":\"wow fadeInRight\",\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"abff399\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"101\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"arrow_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"style3\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.3319999999999936335370875895023345947265625},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_border_color\":\"#747474\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn About Our Pool League, and Get Signed Up Today!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4640,4315,'_wp_page_template','default'),(4641,4315,'_elementor_edit_mode','builder'),(4642,4315,'_elementor_template_type','wp-page'),(4643,4315,'_elementor_version','3.1.4'),(4644,4315,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67e2ef8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"background_overlay_position\":\"center center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]}},\"elements\":[{\"id\":\"9c14fbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our 50+ Years of Dedication to our Clients!\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"a9c9135\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9d75c94\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"398eab98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quality Equipment\",\"percentage_value\":100,\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"title_color\":\"#FFFFFF\",\"desc_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_piecharts\"}],\"isInner\":true},{\"id\":\"90408e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3930a21d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Attention to Detail\",\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"percentage_value\":100,\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_piecharts\"}],\"isInner\":true},{\"id\":\"27bc7b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"564046d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable Support\",\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"percentage_value\":100,\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_piecharts\"}],\"isInner\":true},{\"id\":\"6f96213\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9812d13\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Dedication\",\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"percentage_value\":100,\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_piecharts\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.3319999999999936335370875895023345947265625},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_border_color\":\"#747474\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn About Our Pool League, and Get Signed Up Today!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4656,4318,'_wp_page_template','default'),(4657,4318,'_elementor_edit_mode','builder'),(4658,4318,'_elementor_template_type','wp-page'),(4659,4318,'_elementor_version','3.1.4'),(4660,4318,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67e2ef8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"background_overlay_position\":\"center center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]}},\"elements\":[{\"id\":\"9c14fbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our 50+ Years of Dedication to our Clients!\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"a9c9135\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9d75c94\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"abbd6d4\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F00000\",\"_background_background\":\"classic\",\"_background_color\":\"#23232387\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"90408e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"21051e5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_background_background\":\"classic\",\"_background_color\":\"#23232387\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"27bc7b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d1b9bc\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_background_background\":\"classic\",\"_background_color\":\"#23232387\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"6f96213\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2234f19\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_background_background\":\"classic\",\"_background_color\":\"#23232387\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.3319999999999936335370875895023345947265625},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_border_color\":\"#747474\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn About Our Pool League, and Get Signed Up Today!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4654,4317,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67e2ef8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"background_overlay_position\":\"center center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]}},\"elements\":[{\"id\":\"9c14fbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our 50+ Years of Dedication to our Clients!\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"a9c9135\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9d75c94\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"abbd6d4\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F00000\",\"_background_background\":\"classic\",\"_background_color\":\"#23232387\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"90408e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"21051e5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_background_background\":\"classic\",\"_background_color\":\"#23232387\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"27bc7b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d1b9bc\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_background_background\":\"classic\",\"_background_color\":\"#23232387\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"6f96213\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2234f19\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_background_background\":\"classic\",\"_background_color\":\"#23232387\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.3319999999999936335370875895023345947265625},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_border_color\":\"#747474\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn About Our Pool League, and Get Signed Up Today!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4645,4316,'_wp_page_template','default'),(4646,4316,'_elementor_edit_mode','builder'),(4647,4316,'_elementor_template_type','wp-page'),(4648,4316,'_elementor_version','3.1.4'),(4649,4316,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67e2ef8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"background_overlay_position\":\"center center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]}},\"elements\":[{\"id\":\"9c14fbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our 50+ Years of Dedication to our Clients!\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"a9c9135\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9d75c94\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"398eab98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quality Equipment\",\"percentage_value\":100,\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"title_color\":\"#FFFFFF\",\"desc_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_piecharts\"}],\"isInner\":true},{\"id\":\"90408e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3930a21d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Attention to Detail\",\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"percentage_value\":100,\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_piecharts\"}],\"isInner\":true},{\"id\":\"27bc7b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"564046d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable Support\",\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"percentage_value\":100,\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_piecharts\"}],\"isInner\":true},{\"id\":\"6f96213\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9812d13\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Dedication\",\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"percentage_value\":100,\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_piecharts\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.3319999999999936335370875895023345947265625},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_border_color\":\"#747474\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn About Our Pool League, and Get Signed Up Today!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4661,4319,'_wp_page_template','default'),(4662,4319,'_elementor_edit_mode','builder'),(4663,4319,'_elementor_template_type','wp-page'),(4664,4319,'_elementor_version','3.1.4'),(4665,4319,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67e2ef8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"background_overlay_position\":\"center center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]}},\"elements\":[{\"id\":\"9c14fbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our 50+ Years of Dedication to our Clients!\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"a9c9135\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9d75c94\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"abbd6d4\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F00000\",\"_background_background\":\"classic\",\"_background_color\":\"#23232387\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"90408e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"21051e5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_background_background\":\"classic\",\"_background_color\":\"#23232387\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"27bc7b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d1b9bc\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_background_background\":\"classic\",\"_background_color\":\"#23232387\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"6f96213\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2234f19\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_background_background\":\"classic\",\"_background_color\":\"#23232387\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.3319999999999936335370875895023345947265625},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_border_color\":\"#747474\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn About Our Pool League, and Get Signed Up Today!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4666,4320,'_wp_page_template','default'),(4667,4320,'_elementor_edit_mode','builder'),(4668,4320,'_elementor_template_type','wp-page'),(4669,4320,'_elementor_version','3.1.4'),(4670,4320,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67e2ef8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"background_overlay_position\":\"center center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]}},\"elements\":[{\"id\":\"9c14fbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our 50+ Years of Dedication to our Clients!\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"a9c9135\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9d75c94\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"abbd6d4\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F00000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"90408e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"21051e5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"27bc7b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d1b9bc\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"6f96213\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2234f19\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.3319999999999936335370875895023345947265625},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_border_color\":\"#747474\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn About Our Pool League, and Get Signed Up Today!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4672,4321,'_wp_page_template','default'),(4673,4321,'_elementor_edit_mode','builder'),(4674,4321,'_elementor_template_type','wp-page'),(4675,4321,'_elementor_version','3.1.4'),(4676,4321,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67e2ef8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"background_overlay_position\":\"center center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]}},\"elements\":[{\"id\":\"9c14fbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our 50+ Years of Dedication to our Clients!\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"a9c9135\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9d75c94\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"abbd6d4\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F00000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"90408e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"21051e5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"27bc7b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d1b9bc\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"6f96213\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2234f19\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.3319999999999936335370875895023345947265625},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_border_color\":\"#747474\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn About Our Pool League, and Get Signed Up Today!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4677,4322,'_wp_page_template','default'),(4678,4322,'_elementor_edit_mode','builder'),(4679,4322,'_elementor_template_type','wp-page'),(4680,4322,'_elementor_version','3.1.4'),(4681,4322,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67e2ef8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"background_overlay_position\":\"center center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]}},\"elements\":[{\"id\":\"9c14fbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our 50+ Years of Dedication to our Clients!\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"a9c9135\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9d75c94\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"abbd6d4\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F00000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"90408e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"21051e5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"27bc7b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d1b9bc\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"6f96213\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2234f19\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.3319999999999936335370875895023345947265625},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_border_color\":\"#747474\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn About Our Pool League, and Get Signed Up Today!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4682,4323,'_wp_page_template','default'),(4683,4323,'_elementor_edit_mode','builder'),(4684,4323,'_elementor_template_type','wp-page'),(4685,4323,'_elementor_version','3.1.4'),(4686,4323,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67e2ef8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"background_overlay_position\":\"center center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]}},\"elements\":[{\"id\":\"9c14fbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our 50+ Years of Dedication to our Clients!\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"a9c9135\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9d75c94\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"abbd6d4\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F00000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"90408e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"21051e5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"27bc7b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d1b9bc\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"6f96213\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2234f19\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.3319999999999936335370875895023345947265625},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_border_color\":\"#747474\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn About Our Pool League, and Get Signed Up Today!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4694,4325,'_wp_page_template','default'),(4695,4325,'_elementor_edit_mode','builder'),(4696,4325,'_elementor_template_type','wp-page'),(4697,4325,'_elementor_version','3.1.4'),(4698,4325,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67e2ef8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"background_overlay_position\":\"center center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]}},\"elements\":[{\"id\":\"9c14fbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our 50+ Years of Dedication to our Clients!\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"a9c9135\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9d75c94\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"abbd6d4\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F00000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"90408e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"21051e5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"27bc7b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d1b9bc\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"6f96213\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2234f19\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.3319999999999936335370875895023345947265625},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_border_color\":\"#747474\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn About Our Pool League, and Get Signed Up Today!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4704,4327,'_wp_page_template','default'),(4705,4327,'_elementor_edit_mode','builder'),(4706,4327,'_elementor_template_type','wp-page'),(4707,4327,'_elementor_version','3.1.4'),(4708,4327,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67e2ef8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9c14fbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our 50+ Years of Dedication to our Clients!\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_typography_font_weight\":\"400\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"a9c9135\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9d75c94\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"abbd6d4\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F00000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"90408e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"21051e5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"27bc7b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d1b9bc\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"6f96213\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2234f19\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.3319999999999936335370875895023345947265625},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_border_color\":\"#747474\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn About Our Pool League, and Get Signed Up Today!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4699,4326,'_wp_page_template','default'),(4700,4326,'_elementor_edit_mode','builder'),(4701,4326,'_elementor_template_type','wp-page'),(4702,4326,'_elementor_version','3.1.4'),(4703,4326,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67e2ef8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"background_overlay_position\":\"center center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]}},\"elements\":[{\"id\":\"9c14fbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our 50+ Years of Dedication to our Clients!\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"a9c9135\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9d75c94\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"abbd6d4\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F00000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"90408e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"21051e5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"27bc7b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d1b9bc\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"6f96213\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2234f19\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.3319999999999936335370875895023345947265625},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_border_color\":\"#747474\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn About Our Pool League, and Get Signed Up Today!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4711,4328,'_wp_page_template','default'),(4712,4328,'_elementor_edit_mode','builder'),(4713,4328,'_elementor_template_type','wp-page'),(4714,4328,'_elementor_version','3.1.4'),(4715,4328,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67e2ef8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9c14fbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our 50+ Years of Dedication to our Clients!\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_typography_font_weight\":\"400\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"a9c9135\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9d75c94\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"abbd6d4\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F00000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"90408e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"21051e5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"27bc7b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d1b9bc\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"6f96213\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2234f19\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.3319999999999936335370875895023345947265625},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_border_color\":\"#747474\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn About Our Pool League, and Get Signed Up Today!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(5487,4421,'_elementor_version','3.1.4'),(5488,4421,'_elementor_data','[{\"id\":\"d8bdc5a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4c2fc51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d6bfcba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact System Amusement Today\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"de8193b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/211037967555058\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"13f51f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9e16110\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Phone:\",\"description_text\":\"509-326-1551 \",\"list\":[],\"_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"485cc85\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"title_text\":\"Email:\",\"description_text\":\"systemamusement@comcast.net\",\"list\":[],\"_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"c8a2f48\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"title_text\":\"Hours:\",\"description_text\":\"Mon - Sat: 8 am - 5 pm, <br>Sunday: CLOSED\",\"list\":[],\"_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"12c802c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1c288d36\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFD500FC\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5baf77\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1133c0cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our 50+ Years of Dedication to our Clients!\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#00BCFF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_typography_font_weight\":\"400\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4c17575\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"240d045d\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"14bf715f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"682bb3dc\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F00000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"68788f1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"41c4abc8\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"581ad8e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3886a227\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"6541e512\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"457d6b60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4717,4329,'_wp_page_template','default'),(4718,4329,'_elementor_edit_mode','builder'),(4719,4329,'_elementor_template_type','wp-page'),(4720,4329,'_elementor_version','3.1.4'),(4721,4329,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67e2ef8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9c14fbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our 50+ Years of Dedication to our Clients!\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_typography_font_weight\":\"400\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"a9c9135\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9d75c94\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"abbd6d4\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F00000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"90408e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"21051e5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"27bc7b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d1b9bc\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"6f96213\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2234f19\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.3319999999999936335370875895023345947265625},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_border_color\":\"#747474\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn About Our Pool League, and Get Signed Up Today!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(5484,4421,'_wp_page_template','default'),(5485,4421,'_elementor_edit_mode','builder'),(5486,4421,'_elementor_template_type','wp-page'),(5150,4378,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pinball Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Pinball is a type of arcade game in which a player uses paddles (called flippers) to manipulate one or more balls inside a pinball machine. A pinball machine is a glass-covered cabinet containing a play field populated with lights, targets, bumpers, ramps, and various other objects depending on its design. The primary objective of the game is to score as many points as possible by hitting targets and making various shots with the flippers, before all balls \\\"drain\\\" at an exit usually situated at the bottom of the play field.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Munsters-LE-Details-19.jpeg\",\"id\":4245},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67e2ef8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFD500FC\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9c14fbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our 50+ Years of Dedication to our Clients!\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#00BCFF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_typography_font_weight\":\"400\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"a9c9135\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9d75c94\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"abbd6d4\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F00000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"90408e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"21051e5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"27bc7b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d1b9bc\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"6f96213\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2234f19\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.3319999999999936335370875895023345947265625},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_border_color\":\"#747474\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn About Our Pool League, and Get Signed Up Today!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4723,4330,'_wp_page_template','default'),(4724,4330,'_elementor_edit_mode','builder'),(4725,4330,'_elementor_template_type','wp-page'),(4726,4330,'_elementor_version','3.1.4'),(4727,4330,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67e2ef8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFD500FC\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9c14fbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our 50+ Years of Dedication to our Clients!\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_typography_font_weight\":\"400\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"a9c9135\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9d75c94\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"abbd6d4\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F00000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"90408e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"21051e5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"27bc7b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d1b9bc\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"6f96213\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2234f19\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.3319999999999936335370875895023345947265625},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_border_color\":\"#747474\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn About Our Pool League, and Get Signed Up Today!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4730,4331,'_wp_page_template','default'),(4731,4331,'_elementor_edit_mode','builder'),(4732,4331,'_elementor_template_type','wp-page'),(4733,4331,'_elementor_version','3.1.4'),(4734,4331,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67e2ef8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFD500FC\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9c14fbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our 50+ Years of Dedication to our Clients!\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_typography_font_weight\":\"400\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"a9c9135\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9d75c94\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"abbd6d4\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F00000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"90408e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"21051e5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"27bc7b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d1b9bc\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"6f96213\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2234f19\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.3319999999999936335370875895023345947265625},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_border_color\":\"#747474\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn About Our Pool League, and Get Signed Up Today!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4735,4332,'_wp_page_template','default'),(4736,4332,'_elementor_edit_mode','builder'),(4737,4332,'_elementor_template_type','wp-page'),(4738,4332,'_elementor_version','3.1.4'),(4739,4332,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67e2ef8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFD500FC\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9c14fbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our 50+ Years of Dedication to our Clients!\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_typography_font_weight\":\"400\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"a9c9135\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9d75c94\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"abbd6d4\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F00000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"90408e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"21051e5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"27bc7b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d1b9bc\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"6f96213\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2234f19\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.3319999999999936335370875895023345947265625},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_border_color\":\"#747474\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn About Our Pool League, and Get Signed Up Today!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(5148,4378,'_elementor_template_type','wp-page'),(5149,4378,'_elementor_version','3.1.4'),(4740,4333,'_wp_page_template','default'),(4741,4333,'_elementor_edit_mode','builder'),(4742,4333,'_elementor_template_type','wp-page'),(4743,4333,'_elementor_version','3.1.4');
INSERT INTO `wp9s_postmeta` VALUES (4744,4333,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67e2ef8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFD500FC\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9c14fbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our 50+ Years of Dedication to our Clients!\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#00BCFF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_typography_font_weight\":\"400\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"a9c9135\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9d75c94\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"abbd6d4\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F00000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"90408e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"21051e5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"27bc7b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d1b9bc\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"6f96213\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2234f19\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.3319999999999936335370875895023345947265625},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_border_color\":\"#747474\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn About Our Pool League, and Get Signed Up Today!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(5117,4373,'_wp_page_template','default'),(5118,4373,'_elementor_edit_mode','builder'),(5119,4373,'_elementor_template_type','wp-page'),(5120,4373,'_elementor_version','3.1.4'),(5121,4373,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67e2ef8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFD500FC\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9c14fbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our 50+ Years of Dedication to our Clients!\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#00BCFF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_typography_font_weight\":\"400\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"a9c9135\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9d75c94\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"abbd6d4\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F00000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"90408e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"21051e5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"27bc7b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d1b9bc\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"6f96213\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2234f19\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.3319999999999936335370875895023345947265625},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_border_color\":\"#747474\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn About Our Pool League, and Get Signed Up Today!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4747,3201,'_edit_lock','1618439660:1'),(4766,4337,'_wp_page_template','default'),(4767,4337,'_elementor_edit_mode','builder'),(4768,4337,'_elementor_template_type','wp-post'),(4769,4337,'_elementor_version','3.1.4'),(4770,4337,'_elementor_data','[{\"id\":\"200f95f0\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#0e0e0e\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"82\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.84999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_color\":\"#0E0E0E\"},\"elements\":[{\"id\":\"28d85699\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ab3e769\",\"elType\":\"widget\",\"settings\":{\"title\":\"Links\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6bf0c110\",\"elType\":\"widget\",\"settings\":{\"menu\":\"3\",\"style\":\"tow-col-light\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"}],\"isInner\":false},{\"id\":\"75b76e32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.6640000000000014779288903810083866119384765625},\"elements\":[{\"id\":\"6eb9f72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Screen-Shot-2021-03-26-at-1.45.54-PM.png\",\"id\":4118}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d9a7164\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"509-993-4955\",\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"_id\":\"a8d66fd\",\"link\":{\"url\":\"tel: 509-993-4955\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"63a2907\",\"text\":\"info@systemamusement.com\",\"selected_icon\":{\"value\":\"fas fa-envelope-open-text\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"mailto: info@systemamusement.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mon - Sat: 8 am - 5 pm, Sunday: CLOSED\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"mailto: info@systemamusement.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf1ee1\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#E70707\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_self_align\":\"left\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"106b0ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33},\"elements\":[{\"id\":\"35f00ad3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e644d17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Send us a newsletter to get update\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4032b906\",\"elType\":\"widget\",\"settings\":{\"id\":\"default\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_color1\":\"#4B58FF\",\"button_color2\":\"#4B58FF\"},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"1219b142\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"d40f6fc\",\"ct_icon\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5da1c22\",\"ct_icon\":{\"value\":\"fab fa-behance\",\"library\":\"fa-brands\"}}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1283aa2f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#0E0E0E\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EB0303\"},\"elements\":[{\"id\":\"2ee003fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"23c147c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p><span class=\\\"ct-year\\\">2021<\\/span> \\u00a9 System Amusements. All rights reserved.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"link_color\":\"#00C7D4\",\"link_color_hover\":\"#4B58FF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false}]'),(5017,4359,'_elementor_edit_mode','builder'),(5018,4359,'_elementor_template_type','wp-post'),(4772,4338,'_wp_page_template','default'),(4773,4338,'_elementor_edit_mode','builder'),(4774,4338,'_elementor_template_type','wp-post'),(4775,4338,'_elementor_version','3.1.4'),(4776,4338,'_elementor_data','[{\"id\":\"200f95f0\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#0e0e0e\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"82\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.84999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_color\":\"#0E0E0E\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F10303\"},\"elements\":[{\"id\":\"28d85699\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ab3e769\",\"elType\":\"widget\",\"settings\":{\"title\":\"Links\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6bf0c110\",\"elType\":\"widget\",\"settings\":{\"menu\":\"3\",\"style\":\"tow-col-light\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"}],\"isInner\":false},{\"id\":\"75b76e32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.6640000000000014779288903810083866119384765625},\"elements\":[{\"id\":\"6eb9f72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Screen-Shot-2021-03-26-at-1.45.54-PM.png\",\"id\":4118}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d9a7164\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"509-993-4955\",\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"_id\":\"a8d66fd\",\"link\":{\"url\":\"tel: 509-993-4955\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"63a2907\",\"text\":\"info@systemamusement.com\",\"selected_icon\":{\"value\":\"fas fa-envelope-open-text\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"mailto: info@systemamusement.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mon - Sat: 8 am - 5 pm, Sunday: CLOSED\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"mailto: info@systemamusement.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf1ee1\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#E70707\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_self_align\":\"left\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"106b0ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33},\"elements\":[{\"id\":\"35f00ad3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e644d17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Send us a newsletter to get update\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4032b906\",\"elType\":\"widget\",\"settings\":{\"id\":\"default\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_color1\":\"#4B58FF\",\"button_color2\":\"#4B58FF\"},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"1219b142\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"d40f6fc\",\"ct_icon\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5da1c22\",\"ct_icon\":{\"value\":\"fab fa-behance\",\"library\":\"fa-brands\"}}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1283aa2f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#0E0E0E\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EB0303\"},\"elements\":[{\"id\":\"2ee003fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"23c147c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p><span class=\\\"ct-year\\\">2021<\\/span> \\u00a9 System Amusements. All rights reserved.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"link_color\":\"#00C7D4\",\"link_color_hover\":\"#4B58FF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false}]'),(4778,4339,'_wp_page_template','default'),(4779,4339,'_elementor_edit_mode','builder'),(4780,4339,'_elementor_template_type','wp-post'),(4781,4339,'_elementor_version','3.1.4'),(4782,4339,'_elementor_data','[{\"id\":\"200f95f0\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#0e0e0e\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"82\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.84999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_color\":\"#0E0E0E\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F10303\"},\"elements\":[{\"id\":\"28d85699\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ab3e769\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6bf0c110\",\"elType\":\"widget\",\"settings\":{\"menu\":\"3\",\"style\":\"tow-col-light\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"}],\"isInner\":false},{\"id\":\"75b76e32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.6640000000000014779288903810083866119384765625},\"elements\":[{\"id\":\"6eb9f72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Screen-Shot-2021-03-26-at-1.45.54-PM.png\",\"id\":4118}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d9a7164\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"509-993-4955\",\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"_id\":\"a8d66fd\",\"link\":{\"url\":\"tel: 509-993-4955\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"63a2907\",\"text\":\"info@systemamusement.com\",\"selected_icon\":{\"value\":\"fas fa-envelope-open-text\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"mailto: info@systemamusement.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mon - Sat: 8 am - 5 pm, Sunday: CLOSED\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"mailto: info@systemamusement.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf1ee1\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#E70707\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_self_align\":\"left\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"106b0ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33},\"elements\":[{\"id\":\"35f00ad3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e644d17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Send us a newsletter to get update\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4032b906\",\"elType\":\"widget\",\"settings\":{\"id\":\"default\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_color1\":\"#4B58FF\",\"button_color2\":\"#4B58FF\"},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"1219b142\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"d40f6fc\",\"ct_icon\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5da1c22\",\"ct_icon\":{\"value\":\"fab fa-behance\",\"library\":\"fa-brands\"}}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1283aa2f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#0E0E0E\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EB0303\"},\"elements\":[{\"id\":\"2ee003fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"23c147c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p><span class=\\\"ct-year\\\">2021<\\/span> \\u00a9 System Amusements. All rights reserved.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"link_color\":\"#00C7D4\",\"link_color_hover\":\"#4B58FF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false}]'),(4784,4340,'_wp_page_template','default'),(4785,4340,'_elementor_edit_mode','builder'),(4786,4340,'_elementor_template_type','wp-post'),(4787,4340,'_elementor_version','3.1.4'),(4788,4340,'_elementor_data','[{\"id\":\"200f95f0\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#0e0e0e\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"82\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.84999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_color\":\"#0E0E0E\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F10303\"},\"elements\":[{\"id\":\"28d85699\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ab3e769\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6bf0c110\",\"elType\":\"widget\",\"settings\":{\"menu\":\"3\",\"style\":\"tow-col-light\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"}],\"isInner\":false},{\"id\":\"75b76e32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33},\"elements\":[{\"id\":\"6eb9f72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Screen-Shot-2021-03-26-at-1.45.54-PM.png\",\"id\":4118}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d9a7164\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"509-993-4955\",\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"_id\":\"a8d66fd\",\"link\":{\"url\":\"tel: 509-993-4955\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"63a2907\",\"text\":\"info@systemamusement.com\",\"selected_icon\":{\"value\":\"fas fa-envelope-open-text\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"mailto: info@systemamusement.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mon - Sat: 8 am - 5 pm, Sunday: CLOSED\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"mailto: info@systemamusement.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf1ee1\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#E70707\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_self_align\":\"left\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"106b0ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.6640000000000014779288903810083866119384765625},\"elements\":[{\"id\":\"35f00ad3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e644d17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Send us a newsletter to get update\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4032b906\",\"elType\":\"widget\",\"settings\":{\"id\":\"default\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_color1\":\"#4B58FF\",\"button_color2\":\"#4B58FF\"},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"1219b142\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"d40f6fc\",\"ct_icon\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5da1c22\",\"ct_icon\":{\"value\":\"fab fa-behance\",\"library\":\"fa-brands\"}}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1283aa2f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#0E0E0E\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EB0303\"},\"elements\":[{\"id\":\"2ee003fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"23c147c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p><span class=\\\"ct-year\\\">2021<\\/span> \\u00a9 System Amusements. All rights reserved.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"link_color\":\"#00C7D4\",\"link_color_hover\":\"#4B58FF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false}]'),(5016,4359,'_wp_page_template','default'),(4791,4341,'_wp_page_template','default'),(4792,4341,'_elementor_edit_mode','builder'),(4793,4341,'_elementor_template_type','wp-post'),(4794,4341,'_elementor_version','3.1.4'),(4795,4341,'_elementor_data','[{\"id\":\"200f95f0\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#0e0e0e\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"82\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.84999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_color\":\"#0E0E0E\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F10303\"},\"elements\":[{\"id\":\"28d85699\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ab3e769\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6bf0c110\",\"elType\":\"widget\",\"settings\":{\"menu\":\"3\",\"style\":\"tow-col-light\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"}],\"isInner\":false},{\"id\":\"75b76e32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33},\"elements\":[{\"id\":\"6eb9f72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Screen-Shot-2021-03-26-at-1.45.54-PM.png\",\"id\":4118},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d9a7164\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"509-993-4955\",\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"_id\":\"a8d66fd\",\"link\":{\"url\":\"tel: 509-993-4955\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"63a2907\",\"text\":\"info@systemamusement.com\",\"selected_icon\":{\"value\":\"fas fa-envelope-open-text\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"mailto: info@systemamusement.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mon - Sat: 8 am - 5 pm, Sunday: CLOSED\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"mailto: info@systemamusement.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf1ee1\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#E70707\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_self_align\":\"left\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"106b0ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.6640000000000014779288903810083866119384765625},\"elements\":[{\"id\":\"35f00ad3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e644d17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Send us a newsletter to get update\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4032b906\",\"elType\":\"widget\",\"settings\":{\"id\":\"default\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_color1\":\"#4B58FF\",\"button_color2\":\"#4B58FF\"},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"1219b142\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"d40f6fc\",\"ct_icon\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5da1c22\",\"ct_icon\":{\"value\":\"fab fa-behance\",\"library\":\"fa-brands\"}}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1283aa2f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#0E0E0E\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EB0303\"},\"elements\":[{\"id\":\"2ee003fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"23c147c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p><span class=\\\"ct-year\\\">2021<\\/span> \\u00a9 System Amusements. All rights reserved.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"link_color\":\"#00C7D4\",\"link_color_hover\":\"#4B58FF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false}]'),(5483,4420,'_elementor_css','a:6:{s:4:\"time\";i:1619640227;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:3;s:8:\"material\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(5019,4359,'_elementor_version','3.1.4'),(5020,4359,'_elementor_data','[{\"id\":\"200f95f0\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#0e0e0e\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"82\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.84999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_color\":\"#0E0E0E\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F10303\"},\"elements\":[{\"id\":\"28d85699\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ab3e769\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6bf0c110\",\"elType\":\"widget\",\"settings\":{\"menu\":\"3\",\"style\":\"tow-col-light\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"}],\"isInner\":false},{\"id\":\"75b76e32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33},\"elements\":[{\"id\":\"6eb9f72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Screen-Shot-2021-03-26-at-1.45.54-PM.png\",\"id\":4118},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d9a7164\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"509-993-4955\",\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"_id\":\"a8d66fd\",\"link\":{\"url\":\"tel: 509-993-4955\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"63a2907\",\"text\":\"info@systemamusement.com\",\"selected_icon\":{\"value\":\"fas fa-envelope-open-text\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"mailto: info@systemamusement.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mon - Sat: 8 am - 5 pm, Sunday: CLOSED\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"mailto: info@systemamusement.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf1ee1\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#E70707\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_self_align\":\"left\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"25a3a6a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"de96d27\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"ff13600\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"962c8f6\"}],\"shape\":\"circle\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false},{\"id\":\"106b0ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.6640000000000014779288903810083866119384765625},\"elements\":[{\"id\":\"35f00ad3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e644d17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Send us a newsletter to get update<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4032b906\",\"elType\":\"widget\",\"settings\":{\"id\":\"default\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"button_color1\":\"#4B58FF\",\"button_color2\":\"#4B58FF\"},\"elements\":[],\"widgetType\":\"ct_newsletter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1283aa2f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#0E0E0E\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EB0303\"},\"elements\":[{\"id\":\"2ee003fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"23c147c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p><span class=\\\"ct-year\\\">2021<\\/span> \\u00a9 System Amusements. All rights reserved.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"link_color\":\"#00C7D4\",\"link_color_hover\":\"#4B58FF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false}]'),(4808,4343,'_menu_item_type','custom'),(4809,4343,'_menu_item_menu_item_parent','0'),(4810,4343,'_menu_item_object_id','4343'),(4811,4343,'_menu_item_object','custom'),(4812,4343,'_menu_item_target',''),(4813,4343,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4814,4343,'_menu_item_xfn',''),(4815,4343,'_menu_item_url','#'),(4884,4343,'_menu_item_ct_megaprofile','0'),(4817,4344,'_menu_item_type','custom'),(4818,4344,'_menu_item_menu_item_parent','0'),(4819,4344,'_menu_item_object_id','4344'),(4820,4344,'_menu_item_object','custom'),(4821,4344,'_menu_item_target',''),(4822,4344,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4823,4344,'_menu_item_xfn',''),(4824,4344,'_menu_item_url','https://sa7717.dev34.info/our-services/'),(4888,4344,'_menu_item_ct_megaprofile','0'),(4826,4345,'_menu_item_type','custom'),(4827,4345,'_menu_item_menu_item_parent','0'),(4828,4345,'_menu_item_object_id','4345'),(4829,4345,'_menu_item_object','custom'),(4830,4345,'_menu_item_target',''),(4831,4345,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4832,4345,'_menu_item_xfn',''),(4833,4345,'_menu_item_url','https://sa7717.dev34.info/equipment-for-sale/'),(4892,4345,'_menu_item_ct_megaprofile','0'),(5653,4361,'_wp_old_date','2021-04-15'),(5652,4345,'_wp_old_date','2021-04-15'),(5651,4409,'_wp_old_date','2021-04-15'),(5650,4344,'_wp_old_date','2021-04-15'),(5649,4343,'_wp_old_date','2021-04-15'),(4862,4349,'_menu_item_type','custom'),(4863,4349,'_menu_item_menu_item_parent','0'),(4864,4349,'_menu_item_object_id','4349'),(4865,4349,'_menu_item_object','custom'),(4866,4349,'_menu_item_target',''),(4867,4349,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4868,4349,'_menu_item_xfn',''),(4869,4349,'_menu_item_url','https://sa7717.dev34.info/contact/'),(4908,4349,'_menu_item_ct_megaprofile','0'),(4871,4350,'_menu_item_type','custom'),(4872,4350,'_menu_item_menu_item_parent','0'),(4873,4350,'_menu_item_object_id','4350'),(4874,4350,'_menu_item_object','custom'),(4875,4350,'_menu_item_target','_blank'),(4876,4350,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4877,4350,'_menu_item_xfn',''),(4878,4350,'_menu_item_url','https://pinballmap.com/spokane'),(4904,4350,'_menu_item_ct_megaprofile','0'),(4885,4343,'_menu_item_ct_icon',''),(4886,4343,'_menu_item_ct_onepage','no-one-page'),(4887,4343,'_menu_item_ct_onepage_offset',''),(4889,4344,'_menu_item_ct_icon',''),(4890,4344,'_menu_item_ct_onepage','no-one-page'),(4891,4344,'_menu_item_ct_onepage_offset',''),(4893,4345,'_menu_item_ct_icon',''),(4894,4345,'_menu_item_ct_onepage','no-one-page'),(4895,4345,'_menu_item_ct_onepage_offset',''),(4905,4350,'_menu_item_ct_icon',''),(4906,4350,'_menu_item_ct_onepage','no-one-page'),(4907,4350,'_menu_item_ct_onepage_offset',''),(4909,4349,'_menu_item_ct_icon',''),(4910,4349,'_menu_item_ct_onepage','no-one-page'),(4911,4349,'_menu_item_ct_onepage_offset',''),(4912,4351,'_menu_item_type','custom'),(4913,4351,'_menu_item_menu_item_parent','0'),(4914,4351,'_menu_item_object_id','4351'),(4915,4351,'_menu_item_object','custom'),(4916,4351,'_menu_item_target',''),(4917,4351,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4918,4351,'_menu_item_xfn',''),(4919,4351,'_menu_item_url','#'),(4948,4351,'_menu_item_ct_megaprofile','0'),(4921,4352,'_menu_item_type','custom'),(4922,4352,'_menu_item_menu_item_parent','0'),(4923,4352,'_menu_item_object_id','4352'),(4924,4352,'_menu_item_object','custom'),(4925,4352,'_menu_item_target',''),(4926,4352,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4927,4352,'_menu_item_xfn',''),(4928,4352,'_menu_item_url','#'),(4952,4352,'_menu_item_ct_megaprofile','0'),(4930,4353,'_menu_item_type','custom'),(4931,4353,'_menu_item_menu_item_parent','0'),(4932,4353,'_menu_item_object_id','4353'),(4933,4353,'_menu_item_object','custom'),(4934,4353,'_menu_item_target',''),(4935,4353,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4936,4353,'_menu_item_xfn',''),(4937,4353,'_menu_item_url','#'),(4956,4353,'_menu_item_ct_megaprofile','0'),(4939,4354,'_menu_item_type','custom'),(4940,4354,'_menu_item_menu_item_parent','0'),(4941,4354,'_menu_item_object_id','4354'),(4942,4354,'_menu_item_object','custom'),(4943,4354,'_menu_item_target',''),(4944,4354,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4945,4354,'_menu_item_xfn',''),(4946,4354,'_menu_item_url','#'),(4960,4354,'_menu_item_ct_megaprofile','0'),(4949,4351,'_menu_item_ct_icon',''),(4950,4351,'_menu_item_ct_onepage','no-one-page'),(4951,4351,'_menu_item_ct_onepage_offset',''),(4953,4352,'_menu_item_ct_icon',''),(4954,4352,'_menu_item_ct_onepage','no-one-page'),(4955,4352,'_menu_item_ct_onepage_offset',''),(4957,4353,'_menu_item_ct_icon',''),(4958,4353,'_menu_item_ct_onepage','no-one-page'),(4959,4353,'_menu_item_ct_onepage_offset',''),(4961,4354,'_menu_item_ct_icon',''),(4962,4354,'_menu_item_ct_onepage','no-one-page'),(4963,4354,'_menu_item_ct_onepage_offset',''),(4964,4355,'_menu_item_type','custom'),(4965,4355,'_menu_item_menu_item_parent','0'),(4966,4355,'_menu_item_object_id','4355'),(4967,4355,'_menu_item_object','custom'),(4968,4355,'_menu_item_target',''),(4969,4355,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4970,4355,'_menu_item_xfn',''),(4971,4355,'_menu_item_url','#'),(5000,4355,'_menu_item_ct_megaprofile','0'),(4973,4356,'_menu_item_type','custom'),(4974,4356,'_menu_item_menu_item_parent','0'),(4975,4356,'_menu_item_object_id','4356'),(4976,4356,'_menu_item_object','custom'),(4977,4356,'_menu_item_target',''),(4978,4356,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4979,4356,'_menu_item_xfn',''),(4980,4356,'_menu_item_url','#'),(5004,4356,'_menu_item_ct_megaprofile','0'),(4982,4357,'_menu_item_type','custom'),(4983,4357,'_menu_item_menu_item_parent','0'),(4984,4357,'_menu_item_object_id','4357'),(4985,4357,'_menu_item_object','custom'),(4986,4357,'_menu_item_target',''),(4987,4357,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4988,4357,'_menu_item_xfn',''),(4989,4357,'_menu_item_url','#'),(5008,4357,'_menu_item_ct_megaprofile','0'),(4991,4358,'_menu_item_type','custom'),(4992,4358,'_menu_item_menu_item_parent','0'),(4993,4358,'_menu_item_object_id','4358'),(4994,4358,'_menu_item_object','custom'),(4995,4358,'_menu_item_target',''),(4996,4358,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4997,4358,'_menu_item_xfn',''),(4998,4358,'_menu_item_url','#'),(5012,4358,'_menu_item_ct_megaprofile','0'),(5001,4355,'_menu_item_ct_icon',''),(5002,4355,'_menu_item_ct_onepage','no-one-page'),(5003,4355,'_menu_item_ct_onepage_offset',''),(5005,4356,'_menu_item_ct_icon',''),(5006,4356,'_menu_item_ct_onepage','no-one-page'),(5007,4356,'_menu_item_ct_onepage_offset',''),(5009,4357,'_menu_item_ct_icon',''),(5010,4357,'_menu_item_ct_onepage','no-one-page'),(5011,4357,'_menu_item_ct_onepage_offset',''),(5013,4358,'_menu_item_ct_icon',''),(5014,4358,'_menu_item_ct_onepage','no-one-page'),(5015,4358,'_menu_item_ct_onepage_offset',''),(5077,4362,'_wp_page_template','default'),(5078,4362,'_elementor_edit_mode','builder'),(5079,4362,'_elementor_template_type','wp-post'),(5080,4362,'_elementor_version','3.1.4'),(5081,4362,'_elementor_data','[{\"id\":\"200f95f0\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#0e0e0e\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"82\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.84999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_color\":\"#0E0E0E\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F10303\"},\"elements\":[{\"id\":\"75b76e32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33},\"elements\":[{\"id\":\"6eb9f72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Screen-Shot-2021-03-26-at-1.45.54-PM.png\",\"id\":4118},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d9a7164\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"509-993-4955\",\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"_id\":\"a8d66fd\",\"link\":{\"url\":\"tel: 509-993-4955\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"63a2907\",\"text\":\"info@systemamusement.com\",\"selected_icon\":{\"value\":\"fas fa-envelope-open-text\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"mailto: info@systemamusement.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mon - Sat: 8 am - 5 pm, Sunday: CLOSED\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"mailto: info@systemamusement.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf1ee1\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#E70707\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_self_align\":\"left\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"25a3a6a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"de96d27\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"ff13600\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"962c8f6\"}],\"shape\":\"circle\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false},{\"id\":\"28d85699\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ab3e769\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\",\"style\":\"style2\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6bf0c110\",\"elType\":\"widget\",\"settings\":{\"menu\":\"3\",\"style\":\"tow-col-light\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"}],\"isInner\":false},{\"id\":\"106b0ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.6640000000000014779288903810083866119384765625},\"elements\":[{\"id\":\"35f00ad3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\",\"style\":\"style2\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e644d17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Send us a newsletter to get update<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4032b906\",\"elType\":\"widget\",\"settings\":{\"id\":\"default\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"button_color1\":\"#4B58FF\",\"button_color2\":\"#4B58FF\"},\"elements\":[],\"widgetType\":\"ct_newsletter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1283aa2f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#0E0E0E\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EB0303\"},\"elements\":[{\"id\":\"2ee003fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"23c147c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p><span class=\\\"ct-year\\\">2021<\\/span> \\u00a9 System Amusements. All rights reserved.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"link_color\":\"#00C7D4\",\"link_color_hover\":\"#4B58FF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false}]'),(5024,4360,'_wp_page_template','default'),(5025,4360,'_elementor_edit_mode','builder'),(5026,4360,'_elementor_template_type','wp-page'),(5027,4360,'_elementor_version','3.1.4'),(5028,4360,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67e2ef8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFD500FC\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9c14fbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our 50+ Years of Dedication to our Clients!\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#00BCFF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_typography_font_weight\":\"400\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"a9c9135\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9d75c94\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"abbd6d4\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F00000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"90408e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"21051e5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"27bc7b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d1b9bc\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"6f96213\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2234f19\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.3319999999999936335370875895023345947265625},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_border_color\":\"#747474\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn About Our Pool League, and Get Signed Up Today!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(5029,4360,'_elementor_controls_usage','a:12:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:31;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:9;s:7:\"padding\";i:8;s:13:\"margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:21:\"background_background\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:17;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:15:\"stretch_section\";i:12;s:6:\"layout\";i:1;s:3:\"gap\";i:4;s:8:\"overflow\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:11;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:8:{s:21:\"background_background\";i:12;s:16:\"background_color\";i:11;s:18:\"background_color_b\";i:5;s:25:\"background_gradient_angle\";i:3;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:21:\"background_color_stop\";i:2;}s:26:\"section_background_overlay\";a:6:{s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:3;s:29:\"background_overlay_attachment\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:3;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:7;s:6:\"margin\";i:2;s:7:\"z_index\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:12:{s:5:\"title\";i:12;s:10:\"text_align\";i:12;s:5:\"style\";i:12;s:11:\"title_color\";i:11;s:18:\"title_space_bottom\";i:8;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:28:\"title_typography_font_weight\";i:1;s:13:\"st_line_color\";i:1;s:28:\"title_typography_line_height\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;}s:17:\"sub_title_section\";a:8:{s:9:\"sub_title\";i:7;s:15:\"sub_title_color\";i:12;s:31:\"sub_title_typography_typography\";i:12;s:32:\"sub_title_typography_font_family\";i:12;s:30:\"sub_title_typography_font_size\";i:12;s:32:\"sub_title_typography_font_weight\";i:12;s:22:\"sub_title_space_bottom\";i:12;s:14:\"sub_title_line\";i:12;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:8;s:7:\"_margin\";i:1;s:8:\"_z_index\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:3:{s:4:\"text\";i:3;s:5:\"align\";i:3;s:4:\"size\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:17:\"button_text_color\";i:3;s:16:\"background_color\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:3;}}}}s:9:\"shortcode\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:17:\"section_shortcode\";a:1:{s:9:\"shortcode\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:6;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:6;s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:20:\"typography_font_size\";i:6;s:22:\"typography_line_height\";i:6;s:19:\"text_color_gradient\";i:2;s:26:\"link_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:8:\"_padding\";i:6;s:7:\"_margin\";i:6;s:15:\"_padding_tablet\";i:6;s:15:\"_padding_mobile\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:8;s:5:\"align\";i:5;s:10:\"image_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:6;s:8:\"_padding\";i:6;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:4:{s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:1:{s:12:\"number_color\";i:4;}s:13:\"section_title\";a:1:{s:11:\"title_color\";i:4;}s:12:\"section_icon\";a:1:{s:10:\"icon_color\";i:4;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:4;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:4;s:17:\"_background_color\";i:4;}s:15:\"_section_border\";a:4:{s:14:\"_border_border\";i:4;s:13:\"_border_width\";i:4;s:13:\"_border_color\";i:4;s:14:\"_border_radius\";i:4;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:8:\"_z_index\";i:1;s:14:\"_margin_mobile\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;}}}}s:5:\"video\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_video\";a:1:{s:11:\"youtube_url\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"_section_border\";a:3:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;}}}}}'),(5031,3193,'_oembed_59f9d7a4b6a5be1db4203229505bc2d5','<iframe title=\"TouchTunesTV\" width=\"640\" height=\"360\" src=\"https://www.youtube.com/embed/taZaMKbW5VQ?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(5032,3193,'_oembed_time_59f9d7a4b6a5be1db4203229505bc2d5','1616881410'),(5033,3193,'_edit_last','1'),(5034,3193,'p_h_style1','themeoption'),(5038,3193,'p_page_title_color',''),(5039,3193,'ptitle_overlay','themeoption'),(5040,3193,'ptitle_breadcrumb_page','themeoption'),(5041,3193,'ptitle_breadcrumb_color',''),(5042,3193,'p_bg_content','a:6:{s:17:\"background-repeat\";s:0:\"\";s:15:\"background-size\";s:0:\"\";s:21:\"background-attachment\";s:0:\"\";s:19:\"background-position\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(5044,3193,'eg_sources_youtube',''),(5045,3193,'eg_sources_vimeo',''),(5046,3193,'eg_sources_wistia',''),(5047,3193,'eg_sources_image',''),(5048,3193,'eg_sources_iframe',''),(5049,3193,'eg_sources_soundcloud',''),(5050,3193,'eg_vimeo_ratio','1'),(5051,3193,'eg_youtube_ratio','1'),(5052,3193,'eg_wistia_ratio','1'),(5053,3193,'eg_html5_ratio','1'),(5054,3193,'eg_soundcloud_ratio','1'),(5055,3193,'eg_sources_revslider',''),(5056,3193,'eg_sources_essgrid',''),(5057,3193,'eg_featured_grid',''),(5058,3193,'eg_settings_custom_meta_skin',''),(5059,3193,'eg_settings_custom_meta_element',''),(5060,3193,'eg_settings_custom_meta_setting',''),(5061,3193,'eg_settings_custom_meta_style',''),(5062,3193,'eg_custom_meta_216','true'),(5063,3193,'eg_votes_count','0'),(5064,4361,'_menu_item_type','custom'),(5065,4361,'_menu_item_menu_item_parent','0'),(5066,4361,'_menu_item_object_id','4361'),(5067,4361,'_menu_item_object','custom'),(5068,4361,'_menu_item_target',''),(5069,4361,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(5070,4361,'_menu_item_xfn',''),(5071,4361,'_menu_item_url','https://sa7717.dev34.info/league-information/'),(5073,4361,'_menu_item_ct_megaprofile','0'),(5074,4361,'_menu_item_ct_icon',''),(5075,4361,'_menu_item_ct_onepage','no-one-page'),(5076,4361,'_menu_item_ct_onepage_offset',''),(5089,4366,'_wp_page_template','default'),(5090,4366,'_elementor_edit_mode','builder'),(5091,4366,'_elementor_template_type','wp-post'),(5092,4366,'_elementor_version','3.1.4'),(5093,4366,'_elementor_data','[{\"id\":\"200f95f0\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#0e0e0e\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"82\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.84999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_color\":\"#0E0E0E\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F10303\"},\"elements\":[{\"id\":\"75b76e32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33},\"elements\":[{\"id\":\"6eb9f72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Screen-Shot-2021-03-26-at-1.45.54-PM.png\",\"id\":4118},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d9a7164\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"509-993-4955\",\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"_id\":\"a8d66fd\",\"link\":{\"url\":\"tel: 509-993-4955\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"63a2907\",\"text\":\"systemamusement@comcast.net\",\"selected_icon\":{\"value\":\"fas fa-envelope-open-text\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"mailto: systemamusement@comcast.net\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mon - Sat: 8 am - 5 pm, Sunday: CLOSED\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"mailto: info@systemamusement.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf1ee1\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#E70707\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_self_align\":\"left\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"25a3a6a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"de96d27\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"ff13600\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"962c8f6\"}],\"shape\":\"circle\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false},{\"id\":\"28d85699\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ab3e769\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\",\"style\":\"style2\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6bf0c110\",\"elType\":\"widget\",\"settings\":{\"menu\":\"3\",\"style\":\"tow-col-light\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"}],\"isInner\":false},{\"id\":\"106b0ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.6640000000000014779288903810083866119384765625},\"elements\":[{\"id\":\"35f00ad3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\",\"style\":\"style2\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e644d17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Send us a newsletter to get update<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4032b906\",\"elType\":\"widget\",\"settings\":{\"id\":\"default\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"button_color1\":\"#4B58FF\",\"button_color2\":\"#4B58FF\"},\"elements\":[],\"widgetType\":\"ct_newsletter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1283aa2f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#0E0E0E\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EB0303\"},\"elements\":[{\"id\":\"2ee003fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"23c147c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p><span class=\\\"ct-year\\\">2021<\\/span> \\u00a9 System Amusements. All rights reserved.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"link_color\":\"#00C7D4\",\"link_color_hover\":\"#4B58FF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false}]'),(5085,4364,'_wp_attached_file','2021/04/darts.jpeg'),(5086,4364,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:18:\"2021/04/darts.jpeg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"darts-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"darts-1024x1024.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"darts-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"darts-768x768.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:18:\"darts-900x313.jpeg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:18:\"darts-600x450.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:18:\"darts-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:18:\"darts-600x600.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:18:\"darts-250x285.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:18:\"darts-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:18:\"darts-600x600.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"darts-250x285.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5087,4365,'_wp_attached_file','2021/04/bullshooter.jpeg'),(5088,4365,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:24:\"2021/04/bullshooter.jpeg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"bullshooter-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"bullshooter-250x285.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"bullshooter-250x285.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5096,4367,'_wp_page_template','default'),(5097,4367,'_elementor_edit_mode','builder'),(5098,4367,'_elementor_template_type','wp-post'),(5099,4367,'_elementor_version','3.1.4'),(5100,4367,'_elementor_data','[{\"id\":\"200f95f0\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#0e0e0e\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"82\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.84999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_color\":\"#0E0E0E\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F10303\"},\"elements\":[{\"id\":\"75b76e32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33},\"elements\":[{\"id\":\"6eb9f72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Screen-Shot-2021-03-26-at-1.45.54-PM.png\",\"id\":4118},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d9a7164\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"509-993-4955\",\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"_id\":\"a8d66fd\",\"link\":{\"url\":\"tel: 509-993-4955\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"63a2907\",\"text\":\"systemamusement@comcast.net\",\"selected_icon\":{\"value\":\"fas fa-envelope-open-text\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"mailto: systemamusement@comcast.net\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mon - Sat: 8 am - 5 pm, Sunday: CLOSED\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"mailto: info@systemamusement.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf1ee1\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#E70707\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_self_align\":\"left\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"25a3a6a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"de96d27\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"ff13600\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"962c8f6\"}],\"shape\":\"circle\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false},{\"id\":\"28d85699\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ab3e769\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\",\"style\":\"style2\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6bf0c110\",\"elType\":\"widget\",\"settings\":{\"menu\":\"3\",\"style\":\"tow-col-light\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"}],\"isInner\":false},{\"id\":\"106b0ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.6640000000000014779288903810083866119384765625},\"elements\":[{\"id\":\"35f00ad3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\",\"style\":\"style2\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e644d17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Send us a newsletter to get update<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4032b906\",\"elType\":\"widget\",\"settings\":{\"id\":\"default\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"button_color1\":\"#4B58FF\",\"button_color2\":\"#4B58FF\"},\"elements\":[],\"widgetType\":\"ct_newsletter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1283aa2f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#0E0E0E\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EB0303\"},\"elements\":[{\"id\":\"2ee003fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"23c147c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p><span class=\\\"ct-year\\\">2021<\\/span> \\u00a9 System Amusements. All rights reserved.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"link_color\":\"#00C7D4\",\"link_color_hover\":\"#4B58FF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false}]'),(5102,4368,'_wp_page_template','default'),(5103,4368,'_elementor_edit_mode','builder'),(5104,4368,'_elementor_template_type','wp-post'),(5105,4368,'_elementor_version','3.1.4'),(5106,4368,'_elementor_data','[{\"id\":\"200f95f0\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#0e0e0e\",\"padding\":{\"unit\":\"px\",\"top\":\"078\",\"right\":\"0\",\"bottom\":\"82\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.84999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_color\":\"#0E0E0E\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F10303\"},\"elements\":[{\"id\":\"75b76e32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33},\"elements\":[{\"id\":\"6eb9f72\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Screen-Shot-2021-03-26-at-1.45.54-PM.png\",\"id\":4118},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d9a7164\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"509-326-1551\\u00a0\",\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"_id\":\"a8d66fd\",\"link\":{\"url\":\"tel: 509-326-1551\\u00a0\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"63a2907\",\"text\":\"systemamusement@comcast.net\",\"selected_icon\":{\"value\":\"fas fa-envelope-open-text\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"mailto: systemamusement@comcast.net\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mon - Sat: 8 am - 5 pm, Sunday: CLOSED\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"mailto: info@systemamusement.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"acf1ee1\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_align\":\"left\",\"icon_color\":\"#E70707\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"icon_self_align\":\"left\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"25a3a6a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"de96d27\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"ff13600\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"962c8f6\"}],\"shape\":\"circle\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false},{\"id\":\"28d85699\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ab3e769\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\",\"style\":\"style2\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6bf0c110\",\"elType\":\"widget\",\"settings\":{\"menu\":\"3\",\"style\":\"tow-col-light\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"}],\"isInner\":false},{\"id\":\"106b0ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.6640000000000014779288903810083866119384765625},\"elements\":[{\"id\":\"35f00ad3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\",\"style\":\"style2\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"1e644d17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Send us a newsletter to get update<\\/p>\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4032b906\",\"elType\":\"widget\",\"settings\":{\"id\":\"default\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"button_color1\":\"#4B58FF\",\"button_color2\":\"#4B58FF\"},\"elements\":[],\"widgetType\":\"ct_newsletter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1283aa2f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#0E0E0E\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EB0303\"},\"elements\":[{\"id\":\"2ee003fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"23c147c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p><span class=\\\"ct-year\\\">2021<\\/span> \\u00a9 System Amusements. All rights reserved.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"link_color\":\"#00C7D4\",\"link_color_hover\":\"#4B58FF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false}]'),(5107,3201,'_elementor_controls_usage','a:10:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:5:\"align\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:1;s:10:\"icon_align\";i:1;}s:18:\"section_icon_style\";a:3:{s:10:\"icon_color\";i:1;s:9:\"icon_size\";i:1;s:15:\"icon_self_align\";i:1;}s:18:\"section_text_style\";a:5:{s:10:\"text_color\";i:1;s:26:\"icon_typography_typography\";i:1;s:27:\"icon_typography_font_family\";i:1;s:25:\"icon_typography_font_size\";i:1;s:27:\"icon_typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:3:{s:16:\"social_icon_list\";i:1;s:5:\"shape\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:1:{s:20:\"section_social_style\";a:1:{s:9:\"icon_size\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:5:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;s:5:\"style\";i:2;s:26:\"title_typography_font_size\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:2:{s:4:\"menu\";i:1;s:5:\"style\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:13:\"ct_newsletter\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}s:5:\"style\";a:1:{s:14:\"source_section\";a:2:{s:13:\"button_color1\";i:1;s:13:\"button_color2\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:15:\"stretch_section\";i:2;s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:1;s:24:\"background_gradient_type\";i:1;}s:26:\"section_background_overlay\";a:5:{s:29:\"background_overlay_background\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:26:\"background_overlay_opacity\";i:1;s:24:\"background_overlay_color\";i:1;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:4:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:10:\"link_color\";i:1;s:16:\"link_color_hover\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:15:\"_padding_mobile\";i:1;}}}}}'),(5108,4369,'_wp_attached_file','2021/04/hyosung_halo.jpeg'),(5109,4369,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:876;s:6:\"height\";i:1893;s:4:\"file\";s:25:\"2021/04/hyosung_halo.jpeg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"hyosung_halo-139x300.jpeg\";s:5:\"width\";i:139;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"hyosung_halo-474x1024.jpeg\";s:5:\"width\";i:474;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"hyosung_halo-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"hyosung_halo-768x1660.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:1660;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:26:\"hyosung_halo-711x1536.jpeg\";s:5:\"width\";i:711;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:25:\"hyosung_halo-876x313.jpeg\";s:5:\"width\";i:876;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:25:\"hyosung_halo-600x450.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"hyosung_halo-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"hyosung_halo-600x1297.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:1297;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"hyosung_halo-250x285.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"hyosung_halo-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"hyosung_halo-600x1297.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:1297;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"hyosung_halo-250x285.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5110,4370,'_wp_attached_file','2021/04/Screen-Shot-2021-04-14-at-3.28.25-PM.png'),(5111,4370,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:670;s:6:\"height\";i:942;s:4:\"file\";s:48:\"2021/04/Screen-Shot-2021-04-14-at-3.28.25-PM.png\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-14-at-3.28.25-PM-213x300.png\";s:5:\"width\";i:213;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-14-at-3.28.25-PM-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-14-at-3.28.25-PM-670x313.png\";s:5:\"width\";i:670;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-14-at-3.28.25-PM-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-14-at-3.28.25-PM-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-14-at-3.28.25-PM-600x844.png\";s:5:\"width\";i:600;s:6:\"height\";i:844;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-14-at-3.28.25-PM-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-14-at-3.28.25-PM-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-14-at-3.28.25-PM-600x844.png\";s:5:\"width\";i:600;s:6:\"height\";i:844;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-14-at-3.28.25-PM-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5112,4371,'_wp_attached_file','2021/04/127abec3ea6540c295af41d2eead0221.jpeg'),(5113,4371,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:320;s:4:\"file\";s:45:\"2021/04/127abec3ea6540c295af41d2eead0221.jpeg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"127abec3ea6540c295af41d2eead0221-281x300.jpeg\";s:5:\"width\";i:281;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"127abec3ea6540c295af41d2eead0221-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:45:\"127abec3ea6540c295af41d2eead0221-300x313.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:45:\"127abec3ea6540c295af41d2eead0221-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:45:\"127abec3ea6540c295af41d2eead0221-250x285.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:45:\"127abec3ea6540c295af41d2eead0221-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:45:\"127abec3ea6540c295af41d2eead0221-250x285.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(5114,4372,'_wp_attached_file','2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM.png'),(5115,4372,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1210;s:6:\"height\";i:1182;s:4:\"file\";s:48:\"2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM.png\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-14-at-3.32.35-PM-300x293.png\";s:5:\"width\";i:300;s:6:\"height\";i:293;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:50:\"Screen-Shot-2021-04-14-at-3.32.35-PM-1024x1000.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-14-at-3.32.35-PM-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-14-at-3.32.35-PM-768x750.png\";s:5:\"width\";i:768;s:6:\"height\";i:750;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-14-at-3.32.35-PM-900x313.png\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-14-at-3.32.35-PM-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-14-at-3.32.35-PM-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-14-at-3.32.35-PM-600x586.png\";s:5:\"width\";i:600;s:6:\"height\";i:586;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-14-at-3.32.35-PM-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-14-at-3.32.35-PM-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-14-at-3.32.35-PM-600x586.png\";s:5:\"width\";i:600;s:6:\"height\";i:586;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-14-at-3.32.35-PM-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5123,4374,'_wp_page_template','default'),(5124,4374,'_elementor_edit_mode','builder'),(5125,4374,'_elementor_template_type','wp-page'),(5126,4374,'_elementor_version','3.1.4'),(5127,4374,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Karaoke Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Karaoke is fun\\u00a0for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.\\u00a0Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/attractive-cheerful-women-singing-with-microphone-8GXPEDG-scaled.jpg\",\"id\":4109},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67e2ef8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFD500FC\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9c14fbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our 50+ Years of Dedication to our Clients!\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#00BCFF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_typography_font_weight\":\"400\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"a9c9135\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9d75c94\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"abbd6d4\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F00000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"90408e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"21051e5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"27bc7b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d1b9bc\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"6f96213\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2234f19\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.3319999999999936335370875895023345947265625},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_border_color\":\"#747474\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn About Our Pool League, and Get Signed Up Today!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(5146,4378,'_wp_page_template','default'),(5147,4378,'_elementor_edit_mode','builder'),(5129,4375,'_wp_page_template','default'),(5130,4375,'_elementor_edit_mode','builder'),(5131,4375,'_elementor_template_type','wp-page'),(5132,4375,'_elementor_version','3.1.4'),(5133,4375,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pinball Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Pinball is a type of arcade game in which a player uses paddles (called flippers) to manipulate one or more balls inside a pinball machine. A pinball machine is a glass-covered cabinet containing a play field populated with lights, targets, bumpers, ramps, and various other objects depending on its design. The primary objective of the game is to score as many points as possible by hitting targets and making various shots with the flippers, before all balls \\\"drain\\\" at an exit usually situated at the bottom of the play field.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Munsters-LE-Details-19.jpeg\",\"id\":4245},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67e2ef8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFD500FC\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9c14fbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our 50+ Years of Dedication to our Clients!\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#00BCFF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_typography_font_weight\":\"400\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"a9c9135\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9d75c94\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"abbd6d4\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F00000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"90408e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"21051e5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"27bc7b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d1b9bc\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"6f96213\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2234f19\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.3319999999999936335370875895023345947265625},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_border_color\":\"#747474\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn About Our Pool League, and Get Signed Up Today!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(5136,4376,'_wp_page_template','default'),(5137,4376,'_elementor_edit_mode','builder'),(5138,4376,'_elementor_template_type','wp-page'),(5139,4376,'_elementor_version','3.1.4'),(5140,4376,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pinball Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Pinball is a type of arcade game in which a player uses paddles (called flippers) to manipulate one or more balls inside a pinball machine. A pinball machine is a glass-covered cabinet containing a play field populated with lights, targets, bumpers, ramps, and various other objects depending on its design. The primary objective of the game is to score as many points as possible by hitting targets and making various shots with the flippers, before all balls \\\"drain\\\" at an exit usually situated at the bottom of the play field.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Munsters-LE-Details-19.jpeg\",\"id\":4245},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67e2ef8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFD500FC\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9c14fbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our 50+ Years of Dedication to our Clients!\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#00BCFF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_typography_font_weight\":\"400\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"a9c9135\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9d75c94\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"abbd6d4\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F00000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"90408e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"21051e5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"27bc7b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d1b9bc\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"6f96213\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2234f19\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.3319999999999936335370875895023345947265625},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_border_color\":\"#747474\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn About Our Pool League, and Get Signed Up Today!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(5141,4377,'_wp_page_template','default'),(5142,4377,'_elementor_edit_mode','builder'),(5143,4377,'_elementor_template_type','wp-page'),(5144,4377,'_elementor_version','3.1.4'),(5145,4377,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pinball Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Pinball is a type of arcade game in which a player uses paddles (called flippers) to manipulate one or more balls inside a pinball machine. A pinball machine is a glass-covered cabinet containing a play field populated with lights, targets, bumpers, ramps, and various other objects depending on its design. The primary objective of the game is to score as many points as possible by hitting targets and making various shots with the flippers, before all balls \\\"drain\\\" at an exit usually situated at the bottom of the play field.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Munsters-LE-Details-19.jpeg\",\"id\":4245},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6d067e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8ab96f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3adad69\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"id\":4108},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9440529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a04ff60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Shuffleboard\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d738b70\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67e2ef8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFD500FC\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9c14fbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our 50+ Years of Dedication to our Clients!\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#00BCFF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_typography_font_weight\":\"400\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"a9c9135\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9d75c94\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"abbd6d4\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F00000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"90408e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"21051e5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"27bc7b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d1b9bc\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"6f96213\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2234f19\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.3319999999999936335370875895023345947265625},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_border_color\":\"#747474\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn About Our Pool League, and Get Signed Up Today!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(5152,4379,'_wp_page_template','default'),(5153,4379,'_elementor_edit_mode','builder'),(5154,4379,'_elementor_template_type','wp-page'),(5155,4379,'_elementor_version','3.1.4'),(5156,4379,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pinball Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Pinball is a type of arcade game in which a player uses paddles (called flippers) to manipulate one or more balls inside a pinball machine. A pinball machine is a glass-covered cabinet containing a play field populated with lights, targets, bumpers, ramps, and various other objects depending on its design. The primary objective of the game is to score as many points as possible by hitting targets and making various shots with the flippers, before all balls \\\"drain\\\" at an exit usually situated at the bottom of the play field.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Munsters-LE-Details-19.jpeg\",\"id\":4245},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67e2ef8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFD500FC\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9c14fbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our 50+ Years of Dedication to our Clients!\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#00BCFF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_typography_font_weight\":\"400\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"a9c9135\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9d75c94\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"abbd6d4\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F00000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"90408e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"21051e5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"27bc7b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d1b9bc\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"6f96213\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2234f19\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.3319999999999936335370875895023345947265625},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_border_color\":\"#747474\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn About Our Pool League, and Get Signed Up Today!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(5157,4380,'_wp_page_template','default'),(5158,4380,'_elementor_edit_mode','builder'),(5159,4380,'_elementor_template_type','wp-page'),(5160,4380,'_elementor_version','3.1.4'),(5161,4380,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"System Amusement has solutions for every business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pinball Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Pinball is a type of arcade game in which a player uses paddles (called flippers) to manipulate one or more balls inside a pinball machine. A pinball machine is a glass-covered cabinet containing a play field populated with lights, targets, bumpers, ramps, and various other objects depending on its design. The primary objective of the game is to score as many points as possible by hitting targets and making various shots with the flippers, before all balls \\\"drain\\\" at an exit usually situated at the bottom of the play field.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Munsters-LE-Details-19.jpeg\",\"id\":4245},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67e2ef8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFD500FC\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9c14fbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our 50+ Years of Dedication to our Clients!\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#00BCFF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_typography_font_weight\":\"400\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"a9c9135\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9d75c94\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"abbd6d4\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F00000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"90408e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"21051e5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"27bc7b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d1b9bc\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"6f96213\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2234f19\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.3319999999999936335370875895023345947265625},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_border_color\":\"#747474\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn About Our Pool League, and Get Signed Up Today!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(5514,4426,'_wp_page_template','default'),(5515,4426,'_elementor_edit_mode','builder'),(5516,4426,'_elementor_template_type','wp-page'),(5517,4426,'_elementor_version','3.1.4'),(5518,4426,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"Entertainment Solutions for Every Business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"914214d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">System Amusement is your partner in providing top of the line entertainment and activities to your customers. We provide complete Keep-filled services and provide a Fully maintained solution for your business. Provide the very best entertainment and activities at a fraction of the cost!<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pinball Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Pinball is a type of arcade game in which a player uses paddles (called flippers) to manipulate one or more balls inside a pinball machine. A pinball machine is a glass-covered cabinet containing a play field populated with lights, targets, bumpers, ramps, and various other objects depending on its design. The primary objective of the game is to score as many points as possible by hitting targets and making various shots with the flippers, before all balls \\\"drain\\\" at an exit usually situated at the bottom of the play field.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Munsters-LE-Details-19.jpeg\",\"id\":4245},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67e2ef8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFD500FC\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9c14fbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our 50+ Years of Dedication to our Clients!\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#00BCFF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_typography_font_weight\":\"400\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"a9c9135\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9d75c94\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"abbd6d4\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F00000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"90408e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"21051e5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"27bc7b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d1b9bc\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"6f96213\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2234f19\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.3319999999999936335370875895023345947265625},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_border_color\":\"#747474\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn About Our Pool League, and Get Signed Up Today!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(5162,4381,'_wp_page_template','default'),(5163,4381,'_elementor_edit_mode','builder'),(5164,4381,'_elementor_template_type','wp-page'),(5165,4381,'_elementor_version','3.1.4'),(5166,4381,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"Entertainment Solutions for Every Business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"914214d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">System Amusement is your partner in providing top of the line entertainment and activities to your customers. We provide complete Keep-filled services and provide a Fully maintained solution for your business. Provide the very best entertainment and activities at a fraction of the cost!<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pinball Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Pinball is a type of arcade game in which a player uses paddles (called flippers) to manipulate one or more balls inside a pinball machine. A pinball machine is a glass-covered cabinet containing a play field populated with lights, targets, bumpers, ramps, and various other objects depending on its design. The primary objective of the game is to score as many points as possible by hitting targets and making various shots with the flippers, before all balls \\\"drain\\\" at an exit usually situated at the bottom of the play field.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Munsters-LE-Details-19.jpeg\",\"id\":4245},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67e2ef8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFD500FC\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9c14fbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our 50+ Years of Dedication to our Clients!\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#00BCFF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_typography_font_weight\":\"400\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"a9c9135\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9d75c94\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"abbd6d4\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F00000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"90408e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"21051e5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"27bc7b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d1b9bc\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"6f96213\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2234f19\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.3319999999999936335370875895023345947265625},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_border_color\":\"#747474\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn About Our Pool League, and Get Signed Up Today!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(5504,4424,'_wp_page_template','default'),(5505,4424,'_elementor_edit_mode','builder'),(5506,4424,'_elementor_template_type','wp-page'),(5507,4424,'_elementor_version','3.1.4'),(5508,4424,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"Entertainment Solutions for Every Business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"914214d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">System Amusement is your partner in providing top of the line entertainment and activities to your customers. We provide complete Keep-filled services and provide a Fully maintained solution for your business. Provide the very best entertainment and activities at a fraction of the cost!<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pinball Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Pinball is a type of arcade game in which a player uses paddles (called flippers) to manipulate one or more balls inside a pinball machine. A pinball machine is a glass-covered cabinet containing a play field populated with lights, targets, bumpers, ramps, and various other objects depending on its design. The primary objective of the game is to score as many points as possible by hitting targets and making various shots with the flippers, before all balls \\\"drain\\\" at an exit usually situated at the bottom of the play field.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Munsters-LE-Details-19.jpeg\",\"id\":4245},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67e2ef8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFD500FC\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9c14fbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our 50+ Years of Dedication to our Clients!\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#00BCFF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_typography_font_weight\":\"400\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"a9c9135\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9d75c94\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"abbd6d4\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F00000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"90408e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"21051e5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"27bc7b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d1b9bc\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"6f96213\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2234f19\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.3319999999999936335370875895023345947265625},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_border_color\":\"#747474\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn About Our Pool League, and Get Signed Up Today!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(5171,4343,'_wp_old_date','2021-03-27'),(5172,4344,'_wp_old_date','2021-03-27'),(5173,4345,'_wp_old_date','2021-03-27'),(5174,4361,'_wp_old_date','2021-03-27'),(5177,4350,'_wp_old_date','2021-03-27'),(5178,4349,'_wp_old_date','2021-03-27'),(5235,4391,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:9;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:11:{s:5:\"title\";i:1;s:10:\"text_align\";i:1;s:5:\"style\";i:1;s:11:\"title_color\";i:1;s:13:\"st_line_color\";i:1;s:18:\"title_space_bottom\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_line_height\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;}s:17:\"sub_title_section\";a:8:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:32:\"sub_title_typography_font_family\";i:1;s:30:\"sub_title_typography_font_size\";i:1;s:32:\"sub_title_typography_font_weight\";i:1;s:22:\"sub_title_space_bottom\";i:1;s:14:\"sub_title_line\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:7:\"_margin\";i:1;s:8:\"_z_index\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:8:\"_z_index\";i:1;s:14:\"_margin_mobile\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:21:\"background_background\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:7:\"padding\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:3:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:7:\"padding\";i:2;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}}}}'),(5241,4395,'_wp_page_template','default'),(5242,4395,'_elementor_edit_mode','builder'),(5243,4395,'_elementor_template_type','wp-page'),(5244,4395,'_elementor_version','3.1.4'),(5245,4395,'_elementor_data','[{\"id\":\"40fd8216\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"67\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2a114ffb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"e7c34af\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Offer Top Notch Pinball Machine Service and Repairs\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sub_title\":\"Is Your Pinball Machine Broken?\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"10df5e6a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>System Amusement is happy to offer pinball machine repair and service to customers located throughout Eastern Washington and Western Idaho. Contact our support team today to setup an appointment.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"431858c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"160cdc54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/pinball-at-home-.jpeg\",\"id\":4384},\"image_size\":\"full\",\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a85a00b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"45\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5846a252\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"78aad6aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact our support team today!\",\"desc\":\"Click to call\",\"btn_text\":\"509-326-1551\",\"btn_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"btn_link\":{\"url\":\"te:509-326-1551\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false}]'),(5246,4396,'_wp_page_template','default'),(5247,4396,'_elementor_edit_mode','builder'),(5248,4396,'_elementor_template_type','wp-page'),(5249,4396,'_elementor_version','3.1.4'),(5250,4396,'_elementor_data','[{\"id\":\"40fd8216\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"67\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2a114ffb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"e7c34af\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Offer Top Notch Pinball Machine Service and Repairs\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sub_title\":\"Is Your Pinball Machine Broken?\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"title_color\":\"#B80202\",\"title_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"10df5e6a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #000000;\\\">System Amusement is happy to offer pinball machine repair and service to customers located throughout Eastern Washington and Western Idaho. Contact our support team today to setup an appointment.<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"align\":\"left\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"431858c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"160cdc54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/pinball-at-home-.jpeg\",\"id\":4384},\"image_size\":\"full\",\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a85a00b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"45\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5846a252\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"78aad6aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact our support team today!\",\"desc\":\"Click to call\",\"btn_text\":\"509-326-1551\",\"btn_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"btn_link\":{\"url\":\"te:509-326-1551\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false}]'),(5258,4398,'_wp_page_template','default'),(5259,4398,'_elementor_edit_mode','builder'),(5260,4398,'_elementor_template_type','wp-page'),(5261,4398,'_elementor_version','3.1.4'),(5262,4398,'_elementor_data','[{\"id\":\"40fd8216\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"67\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2a114ffb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"e7c34af\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Offer Top Notch Pinball Machine Service and Repairs\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sub_title\":\"Is Your Pinball Machine Broken?\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"title_color\":\"#B80202\",\"title_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"10df5e6a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #000000;\\\">System Amusement is happy to offer pinball machine repair and service to customers located throughout Eastern Washington and Western Idaho. Contact our support team today to setup an appointment.<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"align\":\"left\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"431858c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"160cdc54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/pinball-at-home-.jpeg\",\"id\":4384},\"image_size\":\"full\",\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a85a00b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"45\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5846a252\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"78aad6aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact our support team today!\",\"desc\":\"Click to call\",\"btn_text\":\"509-326-1551\",\"btn_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"btn_link\":{\"url\":\"te:509-326-1551\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false}]'),(5224,4391,'_elementor_version','3.1.4'),(5225,4392,'_elementor_edit_mode','builder'),(5226,4392,'_elementor_template_type','section'),(5227,4392,'_elementor_version','3.1.4'),(5228,4391,'_wp_page_template','default'),(5229,4391,'_elementor_data','[{\"id\":\"582ff9a1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66af2175\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a0994b9\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"1878eb3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"65220c2b\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2f4d301d\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"22c4519d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71178747\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5230,4393,'_elementor_edit_mode','builder'),(5231,4393,'_elementor_template_type','section'),(5232,4393,'_elementor_version','3.1.4'),(5233,4393,'_wp_page_template','default'),(5234,4393,'_elementor_data','[{\"id\":\"582ff9a1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66af2175\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a0994b9\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"1878eb3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"65220c2b\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2f4d301d\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"22c4519d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71178747\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5222,4391,'_elementor_edit_mode','builder'),(5223,4391,'_elementor_template_type','section'),(5190,4384,'_wp_attached_file','2021/04/pinball-at-home-.jpeg'),(5191,4384,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:29:\"2021/04/pinball-at-home-.jpeg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"pinball-at-home--300x200.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"pinball-at-home--150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"pinball-at-home--768x512.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:29:\"pinball-at-home--900x313.jpeg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:29:\"pinball-at-home--600x450.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"pinball-at-home--300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:29:\"pinball-at-home--600x400.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"pinball-at-home--250x285.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:29:\"pinball-at-home--300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:29:\"pinball-at-home--600x400.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"pinball-at-home--250x285.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5197,4386,'_wp_page_template','default'),(5198,4386,'_elementor_edit_mode','builder'),(5199,4386,'_elementor_template_type','wp-page'),(5200,4386,'_elementor_version','2.8.5'),(5201,4386,'_elementor_data','[{\"id\":\"40fd8216\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"67\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2a114ffb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"e7c34af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consulting is a law firm specialising in corporate finance work\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sub_title\":\"About us\",\"sub_title_style\":\"style2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"10df5e6a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Advice on comprehensive legal solutions and legal planning on all aspects of business, including: issues under Company Law & Exchange Control Regulations.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6638bf3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"36029746\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"721a687f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work<br\\/> Development\",\"percentage_value\":80,\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_piecharts\"}],\"isInner\":true},{\"id\":\"2500a52d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"407fce4e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Plan<br\\/> Fulfilled\",\"percentage_value\":90,\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_piecharts\"}],\"isInner\":true},{\"id\":\"63dd35a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"50076466\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI\\/UX<br\\/> Desigining\",\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_piecharts\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"431858c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"160cdc54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h4-about1-1.png\",\"id\":3937},\"image_size\":\"full\",\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a85a00b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"45\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5846a252\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"78aad6aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more about us?\",\"desc\":\"Just download brochure...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"271a828\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"216aa41\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bd79acf\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"284946a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.082999999999998408384271897375583648681640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2e424e89\",\"elType\":\"widget\",\"settings\":{\"title\":\"We deals with many services to take extra care of your problem solutions.\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sub_title\":\"Services\",\"sub_title_style\":\"style2\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"ebf2f68\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.87700000000000244426701101474463939666748046875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1e183e09\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Business services is a general term that describes work that supports a business but does not produce a tangible commodity. Information technology is important.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"654682a1\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"title\":\"Tax Consultancy\",\"description\":\"This is one of many areas of\\nprofessional services where our firm is well ahead of the competition.\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/service\\/business-strategy\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"ad3ffd2\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-service-icon4.png\",\"id\":3364}},{\"ct_icon\":{\"value\":\"flaticon flaticon-stats\",\"library\":\"flaticon\"},\"title\":\"Audit & assurance\",\"description\":\"People are only as good as the tools they possess. So, to consistently deliver high-quality auditing services.\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/service\\/business-strategy\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-service-icon5.png\",\"id\":3365},\"_id\":\"549e205\"},{\"ct_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"title\":\"Value Added Tax\",\"description\":\"We are providing and dealing with all sorts of legal and professional services and matters to operate.\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/service\\/business-strategy\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-service-icon6.png\",\"id\":3366},\"_id\":\"c96dff0\"},{\"ct_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"title\":\"Accounting Services\",\"description\":\"Our professionals provide a range of accounting and assurance services of the highest standards.\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/service\\/business-strategy\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-service-icon7.png\",\"id\":3367},\"_id\":\"c5fa888\"},{\"ct_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"title\":\"Tax Outsourcing\",\"description\":\"Unlike our competitors we have in house qualified lawyers and accountants who can help you.\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/service\\/business-strategy\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-service-icon8.png\",\"id\":3368},\"_id\":\"70a20db\"},{\"ct_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"title\":\"Amazing Strategy\",\"description\":\"Operates an atmosphere that promote creative approach for clients needs.\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/service\\/business-strategy\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-service-icon9.png\",\"id\":3369},\"_id\":\"838b0fb\"}],\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4b3b2339\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\",\"id\":1536},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/bg-section-04.png\",\"id\":2125},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.88000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed81794\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.5},\"elements\":[{\"id\":\"27093372\",\"elType\":\"widget\",\"settings\":{\"title\":\"Don\\u2019t misread here we have random & interesting facts.\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"title_color\":\"#ffffff\",\"sub_title\":\"Funfact\",\"sub_title_color\":\"#FFFFFF\",\"sub_title_style\":\"style2\",\"sub_title_space_top\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"309772db\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Starfish can re-grow their arms. In fact, a single arm can regenerate a whole body. Google\'s founders were willing\\nto sell & consult.\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"52\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"030\",\"bottom\":\"0\",\"left\":\"52\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"60671754\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"_margin\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"52\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"52\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"3c14ed29\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.5,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"65\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"196cdac9\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"3374a3ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"3acc5d5a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":105,\"suffix\":\"+\",\"title\":\"Team members\",\"show_icon\":\"\",\"bg_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/gallery-01.jpg\",\"id\":1552},\"size\":\"size2\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"65\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"-10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"1f51f75f\",\"elType\":\"widget\",\"settings\":{\"ending_number\":8,\"suffix\":\"+\",\"title\":\"Winning Awards\",\"show_icon\":\"\",\"bg_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/gallery-06.jpg\",\"id\":1557},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"5489227e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"54cf5f11\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"suffix\":\"+\",\"title\":\"Client\\u2019s Feedback\",\"show_icon\":\"\",\"bg_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/gallery-02.jpg\",\"id\":1553},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"-25\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"32e87dd0\",\"elType\":\"widget\",\"settings\":{\"ending_number\":310,\"suffix\":\"+\",\"title\":\"Completed Works\",\"show_icon\":\"\",\"bg_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/gallery-03.jpg\",\"id\":1554},\"size\":\"size2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"41b62b34\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/bg-section-01.png\",\"id\":2056},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\"},\"elements\":[{\"id\":\"5a7cd766\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"353bac17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"35\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"30b6a483\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3e61afcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"It\\u2019s always a joy to hear that the work we do, has positively reviews.\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sub_title\":\"Testimonial\",\"sub_title_style\":\"style2\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"139f6854\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cdda213\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We have spent 9 years working for one of Australia\\u2019s most\\nrecognised and successful retailers so we have many good\\nreview of works.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"73f8dd0c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-04.jpg\",\"id\":400},\"title\":\"Maria Silverii\",\"position\":\"CEO of Blue Illusion\",\"description\":\"I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24\\/24.\",\"_id\":\"4bedbf5\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-05.jpg\",\"id\":401},\"title\":\"Phillip Macintyre\",\"position\":\"CEO of Blue Illusion\",\"description\":\"I love Consultio! It really looks more original than many others.Support deserves 7 stars but, unfortunately, you do not have that option. I really suggest you to work with them.\",\"_id\":\"1d1720d\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/team-01.jpg\",\"id\":1690},\"title\":\"Amy Harrison\",\"position\":\"Contiki Holidays\",\"description\":\"Great, versatile theme with lots of customisability. But - above all that the customer support is amazing, useful and quick! I must recommand\\nthem.\",\"_id\":\"b234799\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Maria Silverii\",\"position\":\"CEO of Blue Illusion\",\"description\":\"I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24\\/24.\",\"_id\":\"b2dfe23\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/home-author-01.jpg\",\"id\":2170},\"title\":\"Amy Harrison\",\"position\":\"Contiki Holidays\",\"description\":\"Great, versatile theme with lots of customisability. But - above all that the customer support is amazing, useful and quick! I must recommand\\nthem.\",\"_id\":\"1ed2282\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/home-author-02.jpg\",\"id\":2171},\"title\":\"Phillip Macintyre\",\"position\":\"CEO of Blue Illusion\",\"description\":\"I love Consultio! It really looks more original than many others.Support deserves 7 stars but, unfortunately, you do not have that option. I really suggest you to work with them.\",\"_id\":\"9ebe622\"}],\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"infinite\":\"true\",\"col_sm\":\"1\",\"col_md\":\"2\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d76413c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3f88cefe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"397ee275\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(5268,4400,'_wp_page_template','default'),(5269,4400,'_elementor_edit_mode','builder'),(5270,4400,'_elementor_template_type','wp-page'),(5271,4400,'_elementor_version','3.1.4'),(5272,4400,'_elementor_data','[{\"id\":\"40fd8216\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"67\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2a114ffb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"e7c34af\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Offer Top Notch Pinball Machine Service and Repairs\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sub_title\":\"Is Your Pinball Machine Broken?\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"title_color\":\"#B80202\",\"title_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"10df5e6a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #000000;\\\">System Amusement is happy to offer pinball machine repair and service to customers located throughout Eastern Washington and Western Idaho. Contact our support team today to setup an appointment.<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"align\":\"left\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"431858c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"160cdc54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/pinball-at-home-.jpeg\",\"id\":4384},\"image_size\":\"full\",\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3338ff2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a4c2619\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5032196\",\"elType\":\"widget\",\"settings\":{\"title\":\"Complete the form below or call us today\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"title_color\":\"#B80202\",\"title_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"8836543\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a85a00b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"45\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5846a252\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"78aad6aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact our support team today!\",\"desc\":\"Click to call\",\"btn_text\":\"509-326-1551\",\"btn_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"btn_link\":{\"url\":\"te:509-326-1551\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d1b6189\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFD500FC\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2730b166\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"20bc5b41\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our 50+ Years of Dedication to our Clients!\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#00BCFF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_typography_font_weight\":\"400\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"198a73de\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"45ba1b04\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"6f99887\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"78f3fc3d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F00000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"47347a61\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"35a74b01\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"736b33de\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"330779f7\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"686210d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"649219a7\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b94ff5e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741f5926\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"5cb42d8f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"448e6df3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2241398e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"251307ec\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3dba6281\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"49656ebf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5263,4399,'_wp_page_template','default'),(5264,4399,'_elementor_edit_mode','builder'),(5265,4399,'_elementor_template_type','wp-page'),(5266,4399,'_elementor_version','3.1.4'),(5267,4399,'_elementor_data','[{\"id\":\"40fd8216\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"67\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2a114ffb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"e7c34af\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Offer Top Notch Pinball Machine Service and Repairs\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sub_title\":\"Is Your Pinball Machine Broken?\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"title_color\":\"#B80202\",\"title_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"10df5e6a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #000000;\\\">System Amusement is happy to offer pinball machine repair and service to customers located throughout Eastern Washington and Western Idaho. Contact our support team today to setup an appointment.<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"align\":\"left\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"431858c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"160cdc54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/pinball-at-home-.jpeg\",\"id\":4384},\"image_size\":\"full\",\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a85a00b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"45\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5846a252\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"78aad6aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact our support team today!\",\"desc\":\"Click to call\",\"btn_text\":\"509-326-1551\",\"btn_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"btn_link\":{\"url\":\"te:509-326-1551\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false}]'),(5313,4402,'_wp_page_template','default'),(5314,4402,'_elementor_edit_mode','builder'),(5315,4402,'_elementor_template_type','wp-page'),(5316,4402,'_elementor_version','3.1.4'),(5317,4402,'_elementor_data','[{\"id\":\"40fd8216\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"67\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2a114ffb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"e7c34af\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Offer Top Notch Pinball Machine Service and Repairs\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sub_title\":\"Is Your Pinball Machine Broken?\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"title_color\":\"#B80202\",\"title_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"10df5e6a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #000000;\\\">System Amusement is happy to offer pinball machine repair and service to customers located throughout Eastern Washington and Western Idaho. Contact our support team today to setup an appointment.<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"align\":\"left\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"431858c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"160cdc54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/pinball-at-home-.jpeg\",\"id\":4384},\"image_size\":\"full\",\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3338ff2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a4c2619\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5032196\",\"elType\":\"widget\",\"settings\":{\"title\":\"Complete the form below or call us today\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"title_color\":\"#B80202\",\"title_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"8836543\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a85a00b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"45\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5846a252\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"78aad6aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact our support team today!\",\"desc\":\"Click to call\",\"btn_text\":\"509-326-1551\",\"btn_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"btn_link\":{\"url\":\"te:509-326-1551\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d1b6189\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFD500FC\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2730b166\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"20bc5b41\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our 50+ Years of Dedication to our Clients!\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#00BCFF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_typography_font_weight\":\"400\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"198a73de\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"45ba1b04\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"6f99887\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"78f3fc3d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F00000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"47347a61\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"35a74b01\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"736b33de\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"330779f7\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"686210d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"649219a7\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b94ff5e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741f5926\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"5cb42d8f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"448e6df3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2241398e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"251307ec\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3dba6281\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"49656ebf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5275,4401,'_wp_page_template','default'),(5276,4401,'_elementor_edit_mode','builder'),(5277,4401,'_elementor_template_type','wp-page'),(5278,4401,'_elementor_version','3.1.4'),(5279,4401,'_elementor_data','[{\"id\":\"40fd8216\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"67\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2a114ffb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"e7c34af\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Offer Top Notch Pinball Machine Service and Repairs\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sub_title\":\"Is Your Pinball Machine Broken?\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"title_color\":\"#B80202\",\"title_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"10df5e6a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #000000;\\\">System Amusement is happy to offer pinball machine repair and service to customers located throughout Eastern Washington and Western Idaho. Contact our support team today to setup an appointment.<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"align\":\"left\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"431858c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"160cdc54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/pinball-at-home-.jpeg\",\"id\":4384},\"image_size\":\"full\",\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3338ff2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a4c2619\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5032196\",\"elType\":\"widget\",\"settings\":{\"title\":\"Complete the form below or call us today\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"title_color\":\"#B80202\",\"title_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"8836543\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a85a00b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"45\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5846a252\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"78aad6aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact our support team today!\",\"desc\":\"Click to call\",\"btn_text\":\"509-326-1551\",\"btn_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"btn_link\":{\"url\":\"te:509-326-1551\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d1b6189\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFD500FC\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2730b166\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"20bc5b41\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our 50+ Years of Dedication to our Clients!\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#00BCFF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_typography_font_weight\":\"400\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"198a73de\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"45ba1b04\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"6f99887\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"78f3fc3d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F00000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"47347a61\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"35a74b01\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"736b33de\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"330779f7\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"686210d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"649219a7\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b94ff5e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741f5926\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"5cb42d8f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"448e6df3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2241398e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"251307ec\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3dba6281\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"49656ebf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5280,4401,'_elementor_controls_usage','a:9:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:9;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:15:{s:5:\"title\";i:4;s:27:\"title_typography_typography\";i:4;s:26:\"title_typography_font_size\";i:4;s:33:\"title_typography_font_size_tablet\";i:3;s:28:\"title_typography_line_height\";i:3;s:35:\"title_typography_line_height_tablet\";i:3;s:18:\"title_space_bottom\";i:4;s:33:\"title_typography_font_size_mobile\";i:2;s:35:\"title_typography_line_height_mobile\";i:2;s:10:\"ct_animate\";i:2;s:11:\"title_color\";i:4;s:28:\"title_typography_font_weight\";i:3;s:10:\"text_align\";i:2;s:5:\"style\";i:2;s:13:\"st_line_color\";i:1;}s:17:\"sub_title_section\";a:9:{s:9:\"sub_title\";i:3;s:26:\"sub_title_space_top_mobile\";i:2;s:15:\"sub_title_color\";i:2;s:31:\"sub_title_typography_typography\";i:2;s:32:\"sub_title_typography_font_family\";i:2;s:30:\"sub_title_typography_font_size\";i:2;s:32:\"sub_title_typography_font_weight\";i:2;s:22:\"sub_title_space_bottom\";i:2;s:14:\"sub_title_line\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:7:\"_margin\";i:1;s:8:\"_z_index\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:22:\"typography_line_height\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:12;s:19:\"_inline_size_tablet\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:21:\"background_background\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:7:\"padding\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:4;s:6:\"margin\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:3:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;s:18:\"background_color_b\";i:1;}s:26:\"section_background_overlay\";a:6:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:29:\"background_overlay_attachment\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}}}s:6:\"ct_cta\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:5:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;s:8:\"btn_link\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;s:19:\"text_color_gradient\";i:1;s:26:\"link_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:8:\"_padding\";i:1;s:7:\"_margin\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:4:{s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:1:{s:12:\"number_color\";i:4;}s:13:\"section_title\";a:1:{s:11:\"title_color\";i:4;}s:12:\"section_icon\";a:1:{s:10:\"icon_color\";i:4;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:4;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:4;s:17:\"_background_color\";i:4;}s:15:\"_section_border\";a:4:{s:14:\"_border_border\";i:4;s:13:\"_border_width\";i:4;s:13:\"_border_color\";i:4;s:14:\"_border_radius\";i:4;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:8:\"_z_index\";i:1;s:14:\"_margin_mobile\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}}'),(5282,3491,'_edit_last','1'),(5283,3491,'p_h_style1','themeoption'),(5287,3491,'p_page_title_color',''),(5288,3491,'ptitle_overlay','themeoption'),(5289,3491,'ptitle_breadcrumb_page','themeoption'),(5290,3491,'ptitle_breadcrumb_color',''),(5291,3491,'p_bg_content','a:6:{s:17:\"background-repeat\";s:0:\"\";s:15:\"background-size\";s:0:\"\";s:21:\"background-attachment\";s:0:\"\";s:19:\"background-position\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(5293,3491,'eg_sources_youtube',''),(5294,3491,'eg_sources_vimeo',''),(5295,3491,'eg_sources_wistia',''),(5296,3491,'eg_sources_image',''),(5297,3491,'eg_sources_iframe',''),(5298,3491,'eg_sources_soundcloud',''),(5299,3491,'eg_vimeo_ratio','1'),(5300,3491,'eg_youtube_ratio','1'),(5301,3491,'eg_wistia_ratio','1'),(5302,3491,'eg_html5_ratio','1'),(5303,3491,'eg_soundcloud_ratio','1'),(5304,3491,'eg_sources_revslider',''),(5305,3491,'eg_sources_essgrid',''),(5306,3491,'eg_featured_grid',''),(5307,3491,'eg_settings_custom_meta_skin',''),(5308,3491,'eg_settings_custom_meta_element',''),(5309,3491,'eg_settings_custom_meta_setting',''),(5310,3491,'eg_settings_custom_meta_style',''),(5311,3491,'eg_custom_meta_216','true'),(5312,3491,'eg_votes_count','0'),(5319,4403,'_wp_page_template','default'),(5320,4403,'_elementor_edit_mode','builder'),(5321,4403,'_elementor_template_type','wp-page'),(5322,4403,'_elementor_version','3.1.4'),(5323,4403,'_elementor_data','[{\"id\":\"40fd8216\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"67\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2a114ffb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"e7c34af\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Offer Top Notch Pinball Machine Service and Repairs\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sub_title\":\"Is Your Pinball Machine Broken?\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"title_color\":\"#B80202\",\"title_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"10df5e6a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #000000;\\\">System Amusement is happy to offer pinball machine repair and service to customers located throughout Eastern Washington and Western Idaho. Contact our support team today to setup an appointment.<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"align\":\"left\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"431858c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"160cdc54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/pinball-at-home-.jpeg\",\"id\":4384},\"image_size\":\"full\",\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3338ff2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a4c2619\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5032196\",\"elType\":\"widget\",\"settings\":{\"title\":\"Complete the form below or call us today\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"title_color\":\"#B80202\",\"title_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"8836543\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a85a00b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"45\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5846a252\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"78aad6aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact our support team today!\",\"desc\":\"Click to call\",\"btn_text\":\"509-326-1551\",\"btn_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"btn_link\":{\"url\":\"te:509-326-1551\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d1b6189\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFD500FC\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2730b166\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"20bc5b41\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our 50+ Years of Dedication to our Clients!\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#00BCFF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_typography_font_weight\":\"400\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"198a73de\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"45ba1b04\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"6f99887\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"78f3fc3d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F00000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"47347a61\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"35a74b01\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"736b33de\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"330779f7\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"686210d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"649219a7\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b94ff5e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741f5926\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"5cb42d8f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"448e6df3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2241398e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"251307ec\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3dba6281\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"49656ebf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5325,4404,'_wp_page_template','default'),(5326,4404,'_elementor_edit_mode','builder'),(5327,4404,'_elementor_template_type','wp-page'),(5328,4404,'_elementor_version','3.1.4'),(5329,4404,'_elementor_data','[{\"id\":\"40fd8216\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"67\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2a114ffb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"e7c34af\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Offer Top Notch Pinball Machine Service and Repairs\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sub_title\":\"Is Your Pinball Machine Broken?\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"title_color\":\"#B80202\",\"title_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"10df5e6a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #000000;\\\">System Amusement is happy to offer pinball machine repair and service to customers located throughout Eastern Washington and Western Idaho. Contact our support team today to setup an appointment.<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"align\":\"left\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"431858c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"160cdc54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/pinball-at-home-.jpeg\",\"id\":4384},\"image_size\":\"full\",\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"34e552a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d1b9bb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9888c47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Complete The Form Below or Call or Email us Today\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"title_color\":\"#B80202\",\"title_typography_font_weight\":\"700\",\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3338ff2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a4c2619\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67b4776\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/211037967555058\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"8836543\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ccb197\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Munsters-LE-Details-19.jpeg\",\"id\":4245}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a85a00b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"45\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5846a252\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"78aad6aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact our support team today!\",\"desc\":\"Click to call\",\"btn_text\":\"509-326-1551\",\"btn_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"btn_link\":{\"url\":\"te:509-326-1551\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d1b6189\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFD500FC\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2730b166\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"20bc5b41\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our 50+ Years of Dedication to our Clients!\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#00BCFF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_typography_font_weight\":\"400\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"198a73de\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"45ba1b04\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"6f99887\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"78f3fc3d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F00000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"47347a61\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"35a74b01\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"736b33de\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"330779f7\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"686210d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"649219a7\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b94ff5e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741f5926\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"5cb42d8f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"448e6df3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2241398e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"251307ec\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3dba6281\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"49656ebf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5333,4405,'_wp_page_template','default'),(5334,4405,'_elementor_edit_mode','builder'),(5335,4405,'_elementor_template_type','wp-page'),(5336,4405,'_elementor_version','3.1.4'),(5337,4405,'_elementor_data','[{\"id\":\"40fd8216\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"67\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2a114ffb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"e7c34af\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Offer Top Notch Pinball Machine Service and Repairs\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sub_title\":\"Is Your Pinball Machine Broken?\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"title_color\":\"#B80202\",\"title_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"10df5e6a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #000000;\\\">System Amusement is happy to offer pinball machine repair and service to customers located throughout Eastern Washington and Western Idaho. Contact our support team today to setup an appointment.<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"align\":\"left\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"431858c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"160cdc54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/pinball-at-home-.jpeg\",\"id\":4384},\"image_size\":\"full\",\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"34e552a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d1b9bb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9888c47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Complete The Form Below or Call or Email us Today\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"title_color\":\"#B80202\",\"title_typography_font_weight\":\"700\",\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3338ff2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a4c2619\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67b4776\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/211037967555058\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"8836543\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ccb197\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Munsters-LE-Details-19.jpeg\",\"id\":4245}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a85a00b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"45\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5846a252\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"78aad6aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact our support team today!\",\"desc\":\"Click to call\",\"btn_text\":\"509-326-1551\",\"btn_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"btn_link\":{\"url\":\"te:509-326-1551\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d1b6189\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFD500FC\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2730b166\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"20bc5b41\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our 50+ Years of Dedication to our Clients!\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#00BCFF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_typography_font_weight\":\"400\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"198a73de\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"45ba1b04\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"6f99887\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"78f3fc3d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F00000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"47347a61\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"35a74b01\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"736b33de\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"330779f7\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"686210d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"649219a7\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b94ff5e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741f5926\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"5cb42d8f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"448e6df3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2241398e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"251307ec\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3dba6281\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"49656ebf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5351,3491,'_elementor_controls_usage','a:10:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:9;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:15:{s:5:\"title\";i:4;s:27:\"title_typography_typography\";i:4;s:26:\"title_typography_font_size\";i:4;s:33:\"title_typography_font_size_tablet\";i:3;s:28:\"title_typography_line_height\";i:3;s:35:\"title_typography_line_height_tablet\";i:3;s:18:\"title_space_bottom\";i:4;s:33:\"title_typography_font_size_mobile\";i:2;s:35:\"title_typography_line_height_mobile\";i:2;s:10:\"ct_animate\";i:2;s:11:\"title_color\";i:4;s:28:\"title_typography_font_weight\";i:3;s:10:\"text_align\";i:3;s:5:\"style\";i:2;s:13:\"st_line_color\";i:1;}s:17:\"sub_title_section\";a:9:{s:9:\"sub_title\";i:3;s:26:\"sub_title_space_top_mobile\";i:2;s:15:\"sub_title_color\";i:2;s:31:\"sub_title_typography_typography\";i:2;s:32:\"sub_title_typography_font_family\";i:2;s:30:\"sub_title_typography_font_size\";i:2;s:32:\"sub_title_typography_font_weight\";i:2;s:22:\"sub_title_space_bottom\";i:2;s:14:\"sub_title_line\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:7:\"_margin\";i:1;s:8:\"_z_index\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:22:\"typography_line_height\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:13;s:19:\"_inline_size_tablet\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:21:\"background_background\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:7:\"padding\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:3;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:4;s:6:\"margin\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:18:\"background_color_b\";i:1;}s:26:\"section_background_overlay\";a:6:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:29:\"background_overlay_attachment\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}}}s:4:\"html\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:4:\"html\";i:1;}}}}s:6:\"ct_cta\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:5:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;s:8:\"btn_link\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;s:19:\"text_color_gradient\";i:1;s:26:\"link_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:8:\"_padding\";i:1;s:7:\"_margin\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:4:{s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:1:{s:12:\"number_color\";i:4;}s:13:\"section_title\";a:1:{s:11:\"title_color\";i:4;}s:12:\"section_icon\";a:1:{s:10:\"icon_color\";i:4;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:4;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:4;s:17:\"_background_color\";i:4;}s:15:\"_section_border\";a:4:{s:14:\"_border_border\";i:4;s:13:\"_border_width\";i:4;s:13:\"_border_color\";i:4;s:14:\"_border_radius\";i:4;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:8:\"_z_index\";i:1;s:14:\"_margin_mobile\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}}'),(5339,4406,'_wp_page_template','default'),(5340,4406,'_elementor_edit_mode','builder'),(5341,4406,'_elementor_template_type','wp-page'),(5342,4406,'_elementor_version','3.1.4'),(5343,4406,'_elementor_data','[{\"id\":\"40fd8216\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"67\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2a114ffb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"e7c34af\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Offer Top Notch Pinball Machine Service and Repairs\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sub_title\":\"Is Your Pinball Machine Broken?\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"title_color\":\"#B80202\",\"title_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"10df5e6a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #000000;\\\">System Amusement is happy to offer pinball machine repair and service to customers located throughout Eastern Washington and Western Idaho. Contact our support team today to setup an appointment.<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"align\":\"left\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"431858c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"160cdc54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/pinball-at-home-.jpeg\",\"id\":4384},\"image_size\":\"full\",\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"34e552a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d1b9bb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9888c47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Complete The Form Below or Call or Email us Today\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"title_color\":\"#B80202\",\"title_typography_font_weight\":\"700\",\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3338ff2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a4c2619\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67b4776\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/211037967555058\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"8836543\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ccb197\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Munsters-LE-Details-19.jpeg\",\"id\":4245}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a85a00b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"45\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5846a252\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"78aad6aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact our support team today!\",\"desc\":\"Click to call\",\"btn_text\":\"509-326-1551\",\"btn_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"btn_link\":{\"url\":\"te:509-326-1551\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d1b6189\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFD500FC\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2730b166\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"20bc5b41\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our 50+ Years of Dedication to our Clients!\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#00BCFF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_typography_font_weight\":\"400\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"198a73de\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"45ba1b04\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"6f99887\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"78f3fc3d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F00000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"47347a61\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"35a74b01\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"736b33de\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"330779f7\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"686210d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"649219a7\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b94ff5e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741f5926\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"5cb42d8f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"448e6df3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2241398e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"251307ec\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3dba6281\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"49656ebf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5345,4407,'_wp_page_template','default'),(5346,4407,'_elementor_edit_mode','builder'),(5347,4407,'_elementor_template_type','wp-page'),(5348,4407,'_elementor_version','3.1.4'),(5349,4407,'_elementor_data','[{\"id\":\"40fd8216\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"67\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2a114ffb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"e7c34af\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Offer Top Notch Pinball Machine Service and Repairs\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sub_title\":\"Is Your Pinball Machine Broken?\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"title_color\":\"#B80202\",\"title_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"10df5e6a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #000000;\\\">System Amusement is happy to offer pinball machine repair and service to customers located throughout Eastern Washington and Western Idaho. Contact our support team today to setup an appointment.<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"align\":\"left\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"431858c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"160cdc54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/pinball-at-home-.jpeg\",\"id\":4384},\"image_size\":\"full\",\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"34e552a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#DEDEDE\"},\"elements\":[{\"id\":\"d1b9bb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9888c47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Complete The Form Below or Call or Email us Today\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"title_color\":\"#B80202\",\"title_typography_font_weight\":\"700\",\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0d58969\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a43d733\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67b4776\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/211037967555058\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true},{\"id\":\"c216f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ccb197\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Munsters-LE-Details-19.jpeg\",\"id\":4245}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a85a00b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"45\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5846a252\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"78aad6aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact our support team today!\",\"desc\":\"Click to call\",\"btn_text\":\"509-326-1551\",\"btn_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"btn_link\":{\"url\":\"te:509-326-1551\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d1b6189\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFD500FC\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2730b166\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"20bc5b41\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our 50+ Years of Dedication to our Clients!\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#00BCFF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_typography_font_weight\":\"400\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"198a73de\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"45ba1b04\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"6f99887\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"78f3fc3d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F00000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"47347a61\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"35a74b01\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"736b33de\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"330779f7\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"686210d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"649219a7\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b94ff5e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741f5926\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"5cb42d8f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"448e6df3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2241398e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"251307ec\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3dba6281\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"49656ebf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5353,4408,'_wp_page_template','default'),(5354,4408,'_elementor_edit_mode','builder'),(5355,4408,'_elementor_template_type','wp-page'),(5356,4408,'_elementor_version','3.1.4'),(5357,4408,'_elementor_data','[{\"id\":\"40fd8216\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"67\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2a114ffb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"e7c34af\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Offer Top Notch Pinball Machine Service and Repairs\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sub_title\":\"Is Your Pinball Machine Broken?\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"title_color\":\"#B80202\",\"title_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"10df5e6a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #000000;\\\">System Amusement is happy to offer pinball machine repair and service to customers located throughout Eastern Washington and Western Idaho. Contact our support team today to setup an appointment.<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"align\":\"left\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"431858c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"160cdc54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/pinball-at-home-.jpeg\",\"id\":4384},\"image_size\":\"full\",\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"34e552a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#DEDEDE\"},\"elements\":[{\"id\":\"d1b9bb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9888c47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Complete The Form Below or Call or Email us Today\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"title_color\":\"#B80202\",\"title_typography_font_weight\":\"700\",\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0d58969\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a43d733\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67b4776\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/211037967555058\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true},{\"id\":\"c216f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ccb197\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Munsters-LE-Details-19.jpeg\",\"id\":4245}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a85a00b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"45\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5846a252\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"78aad6aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact our support team today!\",\"desc\":\"Click to call\",\"btn_text\":\"509-326-1551\",\"btn_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"btn_link\":{\"url\":\"te:509-326-1551\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d1b6189\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFD500FC\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2730b166\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"20bc5b41\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our 50+ Years of Dedication to our Clients!\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#00BCFF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_typography_font_weight\":\"400\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"198a73de\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"45ba1b04\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"6f99887\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"78f3fc3d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F00000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"47347a61\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"35a74b01\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"736b33de\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"330779f7\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"686210d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"649219a7\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b94ff5e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741f5926\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"5cb42d8f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"448e6df3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2241398e\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"251307ec\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3dba6281\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"49656ebf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5358,4408,'_elementor_controls_usage','a:10:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:9;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:15:{s:5:\"title\";i:4;s:27:\"title_typography_typography\";i:4;s:26:\"title_typography_font_size\";i:4;s:33:\"title_typography_font_size_tablet\";i:3;s:28:\"title_typography_line_height\";i:3;s:35:\"title_typography_line_height_tablet\";i:3;s:18:\"title_space_bottom\";i:4;s:33:\"title_typography_font_size_mobile\";i:2;s:35:\"title_typography_line_height_mobile\";i:2;s:10:\"ct_animate\";i:2;s:11:\"title_color\";i:4;s:28:\"title_typography_font_weight\";i:3;s:10:\"text_align\";i:3;s:5:\"style\";i:2;s:13:\"st_line_color\";i:1;}s:17:\"sub_title_section\";a:9:{s:9:\"sub_title\";i:3;s:26:\"sub_title_space_top_mobile\";i:2;s:15:\"sub_title_color\";i:2;s:31:\"sub_title_typography_typography\";i:2;s:32:\"sub_title_typography_font_family\";i:2;s:30:\"sub_title_typography_font_size\";i:2;s:32:\"sub_title_typography_font_weight\";i:2;s:22:\"sub_title_space_bottom\";i:2;s:14:\"sub_title_line\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:7:\"_margin\";i:1;s:8:\"_z_index\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:22:\"typography_line_height\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:13;s:19:\"_inline_size_tablet\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:21:\"background_background\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:7:\"padding\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:3;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:4;s:6:\"margin\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:18:\"background_color_b\";i:1;}s:26:\"section_background_overlay\";a:6:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:29:\"background_overlay_attachment\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}}}s:4:\"html\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:4:\"html\";i:1;}}}}s:6:\"ct_cta\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:5:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;s:8:\"btn_link\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;s:19:\"text_color_gradient\";i:1;s:26:\"link_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:8:\"_padding\";i:1;s:7:\"_margin\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:4:{s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:1:{s:12:\"number_color\";i:4;}s:13:\"section_title\";a:1:{s:11:\"title_color\";i:4;}s:12:\"section_icon\";a:1:{s:10:\"icon_color\";i:4;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:4;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:4;s:17:\"_background_color\";i:4;}s:15:\"_section_border\";a:4:{s:14:\"_border_border\";i:4;s:13:\"_border_width\";i:4;s:13:\"_border_color\";i:4;s:14:\"_border_radius\";i:4;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:8:\"_z_index\";i:1;s:14:\"_margin_mobile\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}}'),(5496,24,'_elementor_controls_usage','a:8:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:11:{s:5:\"title\";i:2;s:5:\"style\";i:2;s:18:\"title_space_bottom\";i:2;s:27:\"title_typography_typography\";i:2;s:33:\"title_typography_font_size_tablet\";i:1;s:28:\"title_typography_line_height\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;s:10:\"text_align\";i:2;s:26:\"title_typography_font_size\";i:2;s:11:\"title_color\";i:1;s:28:\"title_typography_font_weight\";i:1;}s:17:\"sub_title_section\";a:8:{s:22:\"sub_title_space_bottom\";i:2;s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:32:\"sub_title_typography_font_family\";i:1;s:30:\"sub_title_typography_font_size\";i:1;s:32:\"sub_title_typography_font_weight\";i:1;s:14:\"sub_title_line\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:4:\"html\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:4:\"html\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:7;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:3;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:1;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}s:26:\"section_background_overlay\";a:6:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:29:\"background_overlay_attachment\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;s:19:\"text_color_gradient\";i:1;s:26:\"link_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:8:\"_padding\";i:1;s:7:\"_margin\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:4:{s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:1:{s:12:\"number_color\";i:4;}s:13:\"section_title\";a:1:{s:11:\"title_color\";i:4;}s:12:\"section_icon\";a:1:{s:10:\"icon_color\";i:4;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:4;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:4;s:17:\"_background_color\";i:4;}s:15:\"_section_border\";a:4:{s:14:\"_border_border\";i:4;s:13:\"_border_width\";i:4;s:13:\"_border_color\";i:4;s:14:\"_border_radius\";i:4;}}}}}'),(5360,4409,'_menu_item_type','custom'),(5361,4409,'_menu_item_menu_item_parent','0'),(5362,4409,'_menu_item_object_id','4409'),(5363,4409,'_menu_item_object','custom'),(5364,4409,'_menu_item_target',''),(5365,4409,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(5366,4409,'_menu_item_xfn',''),(5367,4409,'_menu_item_url','https://sa7717.dev34.info/pinball-repairs-and-service/'),(5371,4409,'_menu_item_ct_megaprofile','0'),(5369,4343,'_wp_old_date','2021-04-14'),(5370,4344,'_wp_old_date','2021-04-14'),(5372,4409,'_menu_item_ct_icon',''),(5373,4409,'_menu_item_ct_onepage','no-one-page'),(5374,4409,'_menu_item_ct_onepage_offset',''),(5375,4345,'_wp_old_date','2021-04-14'),(5376,4361,'_wp_old_date','2021-04-14'),(5379,4350,'_wp_old_date','2021-04-14'),(5380,4349,'_wp_old_date','2021-04-14'),(5382,24,'_edit_lock','1618523919:1'),(5383,4410,'_wp_page_template','default'),(5384,4410,'_elementor_edit_mode','builder'),(5385,4410,'_elementor_template_type','wp-page'),(5386,4410,'_elementor_version','2.7.5'),(5387,4410,'_elementor_data','[{\"id\":\"99fbaeb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"27\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e818542\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.667000000000001591615728102624416351318359375,\"margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"c8a2f48\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Head office address:\",\"description_text\":\"3556 Hartford Way Vlg, Mount\\nPleasant, SC, 29466, Australia.\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":false},{\"id\":\"d5f3e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":29.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"9e16110\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Call for help:\",\"description_text\":\"(734) 697-2907<br\\/>\\n(843) 971-1906\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":false},{\"id\":\"729a4d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"485cc85\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"title_text\":\"Mail for information:\",\"description_text\":\"noreply@envato.com<br\\/>\\nnoreply@consultio.com\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d8bdc5a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"57\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"13f51f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"12c802c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/contact-about1.png\",\"id\":1568},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4c2fc51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"96\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d6bfcba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make a free consultation with our expert team to solve your prolems.\",\"style\":\"st-line-top1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0f30a93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For any inquiries relating to my  Retail and Leadership Programs*\",\"text_color\":\"#37404c\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f409baa\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"91\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d33da39\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f37ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f688838\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"a08c2d1\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(5388,4410,'_elementor_controls_usage','a:8:{s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:5;s:19:\"_inline_size_tablet\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:3;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:7:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:18:\"title_space_bottom\";i:1;s:27:\"title_typography_typography\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:28:\"title_typography_line_height\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:7:\"ctf7_id\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(5390,24,'_edit_last','1'),(5391,24,'p_h_style1','themeoption'),(5392,24,'p_logo_dark','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(5393,24,'p_logo_light','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(5394,24,'p_logo_mobile','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(5395,24,'page_h_phone',''),(5396,24,'page_h_time',''),(5397,24,'h_custom_menu',''),(5398,24,'h_custom_menu_left',''),(5399,24,'h_custom_menu_right',''),(5400,24,'p_page_title_color',''),(5401,24,'ptitle_overlay','themeoption'),(5402,24,'ptitle_breadcrumb_page','themeoption'),(5403,24,'ptitle_breadcrumb_color',''),(5404,24,'p_bg_content','a:6:{s:17:\"background-repeat\";s:0:\"\";s:15:\"background-size\";s:0:\"\";s:21:\"background-attachment\";s:0:\"\";s:19:\"background-position\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(5405,24,'loading_page','themeoption'),(5406,24,'loading_type','style1'),(5407,24,'page_back_totop','themeoption'),(5409,24,'eg_sources_youtube',''),(5410,24,'eg_sources_vimeo',''),(5411,24,'eg_sources_wistia',''),(5412,24,'eg_sources_image',''),(5413,24,'eg_sources_iframe',''),(5414,24,'eg_sources_soundcloud',''),(5415,24,'eg_vimeo_ratio','1'),(5416,24,'eg_youtube_ratio','1'),(5417,24,'eg_wistia_ratio','1'),(5418,24,'eg_html5_ratio','1'),(5419,24,'eg_soundcloud_ratio','1'),(5420,24,'eg_sources_revslider',''),(5421,24,'eg_sources_essgrid',''),(5422,24,'eg_featured_grid',''),(5423,24,'eg_settings_custom_meta_skin',''),(5424,24,'eg_settings_custom_meta_element',''),(5425,24,'eg_settings_custom_meta_setting',''),(5426,24,'eg_settings_custom_meta_style',''),(5427,24,'eg_custom_meta_216','true'),(5428,24,'eg_votes_count','0'),(5476,3491,'_elementor_css','a:6:{s:4:\"time\";i:1619640211;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:1;s:8:\"material\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(5435,4412,'_wp_page_template','default'),(5436,4412,'_elementor_edit_mode','builder'),(5437,4412,'_elementor_template_type','wp-page'),(5438,4412,'_elementor_version','2.7.5'),(5439,4412,'_elementor_data','[{\"id\":\"99fbaeb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"27\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e818542\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.667000000000001591615728102624416351318359375,\"margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"c8a2f48\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Head office address:\",\"description_text\":\"3556 Hartford Way Vlg, Mount\\nPleasant, SC, 29466, Australia.\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":false},{\"id\":\"d5f3e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":29.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"9e16110\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Call for help:\",\"description_text\":\"(734) 697-2907<br\\/>\\n(843) 971-1906\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":false},{\"id\":\"729a4d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"485cc85\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"title_text\":\"Mail for information:\",\"description_text\":\"noreply@envato.com<br\\/>\\nnoreply@consultio.com\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d8bdc5a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"57\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"13f51f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"12c802c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/contact-about1.png\",\"id\":1568},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4c2fc51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"96\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d6bfcba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make a free consultation with our expert team to solve your prolems.\",\"style\":\"st-line-top1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0f30a93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For any inquiries relating to my  Retail and Leadership Programs*\",\"text_color\":\"#37404c\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f409baa\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"91\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d33da39\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f37ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f688838\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"a08c2d1\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(5475,3201,'_elementor_css','a:6:{s:4:\"time\";i:1619640201;s:5:\"fonts\";a:2:{i:0;s:6:\"Roboto\";i:1;s:7:\"Poppins\";}s:5:\"icons\";a:3:{i:0;s:8:\"flaticon\";i:1;s:8:\"fa-solid\";i:3;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(5454,4415,'_wp_page_template','default'),(5455,4415,'_elementor_edit_mode','builder'),(5456,4415,'_elementor_template_type','wp-page'),(5457,4415,'_elementor_version','3.1.4'),(5458,4415,'_elementor_data','[{\"id\":\"99fbaeb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"27\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e818542\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.667000000000001591615728102624416351318359375,\"margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"c8a2f48\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"title_text\":\"Hours:\",\"description_text\":\"Mon - Sat: 8 am - 5 pm, <br>Sunday: CLOSED\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":false},{\"id\":\"d5f3e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":29.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"9e16110\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Phone:\",\"description_text\":\"509-326-1551 \",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":false},{\"id\":\"729a4d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"485cc85\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"title_text\":\"Email:\",\"description_text\":\"systemamusement@comcast.net\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d8bdc5a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"57\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4c2fc51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d6bfcba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact System Amusement Today\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"de8193b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/211037967555058\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"13f51f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"12c802c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5464,4417,'_wp_page_template','default'),(5465,4417,'_elementor_edit_mode','builder'),(5466,4417,'_elementor_template_type','wp-page'),(5467,4417,'_elementor_version','3.1.4'),(5468,4417,'_elementor_data','[{\"id\":\"d8bdc5a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4c2fc51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d6bfcba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact System Amusement Today\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"de8193b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/211037967555058\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"13f51f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9e16110\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Phone:\",\"description_text\":\"509-326-1551 \",\"list\":[],\"_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"485cc85\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"title_text\":\"Email:\",\"description_text\":\"systemamusement@comcast.net\",\"list\":[],\"_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"c8a2f48\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"title_text\":\"Hours:\",\"description_text\":\"Mon - Sat: 8 am - 5 pm, <br>Sunday: CLOSED\",\"list\":[],\"_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"12c802c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1c288d36\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFD500FC\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5baf77\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1133c0cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our 50+ Years of Dedication to our Clients!\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#00BCFF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_typography_font_weight\":\"400\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4c17575\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"240d045d\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"14bf715f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"682bb3dc\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F00000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"68788f1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"41c4abc8\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"581ad8e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3886a227\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"6541e512\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"457d6b60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5459,4416,'_wp_page_template','default'),(5460,4416,'_elementor_edit_mode','builder'),(5461,4416,'_elementor_template_type','wp-page'),(5462,4416,'_elementor_version','3.1.4'),(5463,4416,'_elementor_data','[{\"id\":\"99fbaeb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"27\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e818542\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.667000000000001591615728102624416351318359375,\"margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"c8a2f48\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"title_text\":\"Hours:\",\"description_text\":\"Mon - Sat: 8 am - 5 pm, <br>Sunday: CLOSED\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":false},{\"id\":\"d5f3e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":29.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"9e16110\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Phone:\",\"description_text\":\"509-326-1551 \",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":false},{\"id\":\"729a4d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"485cc85\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"title_text\":\"Email:\",\"description_text\":\"systemamusement@comcast.net\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d8bdc5a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"57\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4c2fc51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d6bfcba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact System Amusement Today\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"de8193b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/211037967555058\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"13f51f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"12c802c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5478,4420,'_wp_page_template','default'),(5479,4420,'_elementor_edit_mode','builder'),(5480,4420,'_elementor_template_type','wp-page'),(5481,4420,'_elementor_version','3.1.4'),(5482,4420,'_elementor_data','[{\"id\":\"d8bdc5a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4c2fc51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d6bfcba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact System Amusement Today\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"de8193b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/211037967555058\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"13f51f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9e16110\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Phone:\",\"description_text\":\"509-326-1551 \",\"list\":[],\"_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"485cc85\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"title_text\":\"Email:\",\"description_text\":\"systemamusement@comcast.net\",\"list\":[],\"_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"c8a2f48\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"title_text\":\"Hours:\",\"description_text\":\"Mon - Sat: 8 am - 5 pm, <br>Sunday: CLOSED\",\"list\":[],\"_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"12c802c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1c288d36\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFD500FC\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5baf77\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1133c0cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our 50+ Years of Dedication to our Clients!\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#00BCFF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_typography_font_weight\":\"400\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4c17575\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"240d045d\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"14bf715f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"682bb3dc\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F00000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"68788f1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"41c4abc8\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"581ad8e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3886a227\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"6541e512\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"457d6b60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5473,4100,'_elementor_css','a:6:{s:4:\"time\";i:1619640200;s:5:\"fonts\";a:2:{i:0;s:6:\"Roboto\";i:1;s:11:\"Roboto Slab\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(5471,4419,'_wp_attached_file','woocommerce-placeholder.png'),(5472,4419,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:4:\"file\";s:27:\"woocommerce-placeholder.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"woocommerce-placeholder-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-900x313.png\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5489,4421,'_elementor_css','a:6:{s:4:\"time\";i:1619640227;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:3;s:8:\"material\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(5490,4422,'_wp_page_template','default'),(5491,4422,'_elementor_edit_mode','builder'),(5492,4422,'_elementor_template_type','wp-page'),(5493,4422,'_elementor_version','3.1.4'),(5494,4422,'_elementor_data','[{\"id\":\"d8bdc5a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4c2fc51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d6bfcba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact System Amusement Today\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"de8193b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/211037967555058\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"13f51f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9e16110\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Phone:\",\"description_text\":\"509-326-1551 \",\"list\":[],\"_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"485cc85\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"title_text\":\"Email:\",\"description_text\":\"systemamusement@comcast.net\",\"list\":[],\"_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"c8a2f48\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"title_text\":\"Hours:\",\"description_text\":\"Mon - Sat: 8 am - 5 pm, <br>Sunday: CLOSED\",\"list\":[],\"_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"12c802c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1c288d36\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFD500FC\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5baf77\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1133c0cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our 50+ Years of Dedication to our Clients!\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#00BCFF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_typography_font_weight\":\"400\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4c17575\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"240d045d\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"14bf715f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"682bb3dc\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F00000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"68788f1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"41c4abc8\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"581ad8e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3886a227\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"6541e512\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"457d6b60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5495,4422,'_elementor_css','a:6:{s:4:\"time\";i:1619640227;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:3;s:8:\"material\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(5519,3193,'_elementor_controls_usage','a:12:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:27;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:27;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:7;s:7:\"padding\";i:6;s:13:\"margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:21:\"background_background\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:15;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:15:\"stretch_section\";i:10;s:6:\"layout\";i:1;s:3:\"gap\";i:4;s:8:\"overflow\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:8:{s:21:\"background_background\";i:10;s:16:\"background_color\";i:9;s:18:\"background_color_b\";i:5;s:25:\"background_gradient_angle\";i:3;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:21:\"background_color_stop\";i:2;}s:26:\"section_background_overlay\";a:6:{s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:3;s:29:\"background_overlay_attachment\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:3;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:8;s:6:\"margin\";i:3;s:7:\"z_index\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:12:{s:5:\"title\";i:10;s:10:\"text_align\";i:10;s:5:\"style\";i:10;s:11:\"title_color\";i:9;s:18:\"title_space_bottom\";i:6;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:28:\"title_typography_font_weight\";i:1;s:13:\"st_line_color\";i:1;s:28:\"title_typography_line_height\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;}s:17:\"sub_title_section\";a:8:{s:9:\"sub_title\";i:7;s:15:\"sub_title_color\";i:10;s:31:\"sub_title_typography_typography\";i:10;s:32:\"sub_title_typography_font_family\";i:10;s:30:\"sub_title_typography_font_size\";i:10;s:32:\"sub_title_typography_font_weight\";i:10;s:22:\"sub_title_space_bottom\";i:10;s:14:\"sub_title_line\";i:10;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:6;s:7:\"_margin\";i:1;s:8:\"_z_index\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:3:{s:4:\"text\";i:3;s:5:\"align\";i:3;s:4:\"size\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:17:\"button_text_color\";i:3;s:16:\"background_color\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:9:\"shortcode\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:17:\"section_shortcode\";a:1:{s:9:\"shortcode\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:4;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:4;s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_line_height\";i:4;s:19:\"text_color_gradient\";i:1;s:26:\"link_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:8:\"_padding\";i:4;s:7:\"_margin\";i:4;s:15:\"_padding_tablet\";i:4;s:15:\"_padding_mobile\";i:4;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:6;s:5:\"align\";i:3;s:10:\"image_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:4;s:8:\"_padding\";i:4;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:4:{s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:1:{s:12:\"number_color\";i:4;}s:13:\"section_title\";a:1:{s:11:\"title_color\";i:4;}s:12:\"section_icon\";a:1:{s:10:\"icon_color\";i:4;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:4;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:4;s:17:\"_background_color\";i:4;}s:15:\"_section_border\";a:4:{s:14:\"_border_border\";i:4;s:13:\"_border_width\";i:4;s:13:\"_border_color\";i:4;s:14:\"_border_radius\";i:4;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:8:\"_z_index\";i:1;s:14:\"_margin_mobile\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:5:\"video\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_video\";a:1:{s:11:\"youtube_url\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"_section_border\";a:3:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;}}}}}'),(5520,3193,'_elementor_css','a:6:{s:4:\"time\";i:1619640667;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:1;s:8:\"material\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(5521,24,'_elementor_css','a:6:{s:4:\"time\";i:1619640789;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:3;s:8:\"material\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(5523,3808,'_elementor_css','a:6:{s:4:\"time\";i:1619643004;s:5:\"fonts\";a:1:{i:0;s:7:\"Poppins\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"fa-solid\";i:3;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(5524,3495,'_elementor_css','a:6:{s:4:\"time\";i:1619643018;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(5526,20,'_elementor_css','a:6:{s:4:\"time\";i:1619643021;s:5:\"fonts\";a:1:{i:0;s:7:\"Poppins\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:2;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(5509,4425,'_wp_page_template','default'),(5510,4425,'_elementor_edit_mode','builder'),(5511,4425,'_elementor_template_type','wp-page'),(5512,4425,'_elementor_version','3.1.4'),(5513,4425,'_elementor_data','[{\"id\":\"e33f8ea\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"5961bb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7f038f7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Tax Consulting\",\"shortcode\":\"[rev_slider alias=\\\"tax-consulting\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4398a41\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#D70000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":150,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"065c481\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"2d8b796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us today for a free consultation!\",\"sub_title\":\"Ready to discuss taking your business to the next level?\",\"sub_title_color\":\"#FF0000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4025260\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36c4933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us Today\",\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFDC00\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40dabca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fcfe06c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9ff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"Entertainment Solutions for Every Business!\",\"sub_title\":\"Our Equipment Lineup\",\"sub_title_color\":\"#0B8FF9\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"914214d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">System Amusement is your partner in providing top of the line entertainment and activities to your customers. We provide complete Keep-filled services and provide a Fully maintained solution for your business. Provide the very best entertainment and activities at a fraction of the cost!<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78dc76e\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"54f77fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9161cb7\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home grid 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5a376c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f447b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ebcf4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pinball Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"bcf9914\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Pinball is a type of arcade game in which a player uses paddles (called flippers) to manipulate one or more balls inside a pinball machine. A pinball machine is a glass-covered cabinet containing a play field populated with lights, targets, bumpers, ramps, and various other objects depending on its design. The primary objective of the game is to score as many points as possible by hitting targets and making various shots with the flippers, before all balls \\\"drain\\\" at an exit usually situated at the bottom of the play field.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"21b4cce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d722d80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Munsters-LE-Details-19.jpeg\",\"id\":4245},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e63510e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"c4c06a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a77955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-scaled.jpg\",\"id\":4110},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8525dd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d931cfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pool\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b7cb03f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn\'t heard \\\"Lets meet of with friends and play pool\\\". Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b8111a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"e9bd95a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fa6d362\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dart Boards\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c62d582\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46672f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"dc4aff4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/business-target-background-marketing-and-advertisi-BPQH5CA-scaled.jpg\",\"id\":4138},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335d99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"925df51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b28b049\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/friends-playing-toy-grabbing-game-P5BQUY9-scaled.jpg\",\"id\":4107},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76f8d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ebd36b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Claw Machines\",\"sub_title_color\":\"#4B58FF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8a3b2f5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67e2ef8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFD500FC\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9c14fbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"811dedd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our 50+ Years of Dedication to our Clients!\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#00BCFF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_typography_font_weight\":\"400\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"190c41c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"a9c9135\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9d75c94\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"abbd6d4\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F00000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"90408e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"21051e5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"27bc7b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9d1b9bc\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"6f96213\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2234f19\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"072a5ae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a508ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"d3efc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"84bd5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c435473\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2b82ed3\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8784b47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e2c8a55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d676494\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#29C8F2\"},\"elements\":[{\"id\":\"a0d8446\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0fb6fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Touch Tunes Audio and TV\",\"sub_title\":\"Featured Equipment\",\"sub_title_color\":\"#E10000\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d1fb9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Contact us today to get your location setup with Touch Tunes!<\\/p>\",\"text_color\":\"#FF0000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a0d4f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffce00;\\\"><a style=\\\"color: #ffce00;\\\" href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/span><\\/strong><\\/p>\",\"text_color\":\"#FFCE00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11dd61f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8f963cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"96bb661\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.3319999999999936335370875895023345947265625},\"elements\":[{\"id\":\"594a5fe\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/taZaMKbW5VQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"_border_color\":\"#747474\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"f3eeeed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f520673\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":230,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"00b745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"8d02a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make New Friends, Sharpen Your Skills, and Play For Prizes!\",\"sub_title\":\"Take your game to the next level and join our Dart League!\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9c1fa0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"733517f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d465969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/dart-throwing-1-.jpeg\",\"id\":4142}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b696af4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"22\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_stop\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_color_b\":\"#EF0000\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"bottom center\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25208ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.02799999999999869260136620141565799713134765625,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f39378\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Billiards-Triangle-hd-wallpapers.jpeg\",\"id\":4255}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e3bda61\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":50.304000000000002046363078989088535308837890625},\"elements\":[{\"id\":\"1985889\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn About Our Pool League, and Get Signed Up Today!\",\"sub_title\":\"Do you play pool?\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-bottom1\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f39c12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover More\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFCE00\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(5532,4427,'_elementor_css','a:6:{s:4:\"time\";i:1619643021;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(5533,4428,'_wp_page_template','default'),(5534,4428,'_elementor_edit_mode','builder'),(5535,4428,'_elementor_template_type','wp-page'),(5536,4428,'_elementor_version','2.7.5'),(5537,4428,'_elementor_data','[{\"id\":\"bf4d915\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5282614\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"9d091b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re a global stakeholder relations and partnership building consultancy.\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b326e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71555f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"176c3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Collaborate Consulting exists to find the place where to being seemingly disparate interests meet. From that point of the connection, we create platforms.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4b32f49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We bring more than 24 years\\u2019 senior experience forging of\\ncollaborations across government.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11f730c\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"list\":[{\"title\":\"\",\"content\":\"Praesent feugiat sem mattis.\",\"_id\":\"5468f9e\"},{\"title\":\"\",\"content\":\"A wonderful serenity.\",\"_id\":\"e337312\"},{\"title\":\"\",\"content\":\"Premium services for you.\",\"_id\":\"a1fd6d3\"},{\"title\":\"\",\"content\":\"Set a link back to photo.\",\"_id\":\"7341c94\"}]},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"596ae67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"about-call\\\">Call to ask <a href=\\\"#\\\">any question<\\/a>  <span>540-325-1523<\\/span><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dffa2c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/about-gap.png\",\"id\":1896},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"41e6e03\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/signature.png\",\"id\":1892},\"title\":\"Natalia Duke\",\"sub_title\":\"(Chairman and founder)\"},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"07e4861\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1548748\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/about1.png\",\"id\":1877},\"image_size\":\"full\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-17\",\"bottom\":\"0\",\"left\":\"-22\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"45\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more about us?\",\"desc\":\"Just download brochure...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"ct_cta\"},{\"id\":\"b7c7989\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"58\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0f1e849\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4cae67e\",\"elType\":\"widget\",\"settings\":{\"title\":\"We position our clients at the forefront of their field by advanced services.\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0399c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"83f630e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We bring more than 20 years\\u2019 senior experience forging\\ncollaborations across government, private sector and\\ninternational forums.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"584b9d6\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"layout\":\"2\",\"source\":[\"law|service-category\"],\"limit\":4,\"col_md\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\",\"id\":1536},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(2,2,2,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.9369999999999976125764078460633754730224609375},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consultio is a professional consulting company\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.0630000000000023874235921539366245269775390625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku ssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"861b1e7\",\"elType\":\"widget\",\"settings\":{\"history\":[{\"title\":\"12th Jan, 2018\",\"content\":\"Establishment of Constrio\",\"_id\":\"d10d5c8\"},{\"title\":\"2nd Feb, 2018\",\"content\":\"Exhibition Planning & Exhibition Management\",\"_id\":\"94b661a\"},{\"title\":\"8th Jul, 2018\",\"content\":\"Registered as a construction company\",\"_id\":\"56108b1\"},{\"title\":\"21st Jul, 2018\",\"content\":\"Growth internationallyfirst half of the 2018s\",\"_id\":\"c00ee7f\"},{\"title\":\"18th Aug, 2018\",\"content\":\"Construction bought the Greek company Delta\",\"_id\":\"49c19e4\"},{\"title\":\"19th Aug, 2018\",\"content\":\"The purpose of the business plan\",\"_id\":\"60f348b\"},{\"title\":\"27th Sep, 2018\",\"content\":\"For lean business plans, operational plans, and strategic plans\",\"_id\":\"4c4e8fe\"},{\"title\":\"2nd Jan, 2019\",\"content\":\"Focus business history on what matters to planning\",\"_id\":\"094e427\"},{\"title\":\"8th Jul, 2019\",\"content\":\"Award winner\",\"_id\":\"cad9be1\"},{\"title\":\"22nd Sep, 2019\",\"content\":\"History to Unite and Inspire People\",\"_id\":\"8219566\"}],\"start_text\":\"Start\",\"end_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/theme-15.jpg\",\"id\":1860},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_history\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d781fc\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#e4eaee\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"957d09c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e4ee5a1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5805aec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.167000000000001591615728102624416351318359375},\"elements\":[{\"id\":\"876857f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have many reviews from our satisfied clients.\",\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"a69669a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.832999999999998408384271897375583648681640625},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f11685b\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-07.jpg\",\"id\":1656},\"title\":\"Kathleen Smith\",\"position\":\"Senior Director\",\"description\":\"We also bring a strong interest in coaching and capability building, with an emphasis on emotional.\",\"_id\":\"7f74b0d\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-08.jpg\",\"id\":1657},\"title\":\"Van Hunter\",\"position\":\"Senior Director\",\"description\":\"I love that moment when we find the connections between organisations and envisage the initiative or platform.\",\"_id\":\"d86d736\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-09.jpg\",\"id\":1658},\"title\":\"Macquarie Telecom\",\"position\":\"Leadership Group\",\"description\":\"He was great in planting the seed and allowing the group to transition into a collaborative discussion pertaining.\",\"_id\":\"1c9b8b4\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Fred L Smith \",\"position\":\"Senior Director\",\"description\":\"We also bring a strong interest in coaching and capability building, with an emphasis on emotional.\",\"_id\":\"d9784b9\"}],\"slides_to_show\":\"3\",\"arrows\":\"true\",\"infinite\":\"true\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"col_md\":\"2\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"720bd044\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1f6a8df8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"49fda913\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(5538,4428,'_elementor_css','a:6:{s:4:\"time\";i:1619643021;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(5544,4429,'_elementor_css','a:6:{s:4:\"time\";i:1619643021;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(5546,4430,'_wp_page_template','default'),(5547,4430,'_elementor_edit_mode','builder'),(5548,4430,'_elementor_template_type','wp-page'),(5549,4430,'_elementor_version','3.2.2'),(5550,4430,'_elementor_data','[{\"id\":\"6a533d2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1229601\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d091b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Available Machines For Sale\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-bottom1\",\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"176c3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>If you are interested in any of the below machines, please contact the System Amusement team to inquire. We look forward to speaking with you soon!<\\/p><h5><strong>Call today at: <\\/strong><a href=\\\"tel:509-993-4655\\\"><strong>509-993-4655<\\/strong><\\/a><\\/h5>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a46b963\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"cdc72ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"66ee137\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Munsters Pinball Machine\",\"description_text\":\"Like new condition, with several new parts.\\n\",\"image_size\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"title_color\":\"#D20000\",\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"0455c5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ee1cf24\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Munsters Pinball Machine\",\"description_text\":\"Like new condition, with several new parts.\\n\",\"image_size\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"title_color\":\"#D20000\",\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35d76f2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"fcd8f82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1728f7a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Munsters Pinball Machine\",\"description_text\":\"Like new condition, with several new parts.\\n\",\"image_size\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"title_color\":\"#D20000\",\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"b72d60e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"bb7f7d9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Munsters Pinball Machine\",\"description_text\":\"Like new condition, with several new parts.\\n\",\"image_size\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"title_color\":\"#D20000\",\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bf4d915\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5282614\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"6b326e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71555f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4b32f49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We bring more than 24 years\\u2019 senior experience forging of\\ncollaborations across government.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11f730c\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"list\":[{\"title\":\"\",\"content\":\"Praesent feugiat sem mattis.\",\"_id\":\"5468f9e\"},{\"title\":\"\",\"content\":\"A wonderful serenity.\",\"_id\":\"e337312\"},{\"title\":\"\",\"content\":\"Premium services for you.\",\"_id\":\"a1fd6d3\"},{\"title\":\"\",\"content\":\"Set a link back to photo.\",\"_id\":\"7341c94\"}]},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"596ae67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"about-call\\\">Call to ask <a href=\\\"#\\\">any question<\\/a>  <span>540-325-1523<\\/span><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dffa2c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/about-gap.png\",\"id\":1896},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"41e6e03\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/signature.png\",\"id\":1892},\"title\":\"Natalia Duke\",\"sub_title\":\"(Chairman and founder)\"},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"07e4861\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"45\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more about us?\",\"desc\":\"Just download brochure...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false}]'),(5551,4431,'_wp_page_template','default'),(5552,4431,'_elementor_edit_mode','builder'),(5553,4431,'_elementor_template_type','wp-page'),(5554,4431,'_elementor_version','3.2.2'),(5555,4431,'_elementor_data','[{\"id\":\"6a533d2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1229601\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d091b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Available Machines For Sale\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-bottom1\",\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"176c3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>If you are interested in any of the below machines, please contact the System Amusement team to inquire. We look forward to speaking with you soon!<\\/p><h5><strong>Call today at: <\\/strong><a href=\\\"tel:509-993-4655\\\"><strong>509-993-4655<\\/strong><\\/a><\\/h5>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a46b963\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"cdc72ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"66ee137\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Munsters Pinball Machine\",\"description_text\":\"Like new condition, with several new parts.\\n\",\"image_size\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"title_color\":\"#D20000\",\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"0455c5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ee1cf24\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Munsters Pinball Machine\",\"description_text\":\"Like new condition, with several new parts.\\n\",\"image_size\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"title_color\":\"#D20000\",\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35d76f2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"fcd8f82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1728f7a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Munsters Pinball Machine\",\"description_text\":\"Like new condition, with several new parts.\\n\",\"image_size\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"title_color\":\"#D20000\",\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"b72d60e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"bb7f7d9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Munsters Pinball Machine\",\"description_text\":\"Like new condition, with several new parts.\\n\",\"image_size\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"title_color\":\"#D20000\",\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bf4d915\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5282614\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"6b326e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71555f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4b32f49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We bring more than 24 years\\u2019 senior experience forging of\\ncollaborations across government.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11f730c\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"list\":[{\"title\":\"\",\"content\":\"Praesent feugiat sem mattis.\",\"_id\":\"5468f9e\"},{\"title\":\"\",\"content\":\"A wonderful serenity.\",\"_id\":\"e337312\"},{\"title\":\"\",\"content\":\"Premium services for you.\",\"_id\":\"a1fd6d3\"},{\"title\":\"\",\"content\":\"Set a link back to photo.\",\"_id\":\"7341c94\"}]},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"596ae67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"about-call\\\">Call to ask <a href=\\\"#\\\">any question<\\/a>  <span>540-325-1523<\\/span><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dffa2c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/about-gap.png\",\"id\":1896},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"41e6e03\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/signature.png\",\"id\":1892},\"title\":\"Natalia Duke\",\"sub_title\":\"(Chairman and founder)\"},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"07e4861\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"45\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more about us?\",\"desc\":\"Just download brochure...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false}]'),(5556,4432,'_wp_page_template','default'),(5557,4432,'_elementor_edit_mode','builder'),(5558,4432,'_elementor_template_type','wp-page'),(5559,4432,'_elementor_version','3.2.2'),(5560,4432,'_elementor_data','[{\"id\":\"6a533d2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1229601\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d091b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Available Machines For Sale\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-bottom1\",\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"176c3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>If you are interested in any of the below machines, please contact the System Amusement team to inquire. We look forward to speaking with you soon!<\\/p><h5><strong>Call today at: <\\/strong><a href=\\\"tel:509-993-4655\\\"><strong>509-993-4655<\\/strong><\\/a><\\/h5>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a46b963\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"cdc72ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"66ee137\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Munsters Pinball Machine\",\"description_text\":\"Like new condition, with several new parts.\\n\",\"image_size\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"title_color\":\"#D20000\",\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"0455c5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ee1cf24\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Munsters Pinball Machine\",\"description_text\":\"Like new condition, with several new parts.\\n\",\"image_size\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"title_color\":\"#D20000\",\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35d76f2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"fcd8f82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1728f7a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Munsters Pinball Machine\",\"description_text\":\"Like new condition, with several new parts.\\n\",\"image_size\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"title_color\":\"#D20000\",\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"b72d60e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"bb7f7d9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Munsters Pinball Machine\",\"description_text\":\"Like new condition, with several new parts.\\n\",\"image_size\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"title_color\":\"#D20000\",\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bf4d915\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5282614\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"6b326e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71555f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4b32f49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We bring more than 24 years\\u2019 senior experience forging of\\ncollaborations across government.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11f730c\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"list\":[{\"title\":\"\",\"content\":\"Praesent feugiat sem mattis.\",\"_id\":\"5468f9e\"},{\"title\":\"\",\"content\":\"A wonderful serenity.\",\"_id\":\"e337312\"},{\"title\":\"\",\"content\":\"Premium services for you.\",\"_id\":\"a1fd6d3\"},{\"title\":\"\",\"content\":\"Set a link back to photo.\",\"_id\":\"7341c94\"}]},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"596ae67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"about-call\\\">Call to ask <a href=\\\"#\\\">any question<\\/a>  <span>540-325-1523<\\/span><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dffa2c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/about-gap.png\",\"id\":1896},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"41e6e03\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/signature.png\",\"id\":1892},\"title\":\"Natalia Duke\",\"sub_title\":\"(Chairman and founder)\"},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"07e4861\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"45\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more about us?\",\"desc\":\"Just download brochure...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false}]'),(5562,4433,'_wp_page_template','default'),(5563,4433,'_elementor_edit_mode','builder'),(5564,4433,'_elementor_template_type','wp-page'),(5565,4433,'_elementor_version','3.2.2'),(5566,4433,'_elementor_data','[{\"id\":\"6a533d2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1229601\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d091b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Available Machines For Sale\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-bottom1\",\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"176c3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>If you are interested in any of the below machines, please contact the System Amusement team to inquire. We look forward to speaking with you soon!<\\/p><h5><strong>Call today at: <\\/strong><a href=\\\"tel:509-993-4655\\\"><strong>509-993-4655<\\/strong><\\/a><\\/h5>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a46b963\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"cdc72ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"66ee137\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Munsters Pinball Machine\",\"description_text\":\"Like new condition, with several new parts.\\n\",\"image_size\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"title_color\":\"#D20000\",\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"0455c5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ee1cf24\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Munsters Pinball Machine\",\"description_text\":\"Like new condition, with several new parts.\\n\",\"image_size\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"title_color\":\"#D20000\",\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35d76f2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"fcd8f82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1728f7a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Munsters Pinball Machine\",\"description_text\":\"Like new condition, with several new parts.\\n\",\"image_size\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"title_color\":\"#D20000\",\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"b72d60e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"bb7f7d9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Munsters Pinball Machine\",\"description_text\":\"Like new condition, with several new parts.\\n\",\"image_size\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"title_color\":\"#D20000\",\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bf4d915\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5282614\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"6b326e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71555f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4b32f49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We bring more than 24 years\\u2019 senior experience forging of\\ncollaborations across government.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11f730c\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"list\":[{\"title\":\"\",\"content\":\"Praesent feugiat sem mattis.\",\"_id\":\"5468f9e\"},{\"title\":\"\",\"content\":\"A wonderful serenity.\",\"_id\":\"e337312\"},{\"title\":\"\",\"content\":\"Premium services for you.\",\"_id\":\"a1fd6d3\"},{\"title\":\"\",\"content\":\"Set a link back to photo.\",\"_id\":\"7341c94\"}]},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"596ae67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"about-call\\\">Call to ask <a href=\\\"#\\\">any question<\\/a>  <span>540-325-1523<\\/span><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dffa2c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/about-gap.png\",\"id\":1896},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"41e6e03\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/signature.png\",\"id\":1892},\"title\":\"Natalia Duke\",\"sub_title\":\"(Chairman and founder)\"},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"07e4861\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"45\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more about us?\",\"desc\":\"Just download brochure...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false}]'),(5567,4434,'_wp_page_template','default'),(5568,4434,'_elementor_edit_mode','builder'),(5569,4434,'_elementor_template_type','wp-page'),(5570,4434,'_elementor_version','3.2.2'),(5571,4434,'_elementor_data','[{\"id\":\"6a533d2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1229601\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d091b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Available Machines For Sale\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-bottom1\",\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"176c3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>If you are interested in any of the below machines, please contact the System Amusement team to inquire. We look forward to speaking with you soon!<\\/p><h5><strong>Call today at: <\\/strong><a href=\\\"tel:509-993-4655\\\"><strong>509-993-4655<\\/strong><\\/a><\\/h5>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a46b963\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"cdc72ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"66ee137\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Munsters Pinball Machine\",\"description_text\":\"Like new condition, with several new parts.\\n\",\"image_size\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"title_color\":\"#D20000\",\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"0455c5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ee1cf24\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Munsters Pinball Machine\",\"description_text\":\"Like new condition, with several new parts.\\n\",\"image_size\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"title_color\":\"#D20000\",\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35d76f2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"fcd8f82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1728f7a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Munsters Pinball Machine\",\"description_text\":\"Like new condition, with several new parts.\\n\",\"image_size\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"title_color\":\"#D20000\",\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"b72d60e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"bb7f7d9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Munsters Pinball Machine\",\"description_text\":\"Like new condition, with several new parts.\\n\",\"image_size\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"title_color\":\"#D20000\",\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bf4d915\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5282614\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"6b326e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71555f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4b32f49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We bring more than 24 years\\u2019 senior experience forging of\\ncollaborations across government.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11f730c\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"list\":[{\"title\":\"\",\"content\":\"Praesent feugiat sem mattis.\",\"_id\":\"5468f9e\"},{\"title\":\"\",\"content\":\"A wonderful serenity.\",\"_id\":\"e337312\"},{\"title\":\"\",\"content\":\"Premium services for you.\",\"_id\":\"a1fd6d3\"},{\"title\":\"\",\"content\":\"Set a link back to photo.\",\"_id\":\"7341c94\"}]},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"596ae67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"about-call\\\">Call to ask <a href=\\\"#\\\">any question<\\/a>  <span>540-325-1523<\\/span><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dffa2c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/about-gap.png\",\"id\":1896},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"41e6e03\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/signature.png\",\"id\":1892},\"title\":\"Natalia Duke\",\"sub_title\":\"(Chairman and founder)\"},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"07e4861\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"45\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more about us?\",\"desc\":\"Just download brochure...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false}]'),(5588,4438,'_wp_page_template','default'),(5572,4435,'_wp_page_template','default'),(5573,4435,'_elementor_edit_mode','builder'),(5574,4435,'_elementor_template_type','wp-page'),(5575,4435,'_elementor_version','3.2.2'),(5576,4435,'_elementor_data','[{\"id\":\"6a533d2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1229601\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d091b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Available Machines For Sale\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-bottom1\",\"text_align\":\"center\",\"title_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"176c3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>If you are interested in any of the below machines, please contact the System Amusement team to inquire. We look forward to speaking with you soon!<\\/p><h5><strong>Call today at: <\\/strong><a href=\\\"tel:509-993-4655\\\"><strong>509-993-4655<\\/strong><\\/a><\\/h5>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a46b963\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"cdc72ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"66ee137\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Munsters Pinball Machine\",\"description_text\":\"Like new condition, with several new parts.\\n\",\"image_size\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"title_color\":\"#D20000\",\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"0455c5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ee1cf24\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Munsters Pinball Machine\",\"description_text\":\"Like new condition, with several new parts.\\n\",\"image_size\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"title_color\":\"#D20000\",\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35d76f2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"fcd8f82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1728f7a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Munsters Pinball Machine\",\"description_text\":\"Like new condition, with several new parts.\\n\",\"image_size\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"title_color\":\"#D20000\",\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"b72d60e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"bb7f7d9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Munsters Pinball Machine\",\"description_text\":\"Like new condition, with several new parts.\\n\",\"image_size\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"title_color\":\"#D20000\",\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bf4d915\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5282614\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"6b326e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71555f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4b32f49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We bring more than 24 years\\u2019 senior experience forging of\\ncollaborations across government.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11f730c\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"list\":[{\"title\":\"\",\"content\":\"Praesent feugiat sem mattis.\",\"_id\":\"5468f9e\"},{\"title\":\"\",\"content\":\"A wonderful serenity.\",\"_id\":\"e337312\"},{\"title\":\"\",\"content\":\"Premium services for you.\",\"_id\":\"a1fd6d3\"},{\"title\":\"\",\"content\":\"Set a link back to photo.\",\"_id\":\"7341c94\"}]},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"596ae67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"about-call\\\">Call to ask <a href=\\\"#\\\">any question<\\/a>  <span>540-325-1523<\\/span><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dffa2c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/about-gap.png\",\"id\":1896},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"41e6e03\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/signature.png\",\"id\":1892},\"title\":\"Natalia Duke\",\"sub_title\":\"(Chairman and founder)\"},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"07e4861\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"45\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more about us?\",\"desc\":\"Just download brochure...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false}]'),(5578,4436,'_wp_page_template','default'),(5579,4436,'_elementor_edit_mode','builder'),(5580,4436,'_elementor_template_type','wp-page'),(5581,4436,'_elementor_version','3.2.2'),(5582,4436,'_elementor_data','[{\"id\":\"6a533d2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1229601\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d091b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Available Machines For Sale\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-bottom1\",\"text_align\":\"center\",\"title_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"176c3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>If you are interested in any of the below machines, please contact the System Amusement team to inquire. We look forward to speaking with you soon!<\\/p><h5><strong>Call today at: <\\/strong><a href=\\\"tel:509-993-4655\\\"><strong>509-993-4655<\\/strong><\\/a><\\/h5>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a46b963\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"cdc72ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"66ee137\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Munsters Pinball Machine\",\"description_text\":\"Like new condition, with several new parts.\\n\",\"image_size\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"title_color\":\"#D20000\",\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"0455c5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ee1cf24\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Munsters Pinball Machine\",\"description_text\":\"Like new condition, with several new parts.\\n\",\"image_size\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"title_color\":\"#D20000\",\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35d76f2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"fcd8f82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1728f7a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Munsters Pinball Machine\",\"description_text\":\"Like new condition, with several new parts.\\n\",\"image_size\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"title_color\":\"#D20000\",\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"b72d60e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"bb7f7d9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Munsters Pinball Machine\",\"description_text\":\"Like new condition, with several new parts.\\n\",\"image_size\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"title_color\":\"#D20000\",\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bf4d915\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5282614\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"6b326e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71555f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4b32f49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We bring more than 24 years\\u2019 senior experience forging of\\ncollaborations across government.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11f730c\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"list\":[{\"title\":\"\",\"content\":\"Praesent feugiat sem mattis.\",\"_id\":\"5468f9e\"},{\"title\":\"\",\"content\":\"A wonderful serenity.\",\"_id\":\"e337312\"},{\"title\":\"\",\"content\":\"Premium services for you.\",\"_id\":\"a1fd6d3\"},{\"title\":\"\",\"content\":\"Set a link back to photo.\",\"_id\":\"7341c94\"}]},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"596ae67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"about-call\\\">Call to ask <a href=\\\"#\\\">any question<\\/a>  <span>540-325-1523<\\/span><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dffa2c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/about-gap.png\",\"id\":1896},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"41e6e03\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/signature.png\",\"id\":1892},\"title\":\"Natalia Duke\",\"sub_title\":\"(Chairman and founder)\"},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"07e4861\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"45\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more about us?\",\"desc\":\"Just download brochure...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false}]'),(5583,4437,'_wp_page_template','default'),(5584,4437,'_elementor_edit_mode','builder'),(5585,4437,'_elementor_template_type','wp-page'),(5586,4437,'_elementor_version','3.2.2'),(5587,4437,'_elementor_data','[{\"id\":\"6a533d2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1229601\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d091b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Available Machines For Sale\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-bottom1\",\"text_align\":\"center\",\"title_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"176c3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>If you are interested in any of the below machines, please contact the System Amusement team to inquire. We look forward to speaking with you soon!<\\/p><h5><strong>Call today at: <\\/strong><a href=\\\"tel:509-993-4655\\\"><strong>509-993-4655<\\/strong><\\/a><\\/h5>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a46b963\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"cdc72ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"66ee137\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Munsters Pinball Machine\",\"description_text\":\"Like new condition, with several new parts.\\n\",\"image_size\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"title_color\":\"#D20000\",\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"0455c5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ee1cf24\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Munsters Pinball Machine\",\"description_text\":\"Like new condition, with several new parts.\\n\",\"image_size\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"title_color\":\"#D20000\",\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35d76f2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"fcd8f82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1728f7a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Munsters Pinball Machine\",\"description_text\":\"Like new condition, with several new parts.\\n\",\"image_size\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"title_color\":\"#D20000\",\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"b72d60e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"bb7f7d9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Munsters Pinball Machine\",\"description_text\":\"Like new condition, with several new parts.\\n\",\"image_size\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"title_color\":\"#D20000\",\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bf4d915\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5282614\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"6b326e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71555f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4b32f49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We bring more than 24 years\\u2019 senior experience forging of\\ncollaborations across government.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11f730c\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"list\":[{\"title\":\"\",\"content\":\"Praesent feugiat sem mattis.\",\"_id\":\"5468f9e\"},{\"title\":\"\",\"content\":\"A wonderful serenity.\",\"_id\":\"e337312\"},{\"title\":\"\",\"content\":\"Premium services for you.\",\"_id\":\"a1fd6d3\"},{\"title\":\"\",\"content\":\"Set a link back to photo.\",\"_id\":\"7341c94\"}]},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"596ae67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"about-call\\\">Call to ask <a href=\\\"#\\\">any question<\\/a>  <span>540-325-1523<\\/span><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dffa2c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/about-gap.png\",\"id\":1896},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"41e6e03\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/signature.png\",\"id\":1892},\"title\":\"Natalia Duke\",\"sub_title\":\"(Chairman and founder)\"},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"07e4861\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"45\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more about us?\",\"desc\":\"Just download brochure...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false}]'),(5593,26,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:28:\"title_typography_line_height\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;s:18:\"title_space_bottom\";i:1;s:5:\"style\";i:1;s:10:\"text_align\";i:1;s:28:\"title_typography_font_weight\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:22:\"typography_line_height\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:5;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:4;}}s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:4;s:10:\"title_text\";i:4;s:16:\"description_text\";i:4;}}s:5:\"style\";a:2:{s:19:\"section_style_image\";a:1:{s:10:\"image_size\";i:4;}s:21:\"section_style_content\";a:6:{s:11:\"title_color\";i:4;s:17:\"description_color\";i:4;s:33:\"description_typography_typography\";i:4;s:34:\"description_typography_font_family\";i:4;s:32:\"description_typography_font_size\";i:4;s:34:\"description_typography_font_weight\";i:4;}}}}s:6:\"ct_cta\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:5:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;s:8:\"btn_link\";i:1;}}}}}'),(5594,26,'_elementor_css','a:6:{s:4:\"time\";i:1619644226;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:1:{i:0;s:8:\"flaticon\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(5595,26,'_edit_lock','1619646664:1'),(5596,4439,'_wp_page_template','default'),(5597,4439,'_elementor_edit_mode','builder'),(5598,4439,'_elementor_template_type','wp-page'),(5599,4439,'_elementor_version','3.2.2'),(5600,4439,'_elementor_data','[{\"id\":\"6a533d2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1229601\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d091b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Available Machines For Sale\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-bottom1\",\"text_align\":\"center\",\"title_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"176c3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>If you are interested in any of the below machines, please contact the System Amusement team to inquire. We look forward to speaking with you soon!<\\/p><h5><strong>Call today at: <\\/strong><a href=\\\"tel:509-993-4655\\\"><strong>509-993-4655<\\/strong><\\/a><\\/h5>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a46b963\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"cdc72ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"66ee137\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Munsters Pinball Machine\",\"description_text\":\"Like new condition, with several new parts.\\n\",\"image_size\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"title_color\":\"#D20000\",\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"0455c5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ee1cf24\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Munsters Pinball Machine\",\"description_text\":\"Like new condition, with several new parts.\\n\",\"image_size\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"title_color\":\"#D20000\",\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35d76f2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"fcd8f82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1728f7a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Munsters Pinball Machine\",\"description_text\":\"Like new condition, with several new parts.\\n\",\"image_size\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"title_color\":\"#D20000\",\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"b72d60e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"bb7f7d9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Munsters Pinball Machine\",\"description_text\":\"Like new condition, with several new parts.\\n\",\"image_size\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"title_color\":\"#D20000\",\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"45\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interested in this equipment?\",\"desc\":\"Call us today!\",\"btn_text\":\"509-993-4655\",\"btn_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"btn_link\":{\"url\":\"tel:509-993-4655\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false}]'),(5601,4439,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:28:\"title_typography_line_height\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;s:18:\"title_space_bottom\";i:1;s:5:\"style\";i:1;s:10:\"text_align\";i:1;s:28:\"title_typography_font_weight\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:22:\"typography_line_height\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:5;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:4;}}s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:4;s:10:\"title_text\";i:4;s:16:\"description_text\";i:4;}}s:5:\"style\";a:2:{s:19:\"section_style_image\";a:1:{s:10:\"image_size\";i:4;}s:21:\"section_style_content\";a:6:{s:11:\"title_color\";i:4;s:17:\"description_color\";i:4;s:33:\"description_typography_typography\";i:4;s:34:\"description_typography_font_family\";i:4;s:32:\"description_typography_font_size\";i:4;s:34:\"description_typography_font_weight\";i:4;}}}}s:6:\"ct_cta\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:5:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;s:8:\"btn_link\";i:1;}}}}}'),(5602,4439,'_elementor_css','a:6:{s:4:\"time\";i:1619644226;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:1:{i:0;s:8:\"flaticon\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(5603,26,'_edit_last','1'),(5604,26,'p_h_style1','themeoption'),(5605,26,'p_logo_dark','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(5606,26,'p_logo_light','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(5607,26,'p_logo_mobile','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(5608,26,'page_h_phone',''),(5609,26,'page_h_time',''),(5610,26,'h_custom_menu',''),(5611,26,'h_custom_menu_left',''),(5612,26,'h_custom_menu_right',''),(5613,26,'p_page_title_color',''),(5614,26,'ptitle_overlay','themeoption'),(5615,26,'ptitle_breadcrumb_page','themeoption'),(5616,26,'ptitle_breadcrumb_color',''),(5617,26,'p_bg_content','a:6:{s:17:\"background-repeat\";s:0:\"\";s:15:\"background-size\";s:0:\"\";s:21:\"background-attachment\";s:0:\"\";s:19:\"background-position\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(5618,26,'loading_page','themeoption'),(5619,26,'loading_type','style1'),(5620,26,'page_back_totop','themeoption'),(5622,26,'eg_sources_youtube',''),(5623,26,'eg_sources_vimeo',''),(5624,26,'eg_sources_wistia',''),(5625,26,'eg_sources_image',''),(5626,26,'eg_sources_iframe',''),(5627,26,'eg_sources_soundcloud',''),(5628,26,'eg_vimeo_ratio','1'),(5629,26,'eg_youtube_ratio','1'),(5630,26,'eg_wistia_ratio','1'),(5631,26,'eg_html5_ratio','1'),(5632,26,'eg_soundcloud_ratio','1'),(5633,26,'eg_sources_revslider',''),(5634,26,'eg_sources_essgrid',''),(5635,26,'eg_featured_grid',''),(5636,26,'eg_settings_custom_meta_skin',''),(5637,26,'eg_settings_custom_meta_element',''),(5638,26,'eg_settings_custom_meta_setting',''),(5639,26,'eg_settings_custom_meta_style',''),(5640,26,'eg_custom_meta_216','true'),(5641,26,'eg_votes_count','0'),(5642,4440,'_wp_page_template','default'),(5643,4440,'_elementor_edit_mode','builder'),(5644,4440,'_elementor_template_type','wp-page'),(5645,4440,'_elementor_version','3.2.2'),(5646,4440,'_elementor_data','[{\"id\":\"6a533d2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1229601\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d091b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Available Machines For Sale\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-bottom1\",\"text_align\":\"center\",\"title_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"176c3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>If you are interested in any of the below machines, please contact the System Amusement team to inquire. We look forward to speaking with you soon!<\\/p><h5><strong>Call today at: <\\/strong><a href=\\\"tel:509-993-4655\\\"><strong>509-993-4655<\\/strong><\\/a><\\/h5>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a46b963\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"cdc72ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"66ee137\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Munsters Pinball Machine\",\"description_text\":\"Like new condition, with several new parts.\\n\",\"image_size\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"title_color\":\"#D20000\",\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"0455c5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ee1cf24\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Munsters Pinball Machine\",\"description_text\":\"Like new condition, with several new parts.\\n\",\"image_size\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"title_color\":\"#D20000\",\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35d76f2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"fcd8f82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1728f7a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Munsters Pinball Machine\",\"description_text\":\"Like new condition, with several new parts.\\n\",\"image_size\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"title_color\":\"#D20000\",\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"b72d60e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"bb7f7d9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Munsters Pinball Machine\",\"description_text\":\"Like new condition, with several new parts.\\n\",\"image_size\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"title_color\":\"#D20000\",\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Roboto\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"45\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interested in this equipment?\",\"desc\":\"Call us today!\",\"btn_text\":\"509-993-4655\",\"btn_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"btn_link\":{\"url\":\"tel:509-993-4655\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false}]'),(5647,4440,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:10:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:28:\"title_typography_line_height\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;s:18:\"title_space_bottom\";i:1;s:5:\"style\";i:1;s:10:\"text_align\";i:1;s:28:\"title_typography_font_weight\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:22:\"typography_line_height\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:5;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:4;}}s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:4;s:10:\"title_text\";i:4;s:16:\"description_text\";i:4;}}s:5:\"style\";a:2:{s:19:\"section_style_image\";a:1:{s:10:\"image_size\";i:4;}s:21:\"section_style_content\";a:6:{s:11:\"title_color\";i:4;s:17:\"description_color\";i:4;s:33:\"description_typography_typography\";i:4;s:34:\"description_typography_font_family\";i:4;s:32:\"description_typography_font_size\";i:4;s:34:\"description_typography_font_weight\";i:4;}}}}s:6:\"ct_cta\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:5:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;s:8:\"btn_link\";i:1;}}}}}'),(5648,4440,'_elementor_css','a:6:{s:4:\"time\";i:1619644226;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:1:{i:0;s:8:\"flaticon\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(5656,4350,'_wp_old_date','2021-04-15'),(5657,4349,'_wp_old_date','2021-04-15'),(5658,407,'_elementor_css','a:6:{s:4:\"time\";i:1619647133;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(5660,3516,'_elementor_css','a:6:{s:4:\"time\";i:1619647156;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(5661,3518,'_elementor_css','a:6:{s:4:\"time\";i:1619647158;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(5662,3520,'_elementor_css','a:6:{s:4:\"time\";i:1619647160;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(5668,4441,'_elementor_css','a:6:{s:4:\"time\";i:1619647135;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(5669,4442,'_wp_page_template','default'),(5670,4442,'_elementor_edit_mode','builder'),(5671,4442,'_elementor_template_type','wp-page'),(5672,4442,'_elementor_version','2.8.2');
INSERT INTO `wp9s_postmeta` VALUES (5673,4442,'_elementor_data','[{\"id\":\"21b714b5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"76\",\"right\":0,\"bottom\":\"68\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"69e72f28\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.9909999999999996589394868351519107818603515625},\"elements\":[{\"id\":\"2703b0d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We position our clients at the forefront of their field by advancing an agenda.\",\"sub_title\":\"Services\",\"sub_title_color\":\"#0e0e0e\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4b3f4661\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.0090000000000003410605131648480892181396484375,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76dfc09b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Easily apply to multiple jobs with one click! Quick Apply shows you recommended jobs based off your most recent search and allows you to apply to 25+ jobs in a matter of seconds!\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a8ea759\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68d2945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5249e166\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"button_text\":\"Read more\",\"limit\":6,\"col_lg\":\"3\",\"col_xl\":\"3\",\"source\":[\"law|service-category\"],\"ct_animate\":\"wow fadeInUp\",\"layout\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a50ed4\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"26c4891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6cbd01b9\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(5674,4442,'_elementor_css','a:6:{s:4:\"time\";i:1619647135;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(5688,4445,'_wp_page_template','default'),(5689,4445,'_elementor_edit_mode','builder'),(5690,4445,'_elementor_template_type','wp-page'),(5691,4445,'_elementor_version','3.2.2'),(5692,4445,'_elementor_data','[{\"id\":\"21b714b5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"76\",\"right\":0,\"bottom\":\"68\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"69e72f28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2703b0d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"sub_title_color\":\"#0e0e0e\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"76dfc09b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. <\\/p><p style=\\\"text-align: center;\\\"><strong>Call now: <a href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/strong><\\/p>\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(5698,4447,'_wp_page_template','default'),(5699,4447,'_elementor_edit_mode','builder'),(5700,4447,'_elementor_template_type','wp-page'),(5701,4447,'_elementor_version','3.2.2'),(5702,4447,'_elementor_data','[{\"id\":\"21b714b5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"76\",\"right\":0,\"bottom\":\"68\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"69e72f28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2703b0d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"sub_title_color\":\"#0e0e0e\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"76dfc09b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. <\\/p><p style=\\\"text-align: center;\\\"><strong>Call now: <a href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/strong><\\/p>\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf63871\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f889722\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04edce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Pinball Machines\",\"description_text\":\"We offer some of the most cutting edge and popular pinball machines you can have in your location. \",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a1da2cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"77e1090\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/127abec3ea6540c295af41d2eead0221.jpeg\",\"id\":4371},\"title_text\":\"ATM Machines\",\"description_text\":\"This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!\",\"image_size\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"bb2e693\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7efb4e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Pinball Machines\",\"description_text\":\"We offer some of the most cutting edge and popular pinball machines you can have in your location. \",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false}]'),(5693,4446,'_wp_page_template','default'),(5694,4446,'_elementor_edit_mode','builder'),(5695,4446,'_elementor_template_type','wp-page'),(5696,4446,'_elementor_version','3.2.2'),(5697,4446,'_elementor_data','[{\"id\":\"21b714b5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"76\",\"right\":0,\"bottom\":\"68\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"69e72f28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2703b0d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"sub_title_color\":\"#0e0e0e\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"76dfc09b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. <\\/p><p style=\\\"text-align: center;\\\"><strong>Call now: <a href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/strong><\\/p>\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(5710,4449,'_wp_page_template','default'),(5711,4449,'_elementor_edit_mode','builder'),(5712,4449,'_elementor_template_type','wp-page'),(5713,4449,'_elementor_version','3.2.2'),(5714,4449,'_elementor_data','[{\"id\":\"21b714b5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"76\",\"right\":0,\"bottom\":\"68\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"69e72f28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2703b0d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"sub_title_color\":\"#0e0e0e\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"76dfc09b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. <\\/p><p style=\\\"text-align: center;\\\"><strong>Call now: <a href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/strong><\\/p>\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf63871\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f889722\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04edce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Pinball Machines\",\"description_text\":\"We offer some of the most cutting edge and popular pinball machines you can have in your location. \",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a1da2cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"77e1090\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/127abec3ea6540c295af41d2eead0221.jpeg\",\"id\":4371},\"title_text\":\"ATM Machines\",\"description_text\":\"This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!\",\"image_size\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"bb2e693\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7efb4e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Pinball Machines\",\"description_text\":\"We offer some of the most cutting edge and popular pinball machines you can have in your location. \",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false}]'),(5736,4454,'_wp_page_template','default'),(5720,4451,'_wp_page_template','default'),(5721,4451,'_elementor_edit_mode','builder'),(5722,4451,'_elementor_template_type','wp-page'),(5723,4451,'_elementor_version','3.2.2'),(5724,4451,'_elementor_data','[{\"id\":\"21b714b5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"76\",\"right\":0,\"bottom\":\"68\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"69e72f28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2703b0d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"sub_title_color\":\"#0e0e0e\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"76dfc09b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. <\\/p><p style=\\\"text-align: center;\\\"><strong>Call now: <a href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/strong><\\/p>\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf63871\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f889722\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04edce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Pinball Machines\",\"description_text\":\"We offer some of the most cutting edge and popular pinball machines you can have in your location. \",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a1da2cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"77e1090\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/127abec3ea6540c295af41d2eead0221.jpeg\",\"id\":4371},\"title_text\":\"ATM Machines\",\"description_text\":\"This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!\",\"image_size\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"bb2e693\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7efb4e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.43.33-PM.png\",\"id\":4383},\"title_text\":\"Ski Ball\",\"description_text\":\"Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.\",\"image_size\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e4245be\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"0b46440\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2b45973\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/darts.jpeg\",\"id\":4364},\"title_text\":\"Dart Boards\",\"description_text\":\"System Amusement offers the best dart boards such as the Arachnid Bullshooter. Dart boards provide a classic game that everyone loves, yet our cutting edge equipment gives a modern and interactive twist.\",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"1f6ffc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"13da9a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/127abec3ea6540c295af41d2eead0221.jpeg\",\"id\":4371},\"title_text\":\"ATM Machines\",\"description_text\":\"This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!\",\"image_size\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a75e86d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e62ae8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.43.33-PM.png\",\"id\":4383},\"title_text\":\"Ski Ball\",\"description_text\":\"Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.\",\"image_size\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false}]'),(5715,4450,'_wp_page_template','default'),(5716,4450,'_elementor_edit_mode','builder'),(5717,4450,'_elementor_template_type','wp-page'),(5718,4450,'_elementor_version','3.2.2'),(5719,4450,'_elementor_data','[{\"id\":\"21b714b5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"76\",\"right\":0,\"bottom\":\"68\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"69e72f28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2703b0d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"sub_title_color\":\"#0e0e0e\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"76dfc09b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. <\\/p><p style=\\\"text-align: center;\\\"><strong>Call now: <a href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/strong><\\/p>\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf63871\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f889722\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04edce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Pinball Machines\",\"description_text\":\"We offer some of the most cutting edge and popular pinball machines you can have in your location. \",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a1da2cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"77e1090\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/127abec3ea6540c295af41d2eead0221.jpeg\",\"id\":4371},\"title_text\":\"ATM Machines\",\"description_text\":\"This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!\",\"image_size\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"bb2e693\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7efb4e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Pinball Machines\",\"description_text\":\"We offer some of the most cutting edge and popular pinball machines you can have in your location. \",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false}]'),(5726,4452,'_wp_page_template','default'),(5727,4452,'_elementor_edit_mode','builder'),(5728,4452,'_elementor_template_type','wp-page'),(5729,4452,'_elementor_version','3.2.2'),(5730,4452,'_elementor_data','[{\"id\":\"21b714b5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"76\",\"right\":0,\"bottom\":\"68\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"69e72f28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2703b0d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"sub_title_color\":\"#0e0e0e\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"76dfc09b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. <\\/p><p style=\\\"text-align: center;\\\"><strong>Call now: <a href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/strong><\\/p>\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf63871\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f889722\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04edce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Pinball Machines\",\"description_text\":\"We offer some of the most cutting edge and popular pinball machines you can have in your location. \",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a1da2cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"77e1090\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/127abec3ea6540c295af41d2eead0221.jpeg\",\"id\":4371},\"title_text\":\"ATM Machines\",\"description_text\":\"This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!\",\"image_size\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"bb2e693\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7efb4e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.43.33-PM.png\",\"id\":4383},\"title_text\":\"Ski Ball\",\"description_text\":\"Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.\",\"image_size\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e4245be\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"0b46440\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2b45973\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/darts.jpeg\",\"id\":4364},\"title_text\":\"Dart Boards\",\"description_text\":\"System Amusement offers the best dart boards such as the Arachnid Bullshooter. Dart boards provide a classic game that everyone loves, yet our cutting edge equipment gives a modern and interactive twist.\",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"1f6ffc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"13da9a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/127abec3ea6540c295af41d2eead0221.jpeg\",\"id\":4371},\"title_text\":\"ATM Machines\",\"description_text\":\"This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!\",\"image_size\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a75e86d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e62ae8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.43.33-PM.png\",\"id\":4383},\"title_text\":\"Ski Ball\",\"description_text\":\"Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.\",\"image_size\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false}]'),(5731,4453,'_wp_page_template','default'),(5732,4453,'_elementor_edit_mode','builder'),(5733,4453,'_elementor_template_type','wp-page'),(5734,4453,'_elementor_version','3.2.2'),(5735,4453,'_elementor_data','[{\"id\":\"21b714b5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"76\",\"right\":0,\"bottom\":\"68\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"69e72f28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2703b0d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"sub_title_color\":\"#0e0e0e\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"76dfc09b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. <\\/p><p style=\\\"text-align: center;\\\"><strong>Call now: <a href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/strong><\\/p>\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf63871\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f889722\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04edce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Pinball Machines\",\"description_text\":\"We offer some of the most cutting edge and popular pinball machines you can have in your location. \",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a1da2cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"77e1090\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/127abec3ea6540c295af41d2eead0221.jpeg\",\"id\":4371},\"title_text\":\"ATM Machines\",\"description_text\":\"This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!\",\"image_size\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"bb2e693\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7efb4e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.43.33-PM.png\",\"id\":4383},\"title_text\":\"Ski Ball\",\"description_text\":\"Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.\",\"image_size\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e4245be\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"0b46440\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2b45973\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/darts.jpeg\",\"id\":4364},\"title_text\":\"Dart Boards\",\"description_text\":\"System Amusement offers the best dart boards such as the Arachnid Bullshooter. Dart boards provide a classic game that everyone loves, yet our cutting edge equipment gives a modern and interactive twist.\",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"1f6ffc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"13da9a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/127abec3ea6540c295af41d2eead0221.jpeg\",\"id\":4371},\"title_text\":\"ATM Machines\",\"description_text\":\"This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!\",\"image_size\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a75e86d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e62ae8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.43.33-PM.png\",\"id\":4383},\"title_text\":\"Ski Ball\",\"description_text\":\"Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.\",\"image_size\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false}]'),(5737,4454,'_elementor_edit_mode','builder'),(5738,4454,'_elementor_template_type','wp-page'),(5739,4454,'_elementor_version','3.2.2'),(5740,4454,'_elementor_data','[{\"id\":\"21b714b5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"76\",\"right\":0,\"bottom\":\"68\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"69e72f28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2703b0d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"sub_title_color\":\"#0e0e0e\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"76dfc09b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. <\\/p><p style=\\\"text-align: center;\\\"><strong>Call now: <a href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/strong><\\/p>\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf63871\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f889722\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04edce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Pinball Machines\",\"description_text\":\"We offer some of the most cutting edge and popular pinball machines you can have in your location. \",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a1da2cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"77e1090\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/127abec3ea6540c295af41d2eead0221.jpeg\",\"id\":4371},\"title_text\":\"ATM Machines\",\"description_text\":\"This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!\",\"image_size\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"bb2e693\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7efb4e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.43.33-PM.png\",\"id\":4383},\"title_text\":\"Ski Ball\",\"description_text\":\"Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.\",\"image_size\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e4245be\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"0b46440\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2b45973\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/darts.jpeg\",\"id\":4364},\"title_text\":\"Dart Boards\",\"description_text\":\"System Amusement offers the best dart boards such as the Arachnid Bullshooter. Dart boards provide a classic game that everyone loves, yet our cutting edge equipment gives a modern and interactive twist.\",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"1f6ffc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"13da9a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/pantherhighlandmaplefullbody.png\",\"id\":4122},\"title_text\":\"Pool Tables\",\"description_text\":\"Pool tables are a must for successful bars. We offer quarter pool machines that will keep your customers excited and in your location for hours.\",\"image_size\":{\"unit\":\"%\",\"size\":53,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a75e86d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e62ae8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.32.35-PM.png\",\"id\":4372},\"title_text\":\"Juke Boxes\",\"description_text\":\"These have been a classic for literally decades. System Amusement carries the highest tech juke boxes in the industry. Contact us today to order yours\",\"image_size\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false}]'),(5742,4455,'_wp_page_template','default'),(5743,4455,'_elementor_edit_mode','builder'),(5744,4455,'_elementor_template_type','wp-page'),(5745,4455,'_elementor_version','3.2.2'),(5746,4455,'_elementor_data','[{\"id\":\"21b714b5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"76\",\"right\":0,\"bottom\":\"68\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"69e72f28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2703b0d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"sub_title_color\":\"#0e0e0e\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"76dfc09b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. <\\/p><p style=\\\"text-align: center;\\\"><strong>Call now: <a href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/strong><\\/p>\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf63871\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f889722\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04edce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Pinball Machines\",\"description_text\":\"We offer some of the most cutting edge and popular pinball machines you can have in your location. \",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a1da2cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"77e1090\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/127abec3ea6540c295af41d2eead0221.jpeg\",\"id\":4371},\"title_text\":\"ATM Machines\",\"description_text\":\"This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!\",\"image_size\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"bb2e693\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7efb4e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.43.33-PM.png\",\"id\":4383},\"title_text\":\"Ski Ball\",\"description_text\":\"Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.\",\"image_size\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e4245be\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"0b46440\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2b45973\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/darts.jpeg\",\"id\":4364},\"title_text\":\"Dart Boards\",\"description_text\":\"System Amusement offers the best dart boards such as the Arachnid Bullshooter. Dart boards provide a classic game that everyone loves, yet our cutting edge equipment gives a modern and interactive twist.\",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"1f6ffc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"13da9a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/pantherhighlandmaplefullbody.png\",\"id\":4122},\"title_text\":\"Pool Tables\",\"description_text\":\"Pool tables are a must for successful bars. We offer quarter pool machines that will keep your customers excited and in your location for hours.\",\"image_size\":{\"unit\":\"%\",\"size\":53,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a75e86d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e62ae8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.32.35-PM.png\",\"id\":4372},\"title_text\":\"Juke Boxes\",\"description_text\":\"These have been a classic for literally decades. System Amusement carries the highest tech juke boxes in the industry. Contact us today to order yours\",\"image_size\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false}]'),(5747,4456,'_wp_page_template','default'),(5748,4456,'_elementor_edit_mode','builder'),(5749,4456,'_elementor_template_type','wp-page'),(5750,4456,'_elementor_version','3.2.2'),(5751,4456,'_elementor_data','[{\"id\":\"21b714b5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"76\",\"right\":0,\"bottom\":\"68\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"69e72f28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2703b0d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"sub_title_color\":\"#0e0e0e\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"76dfc09b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. <\\/p><p style=\\\"text-align: center;\\\"><strong>Call now: <a href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/strong><\\/p>\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf63871\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f889722\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04edce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Pinball Machines\",\"description_text\":\"We offer some of the most cutting edge and popular pinball machines you can have in your location. \",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a1da2cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"77e1090\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/127abec3ea6540c295af41d2eead0221.jpeg\",\"id\":4371},\"title_text\":\"ATM Machines\",\"description_text\":\"This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!\",\"image_size\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"bb2e693\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7efb4e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.43.33-PM.png\",\"id\":4383},\"title_text\":\"Ski Ball\",\"description_text\":\"Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.\",\"image_size\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e4245be\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"0b46440\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2b45973\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/darts.jpeg\",\"id\":4364},\"title_text\":\"Dart Boards\",\"description_text\":\"System Amusement offers the best dart boards such as the Arachnid Bullshooter. Dart boards provide a classic game that everyone loves, yet our cutting edge equipment gives a modern and interactive twist.\",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"1f6ffc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"13da9a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/pantherhighlandmaplefullbody.png\",\"id\":4122},\"title_text\":\"Pool Tables\",\"description_text\":\"Pool tables are a must for successful bars. We offer quarter pool machines that will keep your customers excited and in your location for hours.\",\"image_size\":{\"unit\":\"%\",\"size\":53,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a75e86d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e62ae8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.32.35-PM.png\",\"id\":4372},\"title_text\":\"Juke Boxes\",\"description_text\":\"These have been a classic for literally decades. System Amusement carries the highest tech juke boxes in the industry. Contact us today to order yours\",\"image_size\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false}]'),(5752,4457,'_wp_page_template','default'),(5753,4457,'_elementor_edit_mode','builder'),(5754,4457,'_elementor_template_type','wp-page'),(5755,4457,'_elementor_version','3.2.2'),(5756,4457,'_elementor_data','[{\"id\":\"21b714b5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"76\",\"right\":0,\"bottom\":\"68\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"69e72f28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2703b0d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"sub_title_color\":\"#0e0e0e\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"76dfc09b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. <\\/p><p style=\\\"text-align: center;\\\"><strong>Call now: <a href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/strong><\\/p>\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf63871\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\"},\"elements\":[{\"id\":\"f889722\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04edce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Pinball Machines\",\"description_text\":\"We offer some of the most cutting edge and popular pinball machines you can have in your location. \",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a1da2cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"77e1090\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/127abec3ea6540c295af41d2eead0221.jpeg\",\"id\":4371},\"title_text\":\"ATM Machines\",\"description_text\":\"This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!\",\"image_size\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"bb2e693\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7efb4e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.43.33-PM.png\",\"id\":4383},\"title_text\":\"Ski Ball\",\"description_text\":\"Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.\",\"image_size\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"d279aa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"78f809c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.43.33-PM.png\",\"id\":4383},\"title_text\":\"Ski Ball\",\"description_text\":\"Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.\",\"image_size\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e4245be\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\"},\"elements\":[{\"id\":\"0b46440\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2b45973\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/darts.jpeg\",\"id\":4364},\"title_text\":\"Dart Boards\",\"description_text\":\"System Amusement offers the best dart boards such as the Arachnid Bullshooter. Dart boards provide a classic game that everyone loves, yet our cutting edge equipment gives a modern and interactive twist.\",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"1f6ffc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"13da9a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/pantherhighlandmaplefullbody.png\",\"id\":4122},\"title_text\":\"Pool Tables\",\"description_text\":\"Pool tables are a must for successful bars. We offer quarter pool machines that will keep your customers excited and in your location for hours.\",\"image_size\":{\"unit\":\"%\",\"size\":53,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a75e86d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e62ae8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.32.35-PM.png\",\"id\":4372},\"title_text\":\"Juke Boxes\",\"description_text\":\"These have been a classic for literally decades. System Amusement carries the highest tech juke boxes in the industry. Contact us today to order yours\",\"image_size\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"f751212\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ac6cdef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.32.35-PM.png\",\"id\":4372},\"title_text\":\"Juke Boxes\",\"description_text\":\"These have been a classic for literally decades. System Amusement carries the highest tech juke boxes in the industry. Contact us today to order yours\",\"image_size\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false}]'),(5766,4460,'_wp_page_template','default'),(5767,4460,'_elementor_edit_mode','builder'),(5768,4460,'_elementor_template_type','wp-page'),(5769,4460,'_elementor_version','3.2.2'),(5770,4460,'_elementor_data','[{\"id\":\"21b714b5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"76\",\"right\":0,\"bottom\":\"68\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"69e72f28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2703b0d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"sub_title_color\":\"#0e0e0e\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"76dfc09b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. <\\/p><p style=\\\"text-align: center;\\\"><strong>Call now: <a href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/strong><\\/p>\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf63871\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\"},\"elements\":[{\"id\":\"f889722\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04edce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Pinball Machines\",\"description_text\":\"We offer some of the most cutting edge and popular pinball machines you can have in your location. \",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a1da2cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"77e1090\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/127abec3ea6540c295af41d2eead0221.jpeg\",\"id\":4371},\"title_text\":\"ATM Machines\",\"description_text\":\"This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!\",\"image_size\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"bb2e693\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7efb4e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.43.33-PM.png\",\"id\":4383},\"title_text\":\"Ski Ball\",\"description_text\":\"Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.\",\"image_size\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"d279aa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"78f809c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.43.33-PM.png\",\"id\":4383},\"title_text\":\"Ski Ball\",\"description_text\":\"Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.\",\"image_size\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e4245be\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\"},\"elements\":[{\"id\":\"0b46440\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2b45973\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/darts.jpeg\",\"id\":4364},\"title_text\":\"Dart Boards\",\"description_text\":\"System Amusement offers the best dart boards such as the Arachnid Bullshooter. Dart boards provide a classic game that everyone loves, yet our cutting edge equipment gives a modern and interactive twist.\",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"1f6ffc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"13da9a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/pantherhighlandmaplefullbody.png\",\"id\":4122},\"title_text\":\"Pool Tables\",\"description_text\":\"Pool tables are a must for successful bars. We offer quarter pool machines that will keep your customers excited and in your location for hours.\",\"image_size\":{\"unit\":\"%\",\"size\":53,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a75e86d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e62ae8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.32.35-PM.png\",\"id\":4372},\"title_text\":\"Juke Boxes\",\"description_text\":\"These have been a classic for literally decades. System Amusement carries the highest tech juke boxes in the industry. Contact us today to order yours\",\"image_size\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"f751212\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ac6cdef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.32.35-PM.png\",\"id\":4372},\"title_text\":\"Juke Boxes\",\"description_text\":\"These have been a classic for literally decades. System Amusement carries the highest tech juke boxes in the industry. Contact us today to order yours\",\"image_size\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false}]'),(5790,4464,'_elementor_template_type','wp-page'),(5791,4464,'_elementor_version','3.2.2'),(5792,4464,'_elementor_data','[{\"id\":\"21b714b5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"76\",\"right\":0,\"bottom\":\"68\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"69e72f28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2703b0d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"sub_title_color\":\"#0e0e0e\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"76dfc09b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. <\\/p><p style=\\\"text-align: center;\\\"><strong>Call now: <a href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/strong><\\/p>\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf63871\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\"},\"elements\":[{\"id\":\"f889722\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04edce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Pinball Machines\",\"description_text\":\"We offer some of the most cutting edge and popular pinball machines you can have in your location. \",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a1da2cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"77e1090\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/127abec3ea6540c295af41d2eead0221.jpeg\",\"id\":4371},\"title_text\":\"ATM Machines\",\"description_text\":\"This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!\",\"image_size\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"bb2e693\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7efb4e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.43.33-PM.png\",\"id\":4383},\"title_text\":\"Ski Ball\",\"description_text\":\"Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.\",\"image_size\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"d279aa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"78f809c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-tee.jpeg\",\"id\":4121},\"title_text\":\"Games\",\"description_text\":\"We have the most poplur bar games of all time like Buck Hunter and Golden Tee Golf. Get your location setup with these modern classics.\",\"image_size\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e4245be\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\"},\"elements\":[{\"id\":\"0b46440\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2b45973\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/darts.jpeg\",\"id\":4364},\"title_text\":\"Dart Boards\",\"description_text\":\"System Amusement offers the best dart boards such as the Arachnid Bullshooter. Dart boards provide a classic game that everyone loves, yet our cutting edge equipment gives a modern and interactive twist.\",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"1f6ffc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"13da9a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/pantherhighlandmaplefullbody.png\",\"id\":4122},\"title_text\":\"Pool Tables\",\"description_text\":\"Pool tables are a must for successful bars. We offer quarter pool machines that will keep your customers excited and in your location for hours.\",\"image_size\":{\"unit\":\"%\",\"size\":53,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a75e86d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e62ae8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/touch-tunes-717.jpg\",\"id\":4459},\"title_text\":\"Touch Tunes\",\"description_text\":\"System Amusement proudly provides the Touch Tunes music system, that will bring the entertainment in your location to a whole new level!\",\"image_space\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"f751212\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ac6cdef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.32.35-PM.png\",\"id\":4372},\"title_text\":\"Juke Boxes\",\"description_text\":\"These have been a classic for literally decades. System Amusement carries the highest tech juke boxes in the industry. Contact us today to order yours.\",\"image_size\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false}]'),(5776,4462,'_wp_page_template','default'),(5777,4462,'_elementor_edit_mode','builder'),(5778,4462,'_elementor_template_type','wp-page'),(5779,4462,'_elementor_version','3.2.2'),(5780,4462,'_elementor_data','[{\"id\":\"21b714b5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"76\",\"right\":0,\"bottom\":\"68\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"69e72f28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2703b0d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"sub_title_color\":\"#0e0e0e\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"76dfc09b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. <\\/p><p style=\\\"text-align: center;\\\"><strong>Call now: <a href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/strong><\\/p>\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf63871\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\"},\"elements\":[{\"id\":\"f889722\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04edce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Pinball Machines\",\"description_text\":\"We offer some of the most cutting edge and popular pinball machines you can have in your location. \",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a1da2cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"77e1090\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/127abec3ea6540c295af41d2eead0221.jpeg\",\"id\":4371},\"title_text\":\"ATM Machines\",\"description_text\":\"This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!\",\"image_size\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"bb2e693\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7efb4e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.43.33-PM.png\",\"id\":4383},\"title_text\":\"Ski Ball\",\"description_text\":\"Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.\",\"image_size\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"d279aa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"78f809c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-tee.jpeg\",\"id\":4121},\"title_text\":\"Games\",\"description_text\":\"We have the most poplur bar games of all time like Buck Hunter and Golden Tee Golf. Get your location setup with these modern classics.\",\"image_size\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e4245be\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\"},\"elements\":[{\"id\":\"0b46440\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2b45973\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/darts.jpeg\",\"id\":4364},\"title_text\":\"Dart Boards\",\"description_text\":\"System Amusement offers the best dart boards such as the Arachnid Bullshooter. Dart boards provide a classic game that everyone loves, yet our cutting edge equipment gives a modern and interactive twist.\",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"1f6ffc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"13da9a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/pantherhighlandmaplefullbody.png\",\"id\":4122},\"title_text\":\"Pool Tables\",\"description_text\":\"Pool tables are a must for successful bars. We offer quarter pool machines that will keep your customers excited and in your location for hours.\",\"image_size\":{\"unit\":\"%\",\"size\":53,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a75e86d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e62ae8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/touch-tunes-717.jpg\",\"id\":4459},\"title_text\":\"Touch Tunes\",\"description_text\":\"System Amusement proudly provides the Touch Tunes music system, that will bring the entertainment in your location to a whole new level!\",\"image_space\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"f751212\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ac6cdef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.32.35-PM.png\",\"id\":4372},\"title_text\":\"Juke Boxes\",\"description_text\":\"These have been a classic for literally decades. System Amusement carries the highest tech juke boxes in the industry. Contact us today to order yours.\",\"image_size\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false}]'),(5764,4459,'_wp_attached_file','2021/04/touch-tunes-717.jpg'),(5765,4459,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:352;s:6:\"height\";i:459;s:4:\"file\";s:27:\"2021/04/touch-tunes-717.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"touch-tunes-717-230x300.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"touch-tunes-717-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:27:\"touch-tunes-717-352x313.jpg\";s:5:\"width\";i:352;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:27:\"touch-tunes-717-352x450.jpg\";s:5:\"width\";i:352;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"touch-tunes-717-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"touch-tunes-717-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:27:\"touch-tunes-717-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"touch-tunes-717-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(5771,4461,'_wp_page_template','default'),(5772,4461,'_elementor_edit_mode','builder'),(5773,4461,'_elementor_template_type','wp-page'),(5774,4461,'_elementor_version','3.2.2'),(5775,4461,'_elementor_data','[{\"id\":\"21b714b5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"76\",\"right\":0,\"bottom\":\"68\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"69e72f28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2703b0d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"sub_title_color\":\"#0e0e0e\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"76dfc09b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. <\\/p><p style=\\\"text-align: center;\\\"><strong>Call now: <a href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/strong><\\/p>\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf63871\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\"},\"elements\":[{\"id\":\"f889722\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04edce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Pinball Machines\",\"description_text\":\"We offer some of the most cutting edge and popular pinball machines you can have in your location. \",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a1da2cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"77e1090\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/127abec3ea6540c295af41d2eead0221.jpeg\",\"id\":4371},\"title_text\":\"ATM Machines\",\"description_text\":\"This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!\",\"image_size\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"bb2e693\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7efb4e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.43.33-PM.png\",\"id\":4383},\"title_text\":\"Ski Ball\",\"description_text\":\"Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.\",\"image_size\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"d279aa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"78f809c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.43.33-PM.png\",\"id\":4383},\"title_text\":\"Ski Ball\",\"description_text\":\"Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.\",\"image_size\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e4245be\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\"},\"elements\":[{\"id\":\"0b46440\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2b45973\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/darts.jpeg\",\"id\":4364},\"title_text\":\"Dart Boards\",\"description_text\":\"System Amusement offers the best dart boards such as the Arachnid Bullshooter. Dart boards provide a classic game that everyone loves, yet our cutting edge equipment gives a modern and interactive twist.\",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"1f6ffc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"13da9a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/pantherhighlandmaplefullbody.png\",\"id\":4122},\"title_text\":\"Pool Tables\",\"description_text\":\"Pool tables are a must for successful bars. We offer quarter pool machines that will keep your customers excited and in your location for hours.\",\"image_size\":{\"unit\":\"%\",\"size\":53,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a75e86d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e62ae8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.32.35-PM.png\",\"id\":4372},\"title_text\":\"Juke Boxes\",\"description_text\":\"These have been a classic for literally decades. System Amusement carries the highest tech juke boxes in the industry. Contact us today to order yours\",\"image_size\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"f751212\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ac6cdef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.32.35-PM.png\",\"id\":4372},\"title_text\":\"Juke Boxes\",\"description_text\":\"These have been a classic for literally decades. System Amusement carries the highest tech juke boxes in the industry. Contact us today to order yours\",\"image_size\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false}]'),(5788,4464,'_wp_page_template','default'),(5789,4464,'_elementor_edit_mode','builder'),(5798,4466,'_wp_page_template','default'),(5799,4466,'_elementor_edit_mode','builder'),(5800,4466,'_elementor_template_type','wp-page'),(5801,4466,'_elementor_version','3.2.2'),(5802,4466,'_elementor_data','[{\"id\":\"21b714b5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"76\",\"right\":0,\"bottom\":\"68\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"69e72f28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2703b0d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"sub_title_color\":\"#0e0e0e\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"76dfc09b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. <\\/p><p style=\\\"text-align: center;\\\"><strong>Call now: <a href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/strong><\\/p>\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf63871\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\"},\"elements\":[{\"id\":\"f889722\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04edce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Pinball Machines\",\"description_text\":\"We offer some of the most cutting edge and popular pinball machines you can have in your location. \",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a1da2cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"77e1090\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/127abec3ea6540c295af41d2eead0221.jpeg\",\"id\":4371},\"title_text\":\"ATM Machines\",\"description_text\":\"This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!\",\"image_size\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"bb2e693\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7efb4e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.43.33-PM.png\",\"id\":4383},\"title_text\":\"Ski Ball\",\"description_text\":\"Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.\",\"image_size\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"d279aa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"78f809c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-tee.jpeg\",\"id\":4121},\"title_text\":\"Games\",\"description_text\":\"We have the most poplur bar games of all time like Buck Hunter and Golden Tee Golf. Get your location setup with these modern classics.\",\"image_size\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e4245be\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\"},\"elements\":[{\"id\":\"0b46440\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2b45973\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/darts.jpeg\",\"id\":4364},\"title_text\":\"Dart Boards\",\"description_text\":\"System Amusement offers the best dart boards such as the Arachnid Bullshooter. Dart boards provide a classic game that everyone loves, yet our cutting edge equipment gives a modern and interactive twist.\",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"1f6ffc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"13da9a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/pantherhighlandmaplefullbody.png\",\"id\":4122},\"title_text\":\"Pool Tables\",\"description_text\":\"Pool tables are a must for successful bars. We offer quarter pool machines that will keep your customers excited and in your location for hours.\",\"image_size\":{\"unit\":\"%\",\"size\":53,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a75e86d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e62ae8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/touch-tunes-717.jpg\",\"id\":4459},\"title_text\":\"Touch Tunes\",\"description_text\":\"System Amusement proudly provides the Touch Tunes music system, that will bring the entertainment in your location to a whole new level!\",\"image_space\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"f751212\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ac6cdef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.32.35-PM.png\",\"id\":4372},\"title_text\":\"Juke Boxes\",\"description_text\":\"These have been a classic for literally decades. System Amusement carries the highest tech juke boxes in the industry. Contact us today to order yours.\",\"image_size\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"56a3fd32\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFD500FC\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65346727\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2dad7100\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our 50+ Years of Dedication to our Clients!\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#00BCFF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_typography_font_weight\":\"400\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1b770690\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"254dc8ea\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"7ba82c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3137a63e\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F00000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"5e436bbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a88bea1\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"716a6f28\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5993e11b\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"452077d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"53078710\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5793,4465,'_wp_page_template','default'),(5794,4465,'_elementor_edit_mode','builder'),(5795,4465,'_elementor_template_type','wp-page'),(5796,4465,'_elementor_version','3.2.2'),(5797,4465,'_elementor_data','[{\"id\":\"21b714b5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"76\",\"right\":0,\"bottom\":\"68\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"69e72f28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2703b0d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"sub_title_color\":\"#0e0e0e\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"76dfc09b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. <\\/p><p style=\\\"text-align: center;\\\"><strong>Call now: <a href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/strong><\\/p>\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf63871\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\"},\"elements\":[{\"id\":\"f889722\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04edce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Pinball Machines\",\"description_text\":\"We offer some of the most cutting edge and popular pinball machines you can have in your location. \",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a1da2cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"77e1090\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/127abec3ea6540c295af41d2eead0221.jpeg\",\"id\":4371},\"title_text\":\"ATM Machines\",\"description_text\":\"This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!\",\"image_size\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"bb2e693\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7efb4e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.43.33-PM.png\",\"id\":4383},\"title_text\":\"Ski Ball\",\"description_text\":\"Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.\",\"image_size\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"d279aa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"78f809c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-tee.jpeg\",\"id\":4121},\"title_text\":\"Games\",\"description_text\":\"We have the most poplur bar games of all time like Buck Hunter and Golden Tee Golf. Get your location setup with these modern classics.\",\"image_size\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e4245be\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\"},\"elements\":[{\"id\":\"0b46440\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2b45973\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/darts.jpeg\",\"id\":4364},\"title_text\":\"Dart Boards\",\"description_text\":\"System Amusement offers the best dart boards such as the Arachnid Bullshooter. Dart boards provide a classic game that everyone loves, yet our cutting edge equipment gives a modern and interactive twist.\",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"1f6ffc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"13da9a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/pantherhighlandmaplefullbody.png\",\"id\":4122},\"title_text\":\"Pool Tables\",\"description_text\":\"Pool tables are a must for successful bars. We offer quarter pool machines that will keep your customers excited and in your location for hours.\",\"image_size\":{\"unit\":\"%\",\"size\":53,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a75e86d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e62ae8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/touch-tunes-717.jpg\",\"id\":4459},\"title_text\":\"Touch Tunes\",\"description_text\":\"System Amusement proudly provides the Touch Tunes music system, that will bring the entertainment in your location to a whole new level!\",\"image_space\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"f751212\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ac6cdef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.32.35-PM.png\",\"id\":4372},\"title_text\":\"Juke Boxes\",\"description_text\":\"These have been a classic for literally decades. System Amusement carries the highest tech juke boxes in the industry. Contact us today to order yours.\",\"image_size\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false}]'),(5810,4468,'_wp_page_template','default'),(5811,4468,'_elementor_edit_mode','builder'),(5812,4468,'_elementor_template_type','wp-page'),(5813,4468,'_elementor_version','3.2.2'),(5814,4468,'_elementor_data','[{\"id\":\"21b714b5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"76\",\"right\":0,\"bottom\":\"68\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"69e72f28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2703b0d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"sub_title_color\":\"#0e0e0e\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"76dfc09b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. <\\/p><p style=\\\"text-align: center;\\\"><strong>Call now: <a href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/strong><\\/p>\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf63871\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\"},\"elements\":[{\"id\":\"f889722\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04edce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Pinball Machines\",\"description_text\":\"We offer some of the most cutting edge and popular pinball machines you can have in your location. \",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a1da2cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"77e1090\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/127abec3ea6540c295af41d2eead0221.jpeg\",\"id\":4371},\"title_text\":\"ATM Machines\",\"description_text\":\"This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!\",\"image_size\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"bb2e693\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7efb4e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.43.33-PM.png\",\"id\":4383},\"title_text\":\"Ski Ball\",\"description_text\":\"Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.\",\"image_size\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"d279aa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"78f809c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-tee.jpeg\",\"id\":4121},\"title_text\":\"Games\",\"description_text\":\"We have the most poplur bar games of all time like Buck Hunter and Golden Tee Golf. Get your location setup with these modern classics.\",\"image_size\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e4245be\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\"},\"elements\":[{\"id\":\"0b46440\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2b45973\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/darts.jpeg\",\"id\":4364},\"title_text\":\"Dart Boards\",\"description_text\":\"System Amusement offers the best dart boards such as the Arachnid Bullshooter. Dart boards provide a classic game that everyone loves, yet our cutting edge equipment gives a modern and interactive twist.\",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"1f6ffc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"13da9a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/pantherhighlandmaplefullbody.png\",\"id\":4122},\"title_text\":\"Pool Tables\",\"description_text\":\"Pool tables are a must for successful bars. We offer quarter pool machines that will keep your customers excited and in your location for hours.\",\"image_size\":{\"unit\":\"%\",\"size\":53,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a75e86d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e62ae8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/touch-tunes-717.jpg\",\"id\":4459},\"title_text\":\"Touch Tunes\",\"description_text\":\"System Amusement proudly provides the Touch Tunes music system, that will bring the entertainment in your location to a whole new level!\",\"image_space\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"f751212\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ac6cdef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.32.35-PM.png\",\"id\":4372},\"title_text\":\"Juke Boxes\",\"description_text\":\"These have been a classic for literally decades. System Amusement carries the highest tech juke boxes in the industry. Contact us today to order yours.\",\"image_size\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"56a3fd32\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFD500FC\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65346727\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2dad7100\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our 50+ Years of Dedication to our Clients!\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#00BCFF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_typography_font_weight\":\"400\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1b770690\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"254dc8ea\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"7ba82c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3137a63e\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F00000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"5e436bbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a88bea1\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"716a6f28\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5993e11b\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"452077d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"53078710\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5820,4470,'_wp_page_template','default'),(5821,4470,'_elementor_edit_mode','builder'),(5822,4470,'_elementor_template_type','wp-page'),(5823,4470,'_elementor_version','3.2.2'),(5824,4470,'_elementor_data','[{\"id\":\"21b714b5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"76\",\"right\":0,\"bottom\":\"68\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"69e72f28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2703b0d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"sub_title_color\":\"#0e0e0e\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"76dfc09b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. <\\/p><p style=\\\"text-align: center;\\\"><strong>Call now: <a href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/strong><\\/p>\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf63871\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"f889722\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04edce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Pinball Machines\",\"description_text\":\"We offer some of the most cutting edge and popular pinball machines you can have in your location. \",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a1da2cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"77e1090\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/127abec3ea6540c295af41d2eead0221.jpeg\",\"id\":4371},\"title_text\":\"ATM Machines\",\"description_text\":\"This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!\",\"image_size\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"bb2e693\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7efb4e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.43.33-PM.png\",\"id\":4383},\"title_text\":\"Ski Ball\",\"description_text\":\"Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.\",\"image_size\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"d279aa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"78f809c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-tee.jpeg\",\"id\":4121},\"title_text\":\"Games\",\"description_text\":\"We have the most poplur bar games of all time like Buck Hunter and Golden Tee Golf. Get your location setup with these modern classics.\",\"image_size\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e4245be\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"0b46440\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2b45973\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/darts.jpeg\",\"id\":4364},\"title_text\":\"Dart Boards\",\"description_text\":\"System Amusement offers the best dart boards such as the Arachnid Bullshooter. Dart boards provide a classic game that everyone loves, yet our cutting edge equipment gives a modern and interactive twist.\",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"1f6ffc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"13da9a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/pantherhighlandmaplefullbody.png\",\"id\":4122},\"title_text\":\"Pool Tables\",\"description_text\":\"Pool tables are a must for successful bars. We offer quarter pool machines that will keep your customers excited and in your location for hours.\",\"image_size\":{\"unit\":\"%\",\"size\":53,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a75e86d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e62ae8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/touch-tunes-717.jpg\",\"id\":4459},\"title_text\":\"Touch Tunes\",\"description_text\":\"System Amusement proudly provides the Touch Tunes music system, that will bring the entertainment in your location to a whole new level!\",\"image_space\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"f751212\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ac6cdef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.32.35-PM.png\",\"id\":4372},\"title_text\":\"Juke Boxes\",\"description_text\":\"These have been a classic for literally decades. System Amusement carries the highest tech juke boxes in the industry. Contact us today to order yours.\",\"image_size\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"56a3fd32\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFD500FC\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65346727\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2dad7100\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our 50+ Years of Dedication to our Clients!\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#00BCFF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_typography_font_weight\":\"400\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1b770690\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"254dc8ea\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"7ba82c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3137a63e\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F00000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"5e436bbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a88bea1\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"716a6f28\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5993e11b\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"452077d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"53078710\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1d3cff3b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"244e1256\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"2237d8e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"fae14ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1b779718\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"58bb2ff8\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5470fc0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"56713e08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5815,4469,'_wp_page_template','default'),(5816,4469,'_elementor_edit_mode','builder'),(5817,4469,'_elementor_template_type','wp-page'),(5818,4469,'_elementor_version','3.2.2'),(5819,4469,'_elementor_data','[{\"id\":\"21b714b5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"76\",\"right\":0,\"bottom\":\"68\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"69e72f28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2703b0d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"sub_title_color\":\"#0e0e0e\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"76dfc09b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. <\\/p><p style=\\\"text-align: center;\\\"><strong>Call now: <a href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/strong><\\/p>\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf63871\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\"},\"elements\":[{\"id\":\"f889722\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04edce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Pinball Machines\",\"description_text\":\"We offer some of the most cutting edge and popular pinball machines you can have in your location. \",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a1da2cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"77e1090\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/127abec3ea6540c295af41d2eead0221.jpeg\",\"id\":4371},\"title_text\":\"ATM Machines\",\"description_text\":\"This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!\",\"image_size\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"bb2e693\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7efb4e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.43.33-PM.png\",\"id\":4383},\"title_text\":\"Ski Ball\",\"description_text\":\"Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.\",\"image_size\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"d279aa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"78f809c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-tee.jpeg\",\"id\":4121},\"title_text\":\"Games\",\"description_text\":\"We have the most poplur bar games of all time like Buck Hunter and Golden Tee Golf. Get your location setup with these modern classics.\",\"image_size\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e4245be\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\"},\"elements\":[{\"id\":\"0b46440\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2b45973\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/darts.jpeg\",\"id\":4364},\"title_text\":\"Dart Boards\",\"description_text\":\"System Amusement offers the best dart boards such as the Arachnid Bullshooter. Dart boards provide a classic game that everyone loves, yet our cutting edge equipment gives a modern and interactive twist.\",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"1f6ffc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"13da9a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/pantherhighlandmaplefullbody.png\",\"id\":4122},\"title_text\":\"Pool Tables\",\"description_text\":\"Pool tables are a must for successful bars. We offer quarter pool machines that will keep your customers excited and in your location for hours.\",\"image_size\":{\"unit\":\"%\",\"size\":53,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a75e86d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e62ae8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/touch-tunes-717.jpg\",\"id\":4459},\"title_text\":\"Touch Tunes\",\"description_text\":\"System Amusement proudly provides the Touch Tunes music system, that will bring the entertainment in your location to a whole new level!\",\"image_space\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"f751212\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ac6cdef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.32.35-PM.png\",\"id\":4372},\"title_text\":\"Juke Boxes\",\"description_text\":\"These have been a classic for literally decades. System Amusement carries the highest tech juke boxes in the industry. Contact us today to order yours.\",\"image_size\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"56a3fd32\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFD500FC\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65346727\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2dad7100\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our 50+ Years of Dedication to our Clients!\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#00BCFF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_typography_font_weight\":\"400\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1b770690\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"254dc8ea\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"7ba82c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3137a63e\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F00000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"5e436bbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a88bea1\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"716a6f28\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5993e11b\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"452077d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"53078710\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5829,4472,'_wp_page_template','default'),(5830,4472,'_elementor_edit_mode','builder'),(5831,4472,'_elementor_template_type','wp-page'),(5832,4472,'_elementor_version','3.2.2'),(5833,4472,'_elementor_data','[{\"id\":\"21b714b5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"76\",\"right\":0,\"bottom\":\"68\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"69e72f28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2703b0d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"sub_title_color\":\"#0e0e0e\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"76dfc09b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. <\\/p><p style=\\\"text-align: center;\\\"><strong>Call now: <a href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/strong><\\/p>\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf63871\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"f889722\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04edce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Pinball Machines\",\"description_text\":\"We offer some of the most cutting edge and popular pinball machines you can have in your location. \",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a1da2cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"77e1090\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/127abec3ea6540c295af41d2eead0221.jpeg\",\"id\":4371},\"title_text\":\"ATM Machines\",\"description_text\":\"This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!\",\"image_size\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"bb2e693\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7efb4e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.43.33-PM.png\",\"id\":4383},\"title_text\":\"Ski Ball\",\"description_text\":\"Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.\",\"image_size\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"d279aa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"78f809c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-tee.jpeg\",\"id\":4121},\"title_text\":\"Games\",\"description_text\":\"We have the most poplur bar games of all time like Buck Hunter and Golden Tee Golf. Get your location setup with these modern classics.\",\"image_size\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e4245be\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"0b46440\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2b45973\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/darts.jpeg\",\"id\":4364},\"title_text\":\"Dart Boards\",\"description_text\":\"System Amusement offers the best dart boards such as the Arachnid Bullshooter. Dart boards provide a classic game that everyone loves, yet our cutting edge equipment gives a modern and interactive twist.\",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"1f6ffc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"13da9a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/pantherhighlandmaplefullbody.png\",\"id\":4122},\"title_text\":\"Pool Tables\",\"description_text\":\"Pool tables are a must for successful bars. We offer quarter pool machines that will keep your customers excited and in your location for hours.\",\"image_size\":{\"unit\":\"%\",\"size\":53,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a75e86d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e62ae8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/touch-tunes-717.jpg\",\"id\":4459},\"title_text\":\"Touch Tunes\",\"description_text\":\"System Amusement proudly provides the Touch Tunes music system, that will bring the entertainment in your location to a whole new level!\",\"image_space\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"f751212\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ac6cdef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.32.35-PM.png\",\"id\":4372},\"title_text\":\"Juke Boxes\",\"description_text\":\"These have been a classic for literally decades. System Amusement carries the highest tech juke boxes in the industry. Contact us today to order yours.\",\"image_size\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"56a3fd32\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFD500FC\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65346727\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2dad7100\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our 50+ Years of Dedication to our Clients!\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#00BCFF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_typography_font_weight\":\"400\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1b770690\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"254dc8ea\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"7ba82c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3137a63e\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F00000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"5e436bbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a88bea1\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"716a6f28\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5993e11b\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"452077d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"53078710\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1d3cff3b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"244e1256\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"2237d8e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"fae14ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1b779718\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"58bb2ff8\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5470fc0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"56713e08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5827,4471,'_wp_attached_file','2021/04/Screen-Shot-2021-04-28-at-4.11.46-PM.png'),(5828,4471,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:578;s:6:\"height\";i:582;s:4:\"file\";s:48:\"2021/04/Screen-Shot-2021-04-28-at-4.11.46-PM.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-28-at-4.11.46-PM-298x300.png\";s:5:\"width\";i:298;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-28-at-4.11.46-PM-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-28-at-4.11.46-PM-578x313.png\";s:5:\"width\";i:578;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-28-at-4.11.46-PM-578x450.png\";s:5:\"width\";i:578;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-28-at-4.11.46-PM-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-28-at-4.11.46-PM-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-28-at-4.11.46-PM-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-28-at-4.11.46-PM-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5834,4472,'_elementor_css','a:6:{s:4:\"time\";i:1619651478;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:1:{i:0;s:8:\"material\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(5835,4473,'_wp_page_template','default'),(5836,4473,'_elementor_edit_mode','builder'),(5837,4473,'_elementor_template_type','wp-page'),(5838,4473,'_elementor_version','3.2.2'),(5839,4473,'_elementor_data','[{\"id\":\"21b714b5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"76\",\"right\":0,\"bottom\":\"68\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"69e72f28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2703b0d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"sub_title_color\":\"#0e0e0e\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"76dfc09b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. <\\/p><p style=\\\"text-align: center;\\\"><strong>Call now: <a href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/strong><\\/p>\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf63871\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"f889722\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04edce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Pinball Machines\",\"description_text\":\"We offer some of the most cutting edge and popular pinball machines you can have in your location. \",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a1da2cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"77e1090\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/127abec3ea6540c295af41d2eead0221.jpeg\",\"id\":4371},\"title_text\":\"ATM Machines\",\"description_text\":\"This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!\",\"image_size\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"bb2e693\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7efb4e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.43.33-PM.png\",\"id\":4383},\"title_text\":\"Ski Ball\",\"description_text\":\"Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.\",\"image_size\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"d279aa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"78f809c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-tee.jpeg\",\"id\":4121},\"title_text\":\"Games\",\"description_text\":\"We have the most poplur bar games of all time like Buck Hunter and Golden Tee Golf. Get your location setup with these modern classics.\",\"image_size\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e4245be\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"0b46440\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2b45973\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/darts.jpeg\",\"id\":4364},\"title_text\":\"Dart Boards\",\"description_text\":\"System Amusement offers the best dart boards such as the Arachnid Bullshooter. Dart boards provide a classic game that everyone loves, yet our cutting edge equipment gives a modern and interactive twist.\",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"1f6ffc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"13da9a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/pantherhighlandmaplefullbody.png\",\"id\":4122},\"title_text\":\"Pool Tables\",\"description_text\":\"Pool tables are a must for successful bars. We offer quarter pool machines that will keep your customers excited and in your location for hours.\",\"image_size\":{\"unit\":\"%\",\"size\":53,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a75e86d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e62ae8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/touch-tunes-717.jpg\",\"id\":4459},\"title_text\":\"Touch Tunes\",\"description_text\":\"System Amusement proudly provides the Touch Tunes music system, that will bring the entertainment in your location to a whole new level!\",\"image_space\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"f751212\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ac6cdef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.32.35-PM.png\",\"id\":4372},\"title_text\":\"Juke Boxes\",\"description_text\":\"These have been a classic for literally decades. System Amusement carries the highest tech juke boxes in the industry. Contact us today to order yours.\",\"image_size\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"56a3fd32\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFD500FC\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65346727\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2dad7100\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our 50+ Years of Dedication to our Clients!\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#00BCFF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_typography_font_weight\":\"400\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1b770690\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"254dc8ea\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"7ba82c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3137a63e\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F00000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"5e436bbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a88bea1\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"716a6f28\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5993e11b\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"452077d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"53078710\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1d3cff3b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"244e1256\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"2237d8e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"fae14ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1b779718\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"58bb2ff8\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5470fc0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"56713e08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5840,4473,'_elementor_css','a:6:{s:4:\"time\";i:1619651478;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:1:{i:0;s:8:\"material\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(5841,4474,'_wp_page_template','default'),(5842,4474,'_elementor_edit_mode','builder'),(5843,4474,'_elementor_template_type','wp-page'),(5844,4474,'_elementor_version','3.2.2'),(5845,4474,'_elementor_data','[{\"id\":\"21b714b5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"76\",\"right\":0,\"bottom\":\"68\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"69e72f28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2703b0d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"sub_title_color\":\"#0e0e0e\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"76dfc09b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. <\\/p><p style=\\\"text-align: center;\\\"><strong>Call now: <a href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/strong><\\/p>\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf63871\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"f889722\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04edce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Pinball Machines\",\"description_text\":\"We offer some of the most cutting edge and popular pinball machines you can have in your location. \",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a1da2cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"77e1090\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/127abec3ea6540c295af41d2eead0221.jpeg\",\"id\":4371},\"title_text\":\"ATM Machines\",\"description_text\":\"This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!\",\"image_size\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"bb2e693\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7efb4e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.43.33-PM.png\",\"id\":4383},\"title_text\":\"Ski Ball\",\"description_text\":\"Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.\",\"image_size\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"d279aa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"78f809c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-tee.jpeg\",\"id\":4121},\"title_text\":\"Games\",\"description_text\":\"We have the most poplur bar games of all time like Buck Hunter and Golden Tee Golf. Get your location setup with these modern classics.\",\"image_size\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e4245be\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"0b46440\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2b45973\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/darts.jpeg\",\"id\":4364},\"title_text\":\"Dart Boards\",\"description_text\":\"System Amusement offers the best dart boards such as the Arachnid Bullshooter. Dart boards provide a classic game that everyone loves, yet our cutting edge equipment gives a modern and interactive twist.\",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"1f6ffc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"13da9a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-28-at-4.11.46-PM.png\",\"id\":4471},\"title_text\":\"Pool Tables\",\"description_text\":\"Pool tables are a must for successful bars. We offer quarter pool machines that will keep your customers excited and in your location for hours.\",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a75e86d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e62ae8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/touch-tunes-717.jpg\",\"id\":4459},\"title_text\":\"Touch Tunes\",\"description_text\":\"System Amusement proudly provides the Touch Tunes music system, that will bring the entertainment in your location to a whole new level!\",\"image_space\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"f751212\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ac6cdef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.32.35-PM.png\",\"id\":4372},\"title_text\":\"Juke Boxes\",\"description_text\":\"These have been a classic for literally decades. System Amusement carries the highest tech juke boxes in the industry. Contact us today to order yours.\",\"image_size\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"56a3fd32\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFD500FC\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65346727\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2dad7100\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our 50+ Years of Dedication to our Clients!\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#00BCFF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_typography_font_weight\":\"400\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1b770690\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"254dc8ea\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"7ba82c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3137a63e\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F00000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"5e436bbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a88bea1\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"716a6f28\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5993e11b\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"452077d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"53078710\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1d3cff3b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"244e1256\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"2237d8e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"fae14ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1b779718\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"58bb2ff8\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5470fc0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"56713e08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5846,4474,'_elementor_css','a:6:{s:4:\"time\";i:1619651478;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:1:{i:0;s:8:\"material\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(5868,4479,'_wp_page_template','default'),(5869,4479,'_elementor_edit_mode','builder'),(5870,4479,'_elementor_template_type','wp-page'),(5871,4479,'_elementor_version','3.2.2'),(5872,4479,'_elementor_data','[{\"id\":\"21b714b5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"76\",\"right\":0,\"bottom\":\"68\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"69e72f28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2703b0d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"sub_title_color\":\"#0e0e0e\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"76dfc09b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. <\\/p><p style=\\\"text-align: center;\\\"><strong>Call now: <a href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/strong><\\/p>\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf63871\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"f889722\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04edce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Pinball Machines\",\"description_text\":\"We offer some of the most cutting edge and popular pinball machines you can have in your location. \",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a1da2cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"77e1090\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/127abec3ea6540c295af41d2eead0221.jpeg\",\"id\":4371},\"title_text\":\"ATM Machines\",\"description_text\":\"This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!\",\"image_size\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"bb2e693\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7efb4e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.43.33-PM.png\",\"id\":4383},\"title_text\":\"Ski Ball\",\"description_text\":\"Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.\",\"image_size\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"d279aa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"78f809c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-tee.jpeg\",\"id\":4121},\"title_text\":\"Games\",\"description_text\":\"We have the most poplur bar games of all time like Buck Hunter and Golden Tee Golf. Get your location setup with these modern classics.\",\"image_size\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e4245be\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"0b46440\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2b45973\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/darts.jpeg\",\"id\":4364},\"title_text\":\"Dart Boards\",\"description_text\":\"System Amusement offers the best dart boards such as the Arachnid Bullshooter. Dart boards provide a classic game that everyone loves, yet our cutting edge equipment gives a modern and interactive twist.\",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"1f6ffc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"13da9a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-28-at-4.11.46-PM.png\",\"id\":4471},\"title_text\":\"Pool Tables\",\"description_text\":\"Pool tables are a must for successful bars. We offer quarter pool machines that will keep your customers excited and in your location for hours.\",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a75e86d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e62ae8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/touch-tunes-717.jpg\",\"id\":4459},\"title_text\":\"Touch Tunes\",\"description_text\":\"System Amusement proudly provides the Touch Tunes music system, that will bring the entertainment in your location to a whole new level!\",\"image_space\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"f751212\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ac6cdef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.32.35-PM.png\",\"id\":4372},\"title_text\":\"Juke Boxes\",\"description_text\":\"These have been a classic for literally decades. System Amusement carries the highest tech juke boxes in the industry. Contact us today to order yours.\",\"image_size\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"56a3fd32\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFD500FC\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65346727\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2dad7100\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our 50+ Years of Dedication to our Clients!\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#00BCFF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_typography_font_weight\":\"400\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1b770690\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"254dc8ea\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"7ba82c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3137a63e\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F00000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"5e436bbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a88bea1\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"716a6f28\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5993e11b\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"452077d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"53078710\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1d3cff3b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"244e1256\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"2237d8e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"fae14ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1b779718\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"58bb2ff8\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5470fc0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"56713e08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5848,4475,'_elementor_edit_mode','builder'),(5849,4475,'_elementor_template_type','section'),(5850,4475,'_elementor_version','3.2.2'),(5851,4476,'_elementor_edit_mode','builder'),(5852,4476,'_elementor_template_type','section'),(5853,4476,'_elementor_version','3.2.2'),(5854,4475,'_wp_page_template','default'),(5855,4475,'_elementor_data','[{\"id\":\"74cb34a9\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6946bb79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"39bf3942\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact System Amusement Today\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"56a502b9\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/211037967555058\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"33bdee49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"47f60c0c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Phone:\",\"description_text\":\"509-326-1551 \",\"list\":[],\"_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"191847c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"title_text\":\"Email:\",\"description_text\":\"systemamusement@comcast.net\",\"list\":[],\"_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"3293547b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"title_text\":\"Hours:\",\"description_text\":\"Mon - Sat: 8 am - 5 pm, <br>Sunday: CLOSED\",\"list\":[],\"_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"20f9f05f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5856,4477,'_elementor_edit_mode','builder'),(5857,4477,'_elementor_template_type','section'),(5858,4477,'_elementor_version','3.2.2'),(5859,4477,'_wp_page_template','default'),(5860,4477,'_elementor_data','[{\"id\":\"74cb34a9\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6946bb79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"39bf3942\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact System Amusement Today\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"56a502b9\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/211037967555058\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"33bdee49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"47f60c0c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Phone:\",\"description_text\":\"509-326-1551 \",\"list\":[],\"_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"191847c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"title_text\":\"Email:\",\"description_text\":\"systemamusement@comcast.net\",\"list\":[],\"_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"3293547b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"title_text\":\"Hours:\",\"description_text\":\"Mon - Sat: 8 am - 5 pm, <br>Sunday: CLOSED\",\"list\":[],\"_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"20f9f05f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5861,4475,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:18:\"title_space_bottom\";i:1;s:27:\"title_typography_typography\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:28:\"title_typography_line_height\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;s:10:\"text_align\";i:1;s:26:\"title_typography_font_size\";i:1;}s:17:\"sub_title_section\";a:1:{s:22:\"sub_title_space_bottom\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:4:\"html\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:4:\"html\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:3;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}}'),(5878,4481,'_wp_page_template','default'),(5879,4481,'_elementor_edit_mode','builder'),(5880,4481,'_elementor_template_type','wp-page'),(5881,4481,'_elementor_version','3.2.2'),(5882,4481,'_elementor_data','[{\"id\":\"21b714b5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"76\",\"right\":0,\"bottom\":\"68\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"69e72f28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2703b0d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"sub_title_color\":\"#0e0e0e\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"76dfc09b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. <\\/p><p style=\\\"text-align: center;\\\"><strong>Call now: <a href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/strong><\\/p>\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf63871\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"f889722\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04edce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Pinball Machines\",\"description_text\":\"We offer some of the most cutting edge and popular pinball machines you can have in your location. \",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a1da2cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"77e1090\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/127abec3ea6540c295af41d2eead0221.jpeg\",\"id\":4371},\"title_text\":\"ATM Machines\",\"description_text\":\"This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!\",\"image_size\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"bb2e693\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7efb4e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.43.33-PM.png\",\"id\":4383},\"title_text\":\"Ski Ball\",\"description_text\":\"Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.\",\"image_size\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"d279aa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"78f809c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-tee.jpeg\",\"id\":4121},\"title_text\":\"Games\",\"description_text\":\"We have the most poplur bar games of all time like Buck Hunter and Golden Tee Golf. Get your location setup with these modern classics.\",\"image_size\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e4245be\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"0b46440\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2b45973\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/darts.jpeg\",\"id\":4364},\"title_text\":\"Dart Boards\",\"description_text\":\"System Amusement offers the best dart boards such as the Arachnid Bullshooter. Dart boards provide a classic game that everyone loves, yet our cutting edge equipment gives a modern and interactive twist.\",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"1f6ffc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"13da9a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-28-at-4.11.46-PM.png\",\"id\":4471},\"title_text\":\"Pool Tables\",\"description_text\":\"Pool tables are a must for successful bars. We offer quarter pool machines that will keep your customers excited and in your location for hours.\",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a75e86d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e62ae8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/touch-tunes-717.jpg\",\"id\":4459},\"title_text\":\"Touch Tunes\",\"description_text\":\"System Amusement proudly provides the Touch Tunes music system, that will bring the entertainment in your location to a whole new level!\",\"image_space\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"f751212\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ac6cdef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.32.35-PM.png\",\"id\":4372},\"title_text\":\"Juke Boxes\",\"description_text\":\"These have been a classic for literally decades. System Amusement carries the highest tech juke boxes in the industry. Contact us today to order yours.\",\"image_size\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a79ccc9\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#EDEDED\"},\"elements\":[{\"id\":\"2c39a3fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28b93cce\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact System Amusement Today\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c01f84d\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/211037967555058\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"69fe256c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"723d79e7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Phone:\",\"description_text\":\"509-326-1551 \",\"list\":[],\"_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"92f313d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"title_text\":\"Email:\",\"description_text\":\"systemamusement@comcast.net\",\"list\":[],\"_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"24d41eb7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"title_text\":\"Hours:\",\"description_text\":\"Mon - Sat: 8 am - 5 pm, <br>Sunday: CLOSED\",\"list\":[],\"_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"6597b9af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"56a3fd32\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFD500FC\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65346727\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2dad7100\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our 50+ Years of Dedication to our Clients!\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#00BCFF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_typography_font_weight\":\"400\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1b770690\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"254dc8ea\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"7ba82c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3137a63e\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F00000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"5e436bbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a88bea1\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"716a6f28\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5993e11b\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"452077d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"53078710\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1d3cff3b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"244e1256\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"2237d8e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"fae14ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1b779718\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"58bb2ff8\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5470fc0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"56713e08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5873,4480,'_wp_page_template','default'),(5874,4480,'_elementor_edit_mode','builder'),(5875,4480,'_elementor_template_type','wp-page'),(5876,4480,'_elementor_version','3.2.2'),(5877,4480,'_elementor_data','[{\"id\":\"21b714b5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"76\",\"right\":0,\"bottom\":\"68\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"69e72f28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2703b0d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"sub_title_color\":\"#0e0e0e\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"76dfc09b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. <\\/p><p style=\\\"text-align: center;\\\"><strong>Call now: <a href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/strong><\\/p>\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf63871\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"f889722\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04edce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Pinball Machines\",\"description_text\":\"We offer some of the most cutting edge and popular pinball machines you can have in your location. \",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a1da2cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"77e1090\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/127abec3ea6540c295af41d2eead0221.jpeg\",\"id\":4371},\"title_text\":\"ATM Machines\",\"description_text\":\"This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!\",\"image_size\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"bb2e693\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7efb4e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.43.33-PM.png\",\"id\":4383},\"title_text\":\"Ski Ball\",\"description_text\":\"Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.\",\"image_size\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"d279aa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"78f809c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-tee.jpeg\",\"id\":4121},\"title_text\":\"Games\",\"description_text\":\"We have the most poplur bar games of all time like Buck Hunter and Golden Tee Golf. Get your location setup with these modern classics.\",\"image_size\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e4245be\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"0b46440\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2b45973\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/darts.jpeg\",\"id\":4364},\"title_text\":\"Dart Boards\",\"description_text\":\"System Amusement offers the best dart boards such as the Arachnid Bullshooter. Dart boards provide a classic game that everyone loves, yet our cutting edge equipment gives a modern and interactive twist.\",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"1f6ffc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"13da9a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-28-at-4.11.46-PM.png\",\"id\":4471},\"title_text\":\"Pool Tables\",\"description_text\":\"Pool tables are a must for successful bars. We offer quarter pool machines that will keep your customers excited and in your location for hours.\",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a75e86d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e62ae8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/touch-tunes-717.jpg\",\"id\":4459},\"title_text\":\"Touch Tunes\",\"description_text\":\"System Amusement proudly provides the Touch Tunes music system, that will bring the entertainment in your location to a whole new level!\",\"image_space\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"f751212\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ac6cdef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.32.35-PM.png\",\"id\":4372},\"title_text\":\"Juke Boxes\",\"description_text\":\"These have been a classic for literally decades. System Amusement carries the highest tech juke boxes in the industry. Contact us today to order yours.\",\"image_size\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"56a3fd32\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFD500FC\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65346727\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2dad7100\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our 50+ Years of Dedication to our Clients!\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#00BCFF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_typography_font_weight\":\"400\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1b770690\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"254dc8ea\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"7ba82c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3137a63e\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F00000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"5e436bbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a88bea1\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"716a6f28\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5993e11b\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"452077d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"53078710\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1d3cff3b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"244e1256\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"2237d8e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"fae14ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1b779718\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"58bb2ff8\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5470fc0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"56713e08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5884,4482,'_wp_page_template','default'),(5885,4482,'_elementor_edit_mode','builder'),(5886,4482,'_elementor_template_type','wp-page'),(5887,4482,'_elementor_version','3.2.2'),(5888,4482,'_elementor_data','[{\"id\":\"21b714b5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"76\",\"right\":0,\"bottom\":\"68\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"69e72f28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2703b0d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"sub_title_color\":\"#0e0e0e\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"76dfc09b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. <\\/p><p style=\\\"text-align: center;\\\"><strong>Call now: <a href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/strong><\\/p>\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf63871\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"f889722\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04edce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Pinball Machines\",\"description_text\":\"We offer some of the most cutting edge and popular pinball machines you can have in your location. \",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a1da2cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"77e1090\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/127abec3ea6540c295af41d2eead0221.jpeg\",\"id\":4371},\"title_text\":\"ATM Machines\",\"description_text\":\"This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!\",\"image_size\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"bb2e693\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7efb4e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.43.33-PM.png\",\"id\":4383},\"title_text\":\"Ski Ball\",\"description_text\":\"Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.\",\"image_size\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"d279aa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"78f809c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-tee.jpeg\",\"id\":4121},\"title_text\":\"Games\",\"description_text\":\"We have the most poplur bar games of all time like Buck Hunter and Golden Tee Golf. Get your location setup with these modern classics.\",\"image_size\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e4245be\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"0b46440\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2b45973\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/darts.jpeg\",\"id\":4364},\"title_text\":\"Dart Boards\",\"description_text\":\"System Amusement offers the best dart boards such as the Arachnid Bullshooter. Dart boards provide a classic game that everyone loves, yet our cutting edge equipment gives a modern and interactive twist.\",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"1f6ffc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"13da9a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-28-at-4.11.46-PM.png\",\"id\":4471},\"title_text\":\"Pool Tables\",\"description_text\":\"Pool tables are a must for successful bars. We offer quarter pool machines that will keep your customers excited and in your location for hours.\",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a75e86d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e62ae8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/touch-tunes-717.jpg\",\"id\":4459},\"title_text\":\"Touch Tunes\",\"description_text\":\"System Amusement proudly provides the Touch Tunes music system, that will bring the entertainment in your location to a whole new level!\",\"image_space\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"f751212\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ac6cdef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.32.35-PM.png\",\"id\":4372},\"title_text\":\"Juke Boxes\",\"description_text\":\"These have been a classic for literally decades. System Amusement carries the highest tech juke boxes in the industry. Contact us today to order yours.\",\"image_size\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a79ccc9\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#EDEDED\"},\"elements\":[{\"id\":\"2c39a3fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28b93cce\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact System Amusement Today\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c01f84d\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/211037967555058\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"69fe256c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"723d79e7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Phone:\",\"description_text\":\"509-326-1551 \",\"list\":[],\"_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"92f313d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"title_text\":\"Email:\",\"description_text\":\"systemamusement@comcast.net\",\"list\":[],\"_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"24d41eb7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"title_text\":\"Hours:\",\"description_text\":\"Mon - Sat: 8 am - 5 pm, <br>Sunday: CLOSED\",\"list\":[],\"_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"6597b9af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"56a3fd32\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFD500FC\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65346727\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2dad7100\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our 50+ Years of Dedication to our Clients!\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#00BCFF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_typography_font_weight\":\"400\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1b770690\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"254dc8ea\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"7ba82c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3137a63e\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F00000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"5e436bbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a88bea1\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"716a6f28\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5993e11b\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"452077d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"53078710\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1d3cff3b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"244e1256\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"2237d8e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"fae14ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1b779718\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"58bb2ff8\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5470fc0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"56713e08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5889,4483,'_wp_page_template','default'),(5890,4483,'_elementor_edit_mode','builder'),(5891,4483,'_elementor_template_type','wp-page'),(5892,4483,'_elementor_version','3.2.2'),(5893,4483,'_elementor_data','[{\"id\":\"21b714b5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"76\",\"right\":0,\"bottom\":\"68\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"69e72f28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2703b0d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"sub_title_color\":\"#0e0e0e\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"76dfc09b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. <\\/p><p style=\\\"text-align: center;\\\"><strong>Call now: <a href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/strong><\\/p>\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf63871\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"f889722\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04edce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Pinball Machines\",\"description_text\":\"We offer some of the most cutting edge and popular pinball machines you can have in your location. \",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a1da2cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"77e1090\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/127abec3ea6540c295af41d2eead0221.jpeg\",\"id\":4371},\"title_text\":\"ATM Machines\",\"description_text\":\"This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!\",\"image_size\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"bb2e693\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7efb4e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.43.33-PM.png\",\"id\":4383},\"title_text\":\"Ski Ball\",\"description_text\":\"Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.\",\"image_size\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"d279aa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"78f809c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-tee.jpeg\",\"id\":4121},\"title_text\":\"Games\",\"description_text\":\"We have the most poplur bar games of all time like Buck Hunter and Golden Tee Golf. Get your location setup with these modern classics.\",\"image_size\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e4245be\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"0b46440\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2b45973\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/darts.jpeg\",\"id\":4364},\"title_text\":\"Dart Boards\",\"description_text\":\"System Amusement offers the best dart boards such as the Arachnid Bullshooter. Dart boards provide a classic game that everyone loves, yet our cutting edge equipment gives a modern and interactive twist.\",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"1f6ffc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"13da9a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-28-at-4.11.46-PM.png\",\"id\":4471},\"title_text\":\"Pool Tables\",\"description_text\":\"Pool tables are a must for successful bars. We offer quarter pool machines that will keep your customers excited and in your location for hours.\",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a75e86d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e62ae8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/touch-tunes-717.jpg\",\"id\":4459},\"title_text\":\"Touch Tunes\",\"description_text\":\"System Amusement proudly provides the Touch Tunes music system, that will bring the entertainment in your location to a whole new level!\",\"image_space\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"f751212\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ac6cdef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.32.35-PM.png\",\"id\":4372},\"title_text\":\"Juke Boxes\",\"description_text\":\"These have been a classic for literally decades. System Amusement carries the highest tech juke boxes in the industry. Contact us today to order yours.\",\"image_size\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a79ccc9\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#EDEDED\"},\"elements\":[{\"id\":\"2c39a3fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28b93cce\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact System Amusement Today\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c01f84d\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/211037967555058\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"69fe256c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"723d79e7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Phone:\",\"description_text\":\"509-326-1551 \",\"list\":[],\"_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"92f313d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"title_text\":\"Email:\",\"description_text\":\"systemamusement@comcast.net\",\"list\":[],\"_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"24d41eb7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"title_text\":\"Hours:\",\"description_text\":\"Mon - Sat: 8 am - 5 pm, <br>Sunday: CLOSED\",\"list\":[],\"_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"6597b9af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"56a3fd32\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFD500FC\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65346727\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2dad7100\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our 50+ Years of Dedication to our Clients!\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#00BCFF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_typography_font_weight\":\"400\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1b770690\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"254dc8ea\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"7ba82c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3137a63e\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F00000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"5e436bbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a88bea1\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"716a6f28\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5993e11b\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"452077d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"53078710\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1d3cff3b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"244e1256\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"2237d8e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"fae14ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1b779718\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"58bb2ff8\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5470fc0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"56713e08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5894,4484,'_wp_page_template','default'),(5895,4484,'_elementor_edit_mode','builder'),(5896,4484,'_elementor_template_type','wp-page'),(5897,4484,'_elementor_version','3.2.2'),(5898,4484,'_elementor_data','[{\"id\":\"21b714b5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"76\",\"right\":0,\"bottom\":\"68\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"69e72f28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2703b0d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"sub_title_color\":\"#0e0e0e\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"76dfc09b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. <\\/p><p style=\\\"text-align: center;\\\"><strong>Call now: <a href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/strong><\\/p>\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf63871\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"f889722\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04edce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Pinball Machines\",\"description_text\":\"We offer some of the most cutting edge and popular pinball machines you can have in your location. \",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a1da2cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"77e1090\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/127abec3ea6540c295af41d2eead0221.jpeg\",\"id\":4371},\"title_text\":\"ATM Machines\",\"description_text\":\"This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!\",\"image_size\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"bb2e693\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7efb4e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.43.33-PM.png\",\"id\":4383},\"title_text\":\"Ski Ball\",\"description_text\":\"Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.\",\"image_size\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"d279aa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"78f809c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-tee.jpeg\",\"id\":4121},\"title_text\":\"Games\",\"description_text\":\"We have the most poplur bar games of all time like Buck Hunter and Golden Tee Golf. Get your location setup with these modern classics.\",\"image_size\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e4245be\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"0b46440\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2b45973\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/darts.jpeg\",\"id\":4364},\"title_text\":\"Dart Boards\",\"description_text\":\"System Amusement offers the best dart boards such as the Arachnid Bullshooter. Dart boards provide a classic game that everyone loves, yet our cutting edge equipment gives a modern and interactive twist.\",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"1f6ffc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"13da9a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-28-at-4.11.46-PM.png\",\"id\":4471},\"title_text\":\"Pool Tables\",\"description_text\":\"Pool tables are a must for successful bars. We offer quarter pool machines that will keep your customers excited and in your location for hours.\",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a75e86d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e62ae8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/touch-tunes-717.jpg\",\"id\":4459},\"title_text\":\"Touch Tunes\",\"description_text\":\"System Amusement proudly provides the Touch Tunes music system, that will bring the entertainment in your location to a whole new level!\",\"image_space\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"f751212\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ac6cdef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.32.35-PM.png\",\"id\":4372},\"title_text\":\"Juke Boxes\",\"description_text\":\"These have been a classic for literally decades. System Amusement carries the highest tech juke boxes in the industry. Contact us today to order yours.\",\"image_size\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a79ccc9\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\"},\"elements\":[{\"id\":\"2c39a3fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28b93cce\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact System Amusement Today\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c01f84d\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/211037967555058\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"69fe256c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"723d79e7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Phone:\",\"description_text\":\"509-326-1551 \",\"list\":[],\"_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"92f313d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"title_text\":\"Email:\",\"description_text\":\"systemamusement@comcast.net\",\"list\":[],\"_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"24d41eb7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"title_text\":\"Hours:\",\"description_text\":\"Mon - Sat: 8 am - 5 pm, <br>Sunday: CLOSED\",\"list\":[],\"_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"6597b9af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"56a3fd32\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFD500FC\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65346727\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2dad7100\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our 50+ Years of Dedication to our Clients!\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#00BCFF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_typography_font_weight\":\"400\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1b770690\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"254dc8ea\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"7ba82c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3137a63e\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F00000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"5e436bbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a88bea1\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"716a6f28\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5993e11b\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"452077d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"53078710\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1d3cff3b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"244e1256\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"2237d8e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"fae14ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1b779718\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"58bb2ff8\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5470fc0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"56713e08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5955,4487,'_wp_page_template','default'),(5956,4487,'_elementor_edit_mode','builder'),(5957,4487,'_elementor_template_type','wp-page'),(5958,4487,'_elementor_version','3.2.2'),(5959,4487,'_elementor_data','[{\"id\":\"21b714b5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"76\",\"right\":0,\"bottom\":\"68\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"69e72f28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2703b0d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"sub_title_color\":\"#0e0e0e\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"76dfc09b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. <\\/p><p style=\\\"text-align: center;\\\"><strong>Call now: <a href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/strong><\\/p>\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf63871\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"f889722\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04edce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Pinball Machines\",\"description_text\":\"We offer some of the most cutting edge and popular pinball machines you can have in your location. \",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a1da2cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"77e1090\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/127abec3ea6540c295af41d2eead0221.jpeg\",\"id\":4371},\"title_text\":\"ATM Machines\",\"description_text\":\"This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!\",\"image_size\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"bb2e693\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7efb4e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.43.33-PM.png\",\"id\":4383},\"title_text\":\"Ski Ball\",\"description_text\":\"Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.\",\"image_size\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"d279aa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"78f809c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-tee.jpeg\",\"id\":4121},\"title_text\":\"Games\",\"description_text\":\"We have the most poplur bar games of all time like Buck Hunter and Golden Tee Golf. Get your location setup with these modern classics.\",\"image_size\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e4245be\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"0b46440\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2b45973\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/darts.jpeg\",\"id\":4364},\"title_text\":\"Dart Boards\",\"description_text\":\"System Amusement offers the best dart boards such as the Arachnid Bullshooter. Dart boards provide a classic game that everyone loves, yet our cutting edge equipment gives a modern and interactive twist.\",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"1f6ffc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"13da9a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-28-at-4.11.46-PM.png\",\"id\":4471},\"title_text\":\"Pool Tables\",\"description_text\":\"Pool tables are a must for successful bars. We offer quarter pool machines that will keep your customers excited and in your location for hours.\",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a75e86d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e62ae8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/touch-tunes-717.jpg\",\"id\":4459},\"title_text\":\"Touch Tunes\",\"description_text\":\"System Amusement proudly provides the Touch Tunes music system, that will bring the entertainment in your location to a whole new level!\",\"image_space\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"f751212\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ac6cdef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.32.35-PM.png\",\"id\":4372},\"title_text\":\"Juke Boxes\",\"description_text\":\"These have been a classic for literally decades. System Amusement carries the highest tech juke boxes in the industry. Contact us today to order yours.\",\"image_size\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a79ccc9\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\"},\"elements\":[{\"id\":\"2c39a3fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28b93cce\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact System Amusement Today\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c01f84d\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/211037967555058\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"69fe256c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"723d79e7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Phone:\",\"description_text\":\"509-326-1551 \",\"list\":[],\"_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"92f313d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"title_text\":\"Email:\",\"description_text\":\"systemamusement@comcast.net\",\"list\":[],\"_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"24d41eb7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"title_text\":\"Hours:\",\"description_text\":\"Mon - Sat: 8 am - 5 pm, <br>Sunday: CLOSED\",\"list\":[],\"_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"6597b9af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"56a3fd32\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFD500FC\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65346727\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2dad7100\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our 50+ Years of Dedication to our Clients!\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#00BCFF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_typography_font_weight\":\"400\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1b770690\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"254dc8ea\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"7ba82c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3137a63e\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F00000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"5e436bbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a88bea1\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"716a6f28\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5993e11b\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"452077d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"53078710\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1d3cff3b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"244e1256\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"2237d8e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"fae14ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1b779718\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"58bb2ff8\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5470fc0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"56713e08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5901,409,'_edit_lock','1619651935:1'),(5902,4485,'_wp_page_template','default'),(5903,4485,'_elementor_edit_mode','builder'),(5904,4485,'_elementor_template_type','wp-page'),(5905,4485,'_elementor_version','3.2.2'),(5906,4485,'_elementor_data','[{\"id\":\"21b714b5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"76\",\"right\":0,\"bottom\":\"68\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"69e72f28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2703b0d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"sub_title_color\":\"#0e0e0e\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"76dfc09b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. <\\/p><p style=\\\"text-align: center;\\\"><strong>Call now: <a href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/strong><\\/p>\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf63871\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"f889722\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04edce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Pinball Machines\",\"description_text\":\"We offer some of the most cutting edge and popular pinball machines you can have in your location. \",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a1da2cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"77e1090\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/127abec3ea6540c295af41d2eead0221.jpeg\",\"id\":4371},\"title_text\":\"ATM Machines\",\"description_text\":\"This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!\",\"image_size\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"bb2e693\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7efb4e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.43.33-PM.png\",\"id\":4383},\"title_text\":\"Ski Ball\",\"description_text\":\"Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.\",\"image_size\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"d279aa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"78f809c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-tee.jpeg\",\"id\":4121},\"title_text\":\"Games\",\"description_text\":\"We have the most poplur bar games of all time like Buck Hunter and Golden Tee Golf. Get your location setup with these modern classics.\",\"image_size\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e4245be\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"0b46440\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2b45973\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/darts.jpeg\",\"id\":4364},\"title_text\":\"Dart Boards\",\"description_text\":\"System Amusement offers the best dart boards such as the Arachnid Bullshooter. Dart boards provide a classic game that everyone loves, yet our cutting edge equipment gives a modern and interactive twist.\",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"1f6ffc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"13da9a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-28-at-4.11.46-PM.png\",\"id\":4471},\"title_text\":\"Pool Tables\",\"description_text\":\"Pool tables are a must for successful bars. We offer quarter pool machines that will keep your customers excited and in your location for hours.\",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a75e86d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e62ae8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/touch-tunes-717.jpg\",\"id\":4459},\"title_text\":\"Touch Tunes\",\"description_text\":\"System Amusement proudly provides the Touch Tunes music system, that will bring the entertainment in your location to a whole new level!\",\"image_space\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"f751212\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ac6cdef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.32.35-PM.png\",\"id\":4372},\"title_text\":\"Juke Boxes\",\"description_text\":\"These have been a classic for literally decades. System Amusement carries the highest tech juke boxes in the industry. Contact us today to order yours.\",\"image_size\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a79ccc9\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\"},\"elements\":[{\"id\":\"2c39a3fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28b93cce\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact System Amusement Today\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c01f84d\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/211037967555058\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"69fe256c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"723d79e7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Phone:\",\"description_text\":\"509-326-1551 \",\"list\":[],\"_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"92f313d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"title_text\":\"Email:\",\"description_text\":\"systemamusement@comcast.net\",\"list\":[],\"_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"24d41eb7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"title_text\":\"Hours:\",\"description_text\":\"Mon - Sat: 8 am - 5 pm, <br>Sunday: CLOSED\",\"list\":[],\"_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"6597b9af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"56a3fd32\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFD500FC\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65346727\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2dad7100\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our 50+ Years of Dedication to our Clients!\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#00BCFF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_typography_font_weight\":\"400\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1b770690\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"254dc8ea\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"7ba82c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3137a63e\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F00000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"5e436bbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a88bea1\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"716a6f28\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5993e11b\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"452077d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"53078710\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1d3cff3b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"244e1256\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"2237d8e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"fae14ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1b779718\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"58bb2ff8\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5470fc0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"56713e08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5907,4485,'_elementor_controls_usage','a:11:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:12:{s:5:\"title\";i:4;s:10:\"text_align\";i:4;s:27:\"title_typography_typography\";i:4;s:28:\"title_typography_font_weight\";i:2;s:5:\"style\";i:4;s:18:\"title_space_bottom\";i:3;s:33:\"title_typography_font_size_tablet\";i:2;s:28:\"title_typography_line_height\";i:2;s:35:\"title_typography_line_height_tablet\";i:2;s:26:\"title_typography_font_size\";i:3;s:11:\"title_color\";i:2;s:13:\"st_line_color\";i:1;}s:17:\"sub_title_section\";a:8:{s:15:\"sub_title_color\";i:3;s:31:\"sub_title_typography_typography\";i:3;s:32:\"sub_title_typography_font_family\";i:3;s:32:\"sub_title_typography_font_weight\";i:3;s:22:\"sub_title_space_bottom\";i:3;s:9:\"sub_title\";i:2;s:30:\"sub_title_typography_font_size\";i:2;s:14:\"sub_title_line\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;s:8:\"_z_index\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:19;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:19;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:1;s:7:\"padding\";i:1;s:13:\"margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:21:\"background_background\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:16:\"content_position\";i:1;s:15:\"stretch_section\";i:4;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:4;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:5;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:18:\"background_color_b\";i:1;}s:26:\"section_background_overlay\";a:6:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:29:\"background_overlay_attachment\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:8;s:10:\"title_text\";i:8;s:16:\"description_text\";i:8;}}s:5:\"style\";a:2:{s:19:\"section_style_image\";a:2:{s:10:\"image_size\";i:8;s:11:\"image_space\";i:1;}s:21:\"section_style_content\";a:2:{s:11:\"title_color\";i:8;s:17:\"description_color\";i:8;}}}}s:4:\"html\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:4:\"html\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:3;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:1;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;s:19:\"text_color_gradient\";i:1;s:26:\"link_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:8:\"_padding\";i:1;s:7:\"_margin\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:4:{s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:1:{s:12:\"number_color\";i:4;}s:13:\"section_title\";a:1:{s:11:\"title_color\";i:4;}s:12:\"section_icon\";a:1:{s:10:\"icon_color\";i:4;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:4;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:4;s:17:\"_background_color\";i:4;}s:15:\"_section_border\";a:4:{s:14:\"_border_border\";i:4;s:13:\"_border_width\";i:4;s:13:\"_border_color\";i:4;s:14:\"_border_radius\";i:4;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:8:\"_z_index\";i:1;s:14:\"_margin_mobile\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}}'),(5908,4485,'_elementor_css','a:6:{s:4:\"time\";i:1619651781;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:3;s:8:\"material\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(5909,409,'_edit_last','1'),(5910,409,'p_h_style1','themeoption'),(5911,409,'p_logo_dark','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(5912,409,'p_logo_light','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(5913,409,'p_logo_mobile','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(5914,409,'page_h_phone',''),(5915,409,'page_h_time',''),(5916,409,'h_custom_menu',''),(5917,409,'h_custom_menu_left',''),(5918,409,'h_custom_menu_right',''),(5919,409,'p_page_title_color',''),(5920,409,'ptitle_overlay','themeoption'),(5921,409,'ptitle_breadcrumb_page','themeoption'),(5922,409,'ptitle_breadcrumb_color',''),(5923,409,'p_bg_content','a:6:{s:17:\"background-repeat\";s:0:\"\";s:15:\"background-size\";s:0:\"\";s:21:\"background-attachment\";s:0:\"\";s:19:\"background-position\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(5924,409,'loading_page','themeoption'),(5925,409,'loading_type','style1'),(5926,409,'page_back_totop','themeoption'),(5928,409,'eg_sources_youtube',''),(5929,409,'eg_sources_vimeo',''),(5930,409,'eg_sources_wistia',''),(5931,409,'eg_sources_image',''),(5932,409,'eg_sources_iframe',''),(5933,409,'eg_sources_soundcloud',''),(5934,409,'eg_vimeo_ratio','1'),(5935,409,'eg_youtube_ratio','1'),(5936,409,'eg_wistia_ratio','1'),(5937,409,'eg_html5_ratio','1'),(5938,409,'eg_soundcloud_ratio','1'),(5939,409,'eg_sources_revslider',''),(5940,409,'eg_sources_essgrid',''),(5941,409,'eg_featured_grid',''),(5942,409,'eg_settings_custom_meta_skin',''),(5943,409,'eg_settings_custom_meta_element',''),(5944,409,'eg_settings_custom_meta_setting',''),(5945,409,'eg_settings_custom_meta_style',''),(5946,409,'eg_custom_meta_216','true'),(5947,409,'eg_votes_count','0'),(5948,4486,'_wp_page_template','default'),(5949,4486,'_elementor_edit_mode','builder'),(5950,4486,'_elementor_template_type','wp-page'),(5951,4486,'_elementor_version','3.2.2'),(5952,4486,'_elementor_data','[{\"id\":\"21b714b5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"76\",\"right\":0,\"bottom\":\"68\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"69e72f28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2703b0d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"sub_title_color\":\"#0e0e0e\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"76dfc09b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. <\\/p><p style=\\\"text-align: center;\\\"><strong>Call now: <a href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/strong><\\/p>\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf63871\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"f889722\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04edce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Pinball Machines\",\"description_text\":\"We offer some of the most cutting edge and popular pinball machines you can have in your location. \",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a1da2cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"77e1090\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/127abec3ea6540c295af41d2eead0221.jpeg\",\"id\":4371},\"title_text\":\"ATM Machines\",\"description_text\":\"This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!\",\"image_size\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"bb2e693\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7efb4e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.43.33-PM.png\",\"id\":4383},\"title_text\":\"Ski Ball\",\"description_text\":\"Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.\",\"image_size\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"d279aa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"78f809c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-tee.jpeg\",\"id\":4121},\"title_text\":\"Games\",\"description_text\":\"We have the most poplur bar games of all time like Buck Hunter and Golden Tee Golf. Get your location setup with these modern classics.\",\"image_size\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e4245be\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"0b46440\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2b45973\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/darts.jpeg\",\"id\":4364},\"title_text\":\"Dart Boards\",\"description_text\":\"System Amusement offers the best dart boards such as the Arachnid Bullshooter. Dart boards provide a classic game that everyone loves, yet our cutting edge equipment gives a modern and interactive twist.\",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"1f6ffc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"13da9a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-28-at-4.11.46-PM.png\",\"id\":4471},\"title_text\":\"Pool Tables\",\"description_text\":\"Pool tables are a must for successful bars. We offer quarter pool machines that will keep your customers excited and in your location for hours.\",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a75e86d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e62ae8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/touch-tunes-717.jpg\",\"id\":4459},\"title_text\":\"Touch Tunes\",\"description_text\":\"System Amusement proudly provides the Touch Tunes music system, that will bring the entertainment in your location to a whole new level!\",\"image_space\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"f751212\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ac6cdef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.32.35-PM.png\",\"id\":4372},\"title_text\":\"Juke Boxes\",\"description_text\":\"These have been a classic for literally decades. System Amusement carries the highest tech juke boxes in the industry. Contact us today to order yours.\",\"image_size\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a79ccc9\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\"},\"elements\":[{\"id\":\"2c39a3fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28b93cce\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact System Amusement Today\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c01f84d\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/211037967555058\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"69fe256c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"723d79e7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Phone:\",\"description_text\":\"509-326-1551 \",\"list\":[],\"_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"92f313d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"title_text\":\"Email:\",\"description_text\":\"systemamusement@comcast.net\",\"list\":[],\"_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"24d41eb7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"title_text\":\"Hours:\",\"description_text\":\"Mon - Sat: 8 am - 5 pm, <br>Sunday: CLOSED\",\"list\":[],\"_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"6597b9af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"56a3fd32\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFD500FC\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65346727\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2dad7100\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our 50+ Years of Dedication to our Clients!\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#00BCFF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_typography_font_weight\":\"400\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1b770690\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"254dc8ea\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"7ba82c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3137a63e\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F00000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"5e436bbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a88bea1\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"716a6f28\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5993e11b\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"452077d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"53078710\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1d3cff3b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"244e1256\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"2237d8e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"fae14ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1b779718\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"58bb2ff8\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5470fc0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"56713e08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5953,4486,'_elementor_controls_usage','a:11:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:12:{s:5:\"title\";i:4;s:10:\"text_align\";i:4;s:27:\"title_typography_typography\";i:4;s:28:\"title_typography_font_weight\";i:2;s:5:\"style\";i:4;s:18:\"title_space_bottom\";i:3;s:33:\"title_typography_font_size_tablet\";i:2;s:28:\"title_typography_line_height\";i:2;s:35:\"title_typography_line_height_tablet\";i:2;s:26:\"title_typography_font_size\";i:3;s:11:\"title_color\";i:2;s:13:\"st_line_color\";i:1;}s:17:\"sub_title_section\";a:8:{s:15:\"sub_title_color\";i:3;s:31:\"sub_title_typography_typography\";i:3;s:32:\"sub_title_typography_font_family\";i:3;s:32:\"sub_title_typography_font_weight\";i:3;s:22:\"sub_title_space_bottom\";i:3;s:9:\"sub_title\";i:2;s:30:\"sub_title_typography_font_size\";i:2;s:14:\"sub_title_line\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;s:8:\"_z_index\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:19;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:19;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:1;s:7:\"padding\";i:1;s:13:\"margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:21:\"background_background\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:16:\"content_position\";i:1;s:15:\"stretch_section\";i:4;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:4;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:5;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:18:\"background_color_b\";i:1;}s:26:\"section_background_overlay\";a:6:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:29:\"background_overlay_attachment\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:8;s:10:\"title_text\";i:8;s:16:\"description_text\";i:8;}}s:5:\"style\";a:2:{s:19:\"section_style_image\";a:2:{s:10:\"image_size\";i:8;s:11:\"image_space\";i:1;}s:21:\"section_style_content\";a:2:{s:11:\"title_color\";i:8;s:17:\"description_color\";i:8;}}}}s:4:\"html\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:4:\"html\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:3;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:1;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;s:19:\"text_color_gradient\";i:1;s:26:\"link_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:8:\"_padding\";i:1;s:7:\"_margin\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:4:{s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:1:{s:12:\"number_color\";i:4;}s:13:\"section_title\";a:1:{s:11:\"title_color\";i:4;}s:12:\"section_icon\";a:1:{s:10:\"icon_color\";i:4;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:4;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:4;s:17:\"_background_color\";i:4;}s:15:\"_section_border\";a:4:{s:14:\"_border_border\";i:4;s:13:\"_border_width\";i:4;s:13:\"_border_color\";i:4;s:14:\"_border_radius\";i:4;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:8:\"_z_index\";i:1;s:14:\"_margin_mobile\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}}'),(5954,4486,'_elementor_css','a:6:{s:4:\"time\";i:1619651781;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:3;s:8:\"material\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(5960,4487,'_elementor_css','a:6:{s:4:\"time\";i:1619651781;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:3;s:8:\"material\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(5961,4488,'_wp_page_template','default'),(5962,4488,'_elementor_edit_mode','builder'),(5963,4488,'_elementor_template_type','wp-page'),(5964,4488,'_elementor_version','3.2.2'),(5965,4488,'_elementor_data','[{\"id\":\"21b714b5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"76\",\"right\":0,\"bottom\":\"68\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"69e72f28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2703b0d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"sub_title_color\":\"#0e0e0e\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"76dfc09b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. <\\/p><p style=\\\"text-align: center;\\\"><strong>Call now: <a href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/strong><\\/p>\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf63871\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"f889722\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04edce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Pinball Machines\",\"description_text\":\"We offer some of the most cutting edge and popular pinball machines you can have in your location. \",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a1da2cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"77e1090\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/127abec3ea6540c295af41d2eead0221.jpeg\",\"id\":4371},\"title_text\":\"ATM Machines\",\"description_text\":\"This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!\",\"image_size\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"bb2e693\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7efb4e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.43.33-PM.png\",\"id\":4383},\"title_text\":\"Ski Ball\",\"description_text\":\"Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.\",\"image_size\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"d279aa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"78f809c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-tee.jpeg\",\"id\":4121},\"title_text\":\"Games\",\"description_text\":\"We have the most poplur bar games of all time like Buck Hunter and Golden Tee Golf. Get your location setup with these modern classics.\",\"image_size\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e4245be\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"0b46440\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2b45973\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/darts.jpeg\",\"id\":4364},\"title_text\":\"Dart Boards\",\"description_text\":\"System Amusement offers the best dart boards such as the Arachnid Bullshooter. Dart boards provide a classic game that everyone loves, yet our cutting edge equipment gives a modern and interactive twist.\",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"1f6ffc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"13da9a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-28-at-4.11.46-PM.png\",\"id\":4471},\"title_text\":\"Pool Tables\",\"description_text\":\"Pool tables are a must for successful bars. We offer quarter pool machines that will keep your customers excited and in your location for hours.\",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a75e86d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e62ae8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/touch-tunes-717.jpg\",\"id\":4459},\"title_text\":\"Touch Tunes\",\"description_text\":\"System Amusement proudly provides the Touch Tunes music system, that will bring the entertainment in your location to a whole new level!\",\"image_space\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"f751212\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ac6cdef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.32.35-PM.png\",\"id\":4372},\"title_text\":\"Juke Boxes\",\"description_text\":\"These have been a classic for literally decades. System Amusement carries the highest tech juke boxes in the industry. Contact us today to order yours.\",\"image_size\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a79ccc9\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\"},\"elements\":[{\"id\":\"2c39a3fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28b93cce\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact System Amusement Today\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c01f84d\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/211037967555058\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"69fe256c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"723d79e7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Phone:\",\"description_text\":\"509-326-1551 \",\"list\":[],\"_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"92f313d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"title_text\":\"Email:\",\"description_text\":\"systemamusement@comcast.net\",\"list\":[],\"_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"24d41eb7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"title_text\":\"Hours:\",\"description_text\":\"Mon - Sat: 8 am - 5 pm, <br>Sunday: CLOSED\",\"list\":[],\"_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"6597b9af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"56a3fd32\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFD500FC\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65346727\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2dad7100\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our 50+ Years of Dedication to our Clients!\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#00BCFF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_typography_font_weight\":\"400\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1b770690\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"254dc8ea\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"7ba82c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3137a63e\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F00000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"5e436bbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a88bea1\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"716a6f28\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5993e11b\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"452077d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"53078710\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1d3cff3b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"244e1256\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"2237d8e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"fae14ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1b779718\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"58bb2ff8\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5470fc0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"56713e08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5966,4488,'_elementor_css','a:6:{s:4:\"time\";i:1619651781;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:3;s:8:\"material\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(5967,4489,'_wp_page_template','default'),(5968,4489,'_elementor_edit_mode','builder'),(5969,4489,'_elementor_template_type','wp-page'),(5970,4489,'_elementor_version','3.2.2'),(5971,4489,'_elementor_data','[{\"id\":\"21b714b5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"76\",\"right\":0,\"bottom\":\"68\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"69e72f28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2703b0d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"sub_title_color\":\"#0e0e0e\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"76dfc09b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. <\\/p><p style=\\\"text-align: center;\\\"><strong>Call now: <a href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/strong><\\/p>\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf63871\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"f889722\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04edce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Pinball Machines\",\"description_text\":\"We offer some of the most cutting edge and popular pinball machines you can have in your location. \",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a1da2cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"77e1090\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/127abec3ea6540c295af41d2eead0221.jpeg\",\"id\":4371},\"title_text\":\"ATM Machines\",\"description_text\":\"This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!\",\"image_size\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"bb2e693\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7efb4e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.43.33-PM.png\",\"id\":4383},\"title_text\":\"Ski Ball\",\"description_text\":\"Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.\",\"image_size\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"d279aa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"78f809c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-tee.jpeg\",\"id\":4121},\"title_text\":\"Games\",\"description_text\":\"We have the most poplur bar games of all time like Buck Hunter and Golden Tee Golf. Get your location setup with these modern classics.\",\"image_size\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e4245be\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"0b46440\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2b45973\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/darts.jpeg\",\"id\":4364},\"title_text\":\"Dart Boards\",\"description_text\":\"System Amusement offers the best dart boards such as the Arachnid Bullshooter. Dart boards provide a classic game that everyone loves, yet our cutting edge equipment gives a modern and interactive twist.\",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"1f6ffc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"13da9a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-28-at-4.11.46-PM.png\",\"id\":4471},\"title_text\":\"Pool Tables\",\"description_text\":\"Pool tables are a must for successful bars. We offer quarter pool machines that will keep your customers excited and in your location for hours.\",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a75e86d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e62ae8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/touch-tunes-717.jpg\",\"id\":4459},\"title_text\":\"Touch Tunes\",\"description_text\":\"System Amusement proudly provides the Touch Tunes music system, that will bring the entertainment in your location to a whole new level!\",\"image_space\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"f751212\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ac6cdef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.32.35-PM.png\",\"id\":4372},\"title_text\":\"Juke Boxes\",\"description_text\":\"These have been a classic for literally decades. System Amusement carries the highest tech juke boxes in the industry. Contact us today to order yours.\",\"image_size\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a79ccc9\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E1E1E1\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c39a3fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28b93cce\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact System Amusement Today\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c01f84d\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/211037967555058\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"69fe256c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"723d79e7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Phone:\",\"description_text\":\"509-326-1551 \",\"list\":[],\"_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"92f313d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"title_text\":\"Email:\",\"description_text\":\"systemamusement@comcast.net\",\"list\":[],\"_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"24d41eb7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"title_text\":\"Hours:\",\"description_text\":\"Mon - Sat: 8 am - 5 pm, <br>Sunday: CLOSED\",\"list\":[],\"_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"6597b9af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"56a3fd32\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFD500FC\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65346727\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2dad7100\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our 50+ Years of Dedication to our Clients!\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#00BCFF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_typography_font_weight\":\"400\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1b770690\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"254dc8ea\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"7ba82c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3137a63e\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F00000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"5e436bbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a88bea1\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"716a6f28\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5993e11b\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"452077d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"53078710\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1d3cff3b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"244e1256\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"2237d8e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"fae14ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1b779718\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"58bb2ff8\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5470fc0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"56713e08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5972,4489,'_elementor_css','a:6:{s:4:\"time\";i:1619651781;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:3;s:8:\"material\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(5974,4490,'_wp_page_template','default'),(5975,4490,'_elementor_edit_mode','builder'),(5976,4490,'_elementor_template_type','wp-page'),(5977,4490,'_elementor_version','3.2.2'),(5978,4490,'_elementor_data','[{\"id\":\"21b714b5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"76\",\"right\":0,\"bottom\":\"68\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"69e72f28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2703b0d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"sub_title_color\":\"#0e0e0e\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"76dfc09b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. <\\/p><p style=\\\"text-align: center;\\\"><strong>Call now: <a href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/strong><\\/p>\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf63871\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"f889722\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04edce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Pinball Machines\",\"description_text\":\"We offer some of the most cutting edge and popular pinball machines you can have in your location. \",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a1da2cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"77e1090\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/127abec3ea6540c295af41d2eead0221.jpeg\",\"id\":4371},\"title_text\":\"ATM Machines\",\"description_text\":\"This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!\",\"image_size\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"bb2e693\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7efb4e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.43.33-PM.png\",\"id\":4383},\"title_text\":\"Ski Ball\",\"description_text\":\"Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.\",\"image_size\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"d279aa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"78f809c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-tee.jpeg\",\"id\":4121},\"title_text\":\"Games\",\"description_text\":\"We have the most poplur bar games of all time like Buck Hunter and Golden Tee Golf. Get your location setup with these modern classics.\",\"image_size\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e4245be\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"0b46440\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2b45973\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/darts.jpeg\",\"id\":4364},\"title_text\":\"Dart Boards\",\"description_text\":\"System Amusement offers the best dart boards such as the Arachnid Bullshooter. Dart boards provide a classic game that everyone loves, yet our cutting edge equipment gives a modern and interactive twist.\",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"1f6ffc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"13da9a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-28-at-4.11.46-PM.png\",\"id\":4471},\"title_text\":\"Pool Tables\",\"description_text\":\"Pool tables are a must for successful bars. We offer quarter pool machines that will keep your customers excited and in your location for hours.\",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a75e86d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e62ae8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/touch-tunes-717.jpg\",\"id\":4459},\"title_text\":\"Touch Tunes\",\"description_text\":\"System Amusement proudly provides the Touch Tunes music system, that will bring the entertainment in your location to a whole new level!\",\"image_space\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"f751212\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ac6cdef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.32.35-PM.png\",\"id\":4372},\"title_text\":\"Juke Boxes\",\"description_text\":\"These have been a classic for literally decades. System Amusement carries the highest tech juke boxes in the industry. Contact us today to order yours.\",\"image_size\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a79ccc9\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E1E1E1\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c39a3fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28b93cce\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact System Amusement Today\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c01f84d\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/211037967555058\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"69fe256c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"723d79e7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Phone:\",\"description_text\":\"509-326-1551 \",\"list\":[],\"_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"92f313d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"title_text\":\"Email:\",\"description_text\":\"systemamusement@comcast.net\",\"list\":[],\"_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"24d41eb7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"title_text\":\"Hours:\",\"description_text\":\"Mon - Sat: 8 am - 5 pm, <br>Sunday: CLOSED\",\"list\":[],\"_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"6597b9af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"56a3fd32\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFD500FC\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65346727\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2dad7100\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our 50+ Years of Dedication to our Clients!\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#00BCFF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_typography_font_weight\":\"400\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1b770690\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"254dc8ea\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"7ba82c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3137a63e\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F00000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"5e436bbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a88bea1\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"716a6f28\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5993e11b\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"452077d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"53078710\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1d3cff3b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"244e1256\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"2237d8e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"fae14ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1b779718\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"58bb2ff8\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5470fc0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"56713e08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5979,4491,'_wp_page_template','default'),(5980,4491,'_elementor_edit_mode','builder'),(5981,4491,'_elementor_template_type','wp-page'),(5982,4491,'_elementor_version','3.2.2'),(5983,4491,'_elementor_data','[{\"id\":\"21b714b5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"76\",\"right\":0,\"bottom\":\"68\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"69e72f28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2703b0d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"sub_title_color\":\"#0e0e0e\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"76dfc09b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. <\\/p><p style=\\\"text-align: center;\\\"><strong>Call now: <a href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/strong><\\/p>\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf63871\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"f889722\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04edce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Pinball Machines\",\"description_text\":\"We offer some of the most cutting edge and popular pinball machines you can have in your location. \",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a1da2cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"77e1090\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/127abec3ea6540c295af41d2eead0221.jpeg\",\"id\":4371},\"title_text\":\"ATM Machines\",\"description_text\":\"This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!\",\"image_size\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"bb2e693\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7efb4e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.43.33-PM.png\",\"id\":4383},\"title_text\":\"Ski Ball\",\"description_text\":\"Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.\",\"image_size\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"d279aa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"78f809c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-tee.jpeg\",\"id\":4121},\"title_text\":\"Games\",\"description_text\":\"We have the most poplur bar games of all time like Buck Hunter and Golden Tee Golf. Get your location setup with these modern classics.\",\"image_size\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e4245be\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"0b46440\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2b45973\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/darts.jpeg\",\"id\":4364},\"title_text\":\"Dart Boards\",\"description_text\":\"System Amusement offers the best dart boards such as the Arachnid Bullshooter. Dart boards provide a classic game that everyone loves, yet our cutting edge equipment gives a modern and interactive twist.\",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"1f6ffc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"13da9a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-28-at-4.11.46-PM.png\",\"id\":4471},\"title_text\":\"Pool Tables\",\"description_text\":\"Pool tables are a must for successful bars. We offer quarter pool machines that will keep your customers excited and in your location for hours.\",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a75e86d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e62ae8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/touch-tunes-717.jpg\",\"id\":4459},\"title_text\":\"Touch Tunes\",\"description_text\":\"System Amusement proudly provides the Touch Tunes music system, that will bring the entertainment in your location to a whole new level!\",\"image_space\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"f751212\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ac6cdef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.32.35-PM.png\",\"id\":4372},\"title_text\":\"Juke Boxes\",\"description_text\":\"These have been a classic for literally decades. System Amusement carries the highest tech juke boxes in the industry. Contact us today to order yours.\",\"image_size\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a79ccc9\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E1E1E1\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c39a3fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28b93cce\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact System Amusement Today\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c01f84d\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/211037967555058\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"69fe256c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"723d79e7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Phone:\",\"description_text\":\"509-326-1551 \",\"list\":[],\"_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"92f313d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"title_text\":\"Email:\",\"description_text\":\"systemamusement@comcast.net\",\"list\":[],\"_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"24d41eb7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"title_text\":\"Hours:\",\"description_text\":\"Mon - Sat: 8 am - 5 pm, <br>Sunday: CLOSED\",\"list\":[],\"_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"6597b9af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"56a3fd32\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFD500FC\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65346727\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2dad7100\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our 50+ Years of Dedication to our Clients!\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#00BCFF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_typography_font_weight\":\"400\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1b770690\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"254dc8ea\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"7ba82c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3137a63e\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F00000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"5e436bbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a88bea1\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"716a6f28\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5993e11b\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"452077d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"53078710\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1d3cff3b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"244e1256\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"2237d8e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"fae14ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1b779718\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"58bb2ff8\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5470fc0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"56713e08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5984,4492,'_wp_page_template','default'),(5985,4492,'_elementor_edit_mode','builder'),(5986,4492,'_elementor_template_type','wp-page'),(5987,4492,'_elementor_version','3.2.2'),(5988,4492,'_elementor_data','[{\"id\":\"21b714b5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"76\",\"right\":0,\"bottom\":\"68\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"69e72f28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2703b0d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"sub_title_color\":\"#0e0e0e\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"style\":\"st-line-bottom1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"76dfc09b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. <\\/p><p style=\\\"text-align: center;\\\"><strong>Call now: <a href=\\\"tel:509-993-4655\\\">509-993-4655<\\/a><\\/strong><\\/p>\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf63871\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"f889722\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04edce2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/the-munsters-premium-pinball-cabinet-stern.png\",\"id\":4129},\"title_text\":\"Pinball Machines\",\"description_text\":\"We offer some of the most cutting edge and popular pinball machines you can have in your location. \",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a1da2cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"77e1090\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/127abec3ea6540c295af41d2eead0221.jpeg\",\"id\":4371},\"title_text\":\"ATM Machines\",\"description_text\":\"This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!\",\"image_size\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"bb2e693\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7efb4e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.43.33-PM.png\",\"id\":4383},\"title_text\":\"Ski Ball\",\"description_text\":\"Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.\",\"image_size\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"d279aa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"78f809c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-tee.jpeg\",\"id\":4121},\"title_text\":\"Games\",\"description_text\":\"We have the most poplur bar games of all time like Buck Hunter and Golden Tee Golf. Get your location setup with these modern classics.\",\"image_size\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e4245be\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"0b46440\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2b45973\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/darts.jpeg\",\"id\":4364},\"title_text\":\"Dart Boards\",\"description_text\":\"System Amusement offers the best dart boards such as the Arachnid Bullshooter. Dart boards provide a classic game that everyone loves, yet our cutting edge equipment gives a modern and interactive twist.\",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"1f6ffc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"13da9a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-28-at-4.11.46-PM.png\",\"id\":4471},\"title_text\":\"Pool Tables\",\"description_text\":\"Pool tables are a must for successful bars. We offer quarter pool machines that will keep your customers excited and in your location for hours.\",\"image_size\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a75e86d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e62ae8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/touch-tunes-717.jpg\",\"id\":4459},\"title_text\":\"Touch Tunes\",\"description_text\":\"System Amusement proudly provides the Touch Tunes music system, that will bring the entertainment in your location to a whole new level!\",\"image_space\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"f751212\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ac6cdef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-14-at-3.32.35-PM.png\",\"id\":4372},\"title_text\":\"Juke Boxes\",\"description_text\":\"These have been a classic for literally decades. System Amusement carries the highest tech juke boxes in the industry. Contact us today to order yours.\",\"image_size\":{\"unit\":\"%\",\"size\":81,\"sizes\":[]},\"title_color\":\"#0B7E98\",\"description_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a79ccc9\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E1E1E1\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c39a3fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28b93cce\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact System Amusement Today\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c01f84d\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/211037967555058\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"69fe256c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"723d79e7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Phone:\",\"description_text\":\"509-326-1551 \",\"list\":[],\"_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"title_color\":\"#000000\",\"desc_color\":\"#000000\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"92f313d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"title_text\":\"Email:\",\"description_text\":\"systemamusement@comcast.net\",\"list\":[],\"_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"desc_color\":\"#000000\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"24d41eb7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"title_text\":\"Hours:\",\"description_text\":\"Mon - Sat: 8 am - 5 pm, <br>Sunday: CLOSED\",\"list\":[],\"_padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"desc_color\":\"#000000\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"6597b9af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"56a3fd32\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\",\"id\":4105},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFD500FC\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65346727\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2dad7100\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our 50+ Years of Dedication to our Clients!\",\"sub_title\":\"What Makes System Amusement Different?\",\"sub_title_color\":\"#00BCFF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_typography_font_weight\":\"400\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-bottom1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1b770690\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Your success is our success!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFD500FC\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color_gradient\":\"#FFD500FC\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"254dc8ea\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"7ba82c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3137a63e\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Quality Equipment\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F00000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"5e436bbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a88bea1\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Attention to Detail\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"716a6f28\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5993e11b\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Reliable Support\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"452077d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"53078710\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"suffix\":\"%\",\"title\":\"Client Dedication\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"material zmdi zmdi-shield-check\",\"library\":\"material\"},\"number_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"icon_color\":\"#F60000\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#23232387\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FFD500FC\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1d3cff3b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"244e1256\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"2237d8e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#B60000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"35\",\"bottom\":\"40\",\"left\":\"35\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"fae14ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1b779718\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Are Saying\",\"sub_title\":\"Customer Reviews\",\"sub_title_color\":\"#FFCE00\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"style\":\"st-line-left2\",\"title_color\":\"#FFFFFF\",\"st_line_color\":\"#01A2EB\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_z_index\":1,\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"58bb2ff8\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Logan\",\"position\":\"Bar Owner\",\"description\":\"\\\"These guys will bend over backwards for your bar or place of business. Thanks guys\\\"\\n\",\"_id\":\"f8dba69\"},{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/golden-thumbsup.jpg\",\"id\":4155},\"title\":\"Rebecca\",\"position\":\"Bar Owner\",\"description\":\"\\\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\\\"\",\"_id\":\"5f76277\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"layout\":\"4\",\"_z_index\":1,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5470fc0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"56713e08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\",\"id\":4111},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-120\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-110\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5989,409,'_elementor_controls_usage','a:11:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:12:{s:5:\"title\";i:4;s:10:\"text_align\";i:4;s:27:\"title_typography_typography\";i:4;s:28:\"title_typography_font_weight\";i:2;s:5:\"style\";i:4;s:18:\"title_space_bottom\";i:3;s:33:\"title_typography_font_size_tablet\";i:2;s:28:\"title_typography_line_height\";i:2;s:35:\"title_typography_line_height_tablet\";i:2;s:26:\"title_typography_font_size\";i:3;s:11:\"title_color\";i:2;s:13:\"st_line_color\";i:1;}s:17:\"sub_title_section\";a:8:{s:15:\"sub_title_color\";i:3;s:31:\"sub_title_typography_typography\";i:3;s:32:\"sub_title_typography_font_family\";i:3;s:32:\"sub_title_typography_font_weight\";i:3;s:22:\"sub_title_space_bottom\";i:3;s:9:\"sub_title\";i:2;s:30:\"sub_title_typography_font_size\";i:2;s:14:\"sub_title_line\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;s:8:\"_z_index\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:19;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:19;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:1;s:7:\"padding\";i:1;s:13:\"margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:21:\"background_background\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:4;s:16:\"content_position\";i:1;s:15:\"stretch_section\";i:4;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:5;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:5;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:18:\"background_color_b\";i:1;}s:26:\"section_background_overlay\";a:6:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:29:\"background_overlay_attachment\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:8;s:10:\"title_text\";i:8;s:16:\"description_text\";i:8;}}s:5:\"style\";a:2:{s:19:\"section_style_image\";a:2:{s:10:\"image_size\";i:8;s:11:\"image_space\";i:1;}s:21:\"section_style_content\";a:2:{s:11:\"title_color\";i:8;s:17:\"description_color\";i:8;}}}}s:4:\"html\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:4:\"html\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:15:\"section_content\";a:3:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;}s:13:\"section_style\";a:4:{s:11:\"title_color\";i:1;s:10:\"desc_color\";i:3;s:26:\"desc_typography_typography\";i:3;s:25:\"desc_typography_font_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:3;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:1;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;s:19:\"text_color_gradient\";i:1;s:26:\"link_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:8:\"_padding\";i:1;s:7:\"_margin\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:4:{s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:1:{s:12:\"number_color\";i:4;}s:13:\"section_title\";a:1:{s:11:\"title_color\";i:4;}s:12:\"section_icon\";a:1:{s:10:\"icon_color\";i:4;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:4;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:4;s:17:\"_background_color\";i:4;}s:15:\"_section_border\";a:4:{s:14:\"_border_border\";i:4;s:13:\"_border_width\";i:4;s:13:\"_border_color\";i:4;s:14:\"_border_radius\";i:4;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:8:\"_z_index\";i:1;s:14:\"_margin_mobile\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}}'),(5990,409,'_elementor_css','a:6:{s:4:\"time\";i:1619652130;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:3;s:8:\"material\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(6100,4507,'_wp_page_template','default'),(6101,4507,'_elementor_edit_mode','builder'),(6102,4507,'_elementor_template_type','wp-page'),(6103,4507,'_elementor_version','3.2.2'),(6104,4507,'_elementor_data','[{\"id\":\"64fd72b8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"42\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"305603d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9da93fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the information below to sign up for the Dart and Pool Leagues\",\"sub_title\":\"League Information\",\"sub_title_color\":\"#595959\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"_css_classes\":\"line-sub-preset2\",\"ct_animate\":\"wow bounce\",\"text_align\":\"center\",\"sub_title_style\":\"style7\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"f725b8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"20124ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ea0522\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"about-call\\\">For Dart League registration please use the following information below:<\\/div><div>\\u00a0<\\/div><div>info@dartleague.com<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"ab5c66a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1fb7224d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"about-call\\\">For Dart League registration please use the following information below:<\\/div><div>\\u00a0<\\/div><div>info@dartleague.com<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6003,4496,'_wp_page_template','default'),(6004,4496,'_elementor_edit_mode','builder'),(6005,4496,'_elementor_template_type','wp-page'),(6006,4496,'_elementor_version','2.8.5'),(6007,4496,'_elementor_data','[{\"id\":\"64fd72b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"55\",\"right\":0,\"bottom\":\"42\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"305603d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9da93fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re a global stakeholder relations and consultancy.\",\"sub_title\":\"About us\",\"sub_title_color\":\"#595959\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"_css_classes\":\"line-sub-preset2\",\"ct_animate\":\"wow bounce\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"398fa9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku sendeno\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_css_classes\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"311bc37\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We bring more than 24 years\\u2019 senior experience forging of\\ncollaborations across government.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_css_classes\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ef13cfd\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"list\":[{\"title\":\"\",\"content\":\"Praesent feugiat sem.\",\"_id\":\"5468f9e\"},{\"title\":\"\",\"content\":\"A wonderful serenity.\",\"_id\":\"e337312\"},{\"title\":\"\",\"content\":\"Premium services for you.\",\"_id\":\"a1fd6d3\"},{\"title\":\"\",\"content\":\"Set a link back to photo.\",\"_id\":\"7341c94\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"59\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"1fb7224d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"about-call\\\">Call to ask <a class=\\\"link-preset2\\\" href=\\\"#\\\">any question<\\/a> 540-325-1523<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78f3a28d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/about-gap.png\",\"id\":1896},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e20b32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/signature-02.png\",\"id\":2319},\"title\":\"Natalia Duke\",\"sub_title\":\"(Chairman and founder)\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":false},{\"id\":\"1bb8bef0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40e6861c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/banner-01.png\",\"id\":2306},\"title\":\"24 Years of Experience\",\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"38f7332b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7dba3a7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"735a4111\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44317976\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.082999999999998408384271897375583648681640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e36d3ea\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'re ready to share our advice and experience.\",\"sub_title\":\"Pricing\",\"sub_title_color\":\"#595959\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"_css_classes\":\"line-sub-preset2\",\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"4edf15d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.87700000000000244426701101474463939666748046875,\"margin\":{\"unit\":\"px\",\"top\":\"030\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"54c181e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"The main difference between Statistic and Statistics is that the Statistic is a single measure of some attribute of a sample and Statistics is a study of the collection.\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"21927eaa\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"title\":\"Tax Consultancy\",\"description\":\"This is one of many areas of\\nprofessional services where our firm is well ahead of the competition.\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/service\\/business-strategy\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"ad3ffd2\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-service-icon4.png\",\"id\":3364}},{\"ct_icon\":{\"value\":\"flaticon flaticon-stats\",\"library\":\"flaticon\"},\"title\":\"Audit & assurance\",\"description\":\"People are only as good as the tools they possess. So, to consistently deliver high-quality auditing services.\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/service\\/business-strategy\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-service-icon5.png\",\"id\":3365},\"_id\":\"549e205\"},{\"ct_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"title\":\"Value Added Tax\",\"description\":\"We are providing and dealing with all sorts of legal and professional services and matters to operate.\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/service\\/business-strategy\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-service-icon6.png\",\"id\":3366},\"_id\":\"c96dff0\"},{\"ct_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"title\":\"Accounting Services\",\"description\":\"Our professionals provide a range of accounting and assurance services of the highest standards.\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/service\\/business-strategy\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-service-icon7.png\",\"id\":3367},\"_id\":\"c5fa888\"},{\"ct_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"title\":\"Tax Outsourcing\",\"description\":\"Unlike our competitors we have in house qualified lawyers and accountants who can help you.\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/service\\/business-strategy\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-service-icon8.png\",\"id\":3368},\"_id\":\"70a20db\"},{\"ct_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"title\":\"Amazing Strategy\",\"description\":\"Operates an atmosphere that promote creative approach for clients needs.\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/service\\/business-strategy\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-service-icon9.png\",\"id\":3369},\"_id\":\"838b0fb\"}],\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c752131\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/theme23.jpg\",\"id\":3614},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"b425f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"ce65c69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"css_classes\":\"col-offset-right\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"7af3a6b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":108,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"95f59e2\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Like What We Offer\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"color-gradient-from\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"9211325\",\"elType\":\"widget\",\"settings\":{\"title\":\"DO BUSINESS<br\\/>\\nWITH US!\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"58fe444\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"text_editor\":\"In order to acquire our services please kindly send us your inquiry of interest. We shall revert back\\nimmediately.\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"03068b7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"btn_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"02\",\"right\":\"36\",\"bottom\":\"2\",\"left\":\"36\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_button\"},{\"id\":\"202a22e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7044b92\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/about-section-01.jpg\",\"id\":3628},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43e18f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"_inline_size_tablet\":90},\"elements\":[{\"id\":\"b570126\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Our Value\",\"content_type\":\"text_editor\",\"tab_content\":\"<div class=\\\"tab-sub\\\">We Have Over 3000 Registered Human Resource Portals To Seek out the Best For Your Company.<\\/div>\\n\\nNetworks of our affiliates spreads all over the world inorder to provide a good grip in the Global Human Resource Recruitment System.\",\"tab_content_template\":\"\",\"_id\":\"91aeee6\"},{\"tab_title\":\"Our Mission\",\"content_type\":\"text_editor\",\"tab_content\":\"<div class=\\\"tab-sub\\\">Our professionals provide a range of accounting and assurance services of the highest standards.<\\/div>\\n\\nNetworks of our affiliates spreads all over the world inorder to provide a good grip in the Global Human Resource Recruitment System.\",\"tab_content_template\":\"\",\"_id\":\"8303bab\"},{\"tab_title\":\"Payroll Service\",\"content_type\":\"text_editor\",\"tab_content\":\"<div class=\\\"tab-sub\\\">People are only as good as the tools they possess. So, to consistently deliver high-quality auditing.<\\/div>\\nNetworks of our affiliates spreads all over the world inorder to provide a good grip in the Global Human Resource Recruitment System.\",\"tab_content_template\":\"\",\"_id\":\"bdab1d1\"}],\"tab_type\":\"vertical\",\"title_color_type\":\"#FFFFFF\",\"content_color_type\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_tabs\"}],\"isInner\":false},{\"id\":\"c7ad8c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41.96000000000000085265128291212022304534912109375,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"78e91ef\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"padding\":{\"unit\":\"px\",\"top\":\"81\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"918186f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"1ab16bbd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We draw on our global network to\\nassemble a team of experts.\",\"sub_title\":\"Team\",\"sub_title_color\":\"#595959\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"_css_classes\":\"line-sub-preset2\",\"ct_animate\":\"wow fadeInLeft\",\"title_typography_typography\":\"custom\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"8c051a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"d62d9b3\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"content_list3\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/team-single.jpg\",\"id\":1706},\"title\":\"Fran Bostick\",\"position\":\"Founder & CEO\",\"desc\":\"He has extensive experience in\\norganizational design, business process reengineering.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-youtube-play\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-skype\\\",\\\"url\\\":\\\"#\\\"}]\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"cdc1c54\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Tina Holt\",\"position\":\"Federal Contractor\",\"desc\":\"He has extensive experience in\\norganizational design, business process reengineering.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-youtube-play\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-skype\\\",\\\"url\\\":\\\"\\\"}]\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"784ebc9\"}],\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"360\",\"height\":\"360\"},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a676f2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"d088f8f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"38dd266\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"content_list3\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-team3.jpg\",\"id\":3400},\"title\":\"Charles Wilkinson\",\"position\":\"Founder & CEO\",\"desc\":\"He has extensive experience in\\norganizational design, business process reengineering.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-youtube-play\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-skype\\\",\\\"url\\\":\\\"#\\\"}]\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"cdc1c54\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Michael Alan Tate\",\"position\":\"Vice President\",\"desc\":\"He has extensive experience in\\norganizational design, business process reengineering.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-youtube-play\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-skype\\\",\\\"url\\\":\\\"\\\"}]\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"784ebc9\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/02\\/h6-team1.jpg\",\"id\":3383},\"title\":\"Suzanne Higgins\",\"position\":\"Senior Consultant\",\"desc\":\"He has extensive experience in\\norganizational design, business process reengineering.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-youtube-play\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-skype\\\",\\\"url\\\":\\\"\\\"}]\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5fa0e23\"}],\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"360\",\"height\":\"360\"},\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"51a18258\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ca2bbec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f546273\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#F0F0F1\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"168b53c2\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(6081,4361,'_wp_old_date','2021-04-28'),(6082,4350,'_wp_old_date','2021-04-28'),(6083,4349,'_wp_old_date','2021-04-28'),(6105,4508,'_wp_page_template','default'),(6106,4508,'_elementor_edit_mode','builder'),(6107,4508,'_elementor_template_type','wp-page'),(6108,4508,'_elementor_version','3.2.2'),(6109,4508,'_elementor_data','[{\"id\":\"64fd72b8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"42\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"305603d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9da93fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the information below to sign up for the Dart and Pool Leagues\",\"sub_title\":\"League Information\",\"sub_title_color\":\"#595959\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"_css_classes\":\"line-sub-preset2\",\"ct_animate\":\"wow bounce\",\"text_align\":\"center\",\"sub_title_style\":\"style7\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"f725b8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"20124ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"df23ab3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"about-call\\\"><span style=\\\"color: #d90202;\\\">Dart League registration and info<\\/span><\\/h5><div><strong>Inland Empire Dart League<\\/strong><\\/div><div>\\u00a0<\\/div><div><a href=\\\"tel:509-389-6518\\\"><strong>509-389-6518<\\/strong><\\/a>\\u00a0 \\u00a0<em>Ask For Tammy (secretary)<\\/em><\\/div><div>\\u00a0<\\/div><div><strong><a href=\\\"mailto:info@dartleague.com\\\">info@dartleague.com<\\/a><\\/strong><\\/div><div>\\u00a0<\\/div><div><strong>The dart league is associated with the National Dart Association\\u00a0<\\/strong><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a6662f5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/nda.png\",\"id\":4504},\"image_size\":\"medium\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ab5c66a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ea0522\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"about-call\\\"><span style=\\\"color: #d90202;\\\">Pool League registration and info<\\/span><\\/h5><div><strong>APA of Spokane<\\/strong><\\/div><div>\\u00a0<\\/div><div><div><a href=\\\"tel:509-327-2591\\\"><strong>509-327-2591<\\/strong><\\/a><\\/div><\\/div><div>\\u00a0<\\/div><div><div><a href=\\\"http:\\/\\/poolplayers.com\\\"><strong>poolplayers.com<\\/strong><\\/a><\\/div><div>\\u00a0<\\/div><div><strong>The pool league is associated with the American Pool Players Association\\u00a0<\\/strong><\\/div><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"13ae9b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/apa.png\",\"id\":4505},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6093,4505,'_wp_attached_file','2021/05/apa.png'),(6094,4505,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:471;s:6:\"height\";i:90;s:4:\"file\";s:15:\"2021/05/apa.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"apa-300x57.png\";s:5:\"width\";i:300;s:6:\"height\";i:57;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"apa-150x90.png\";s:5:\"width\";i:150;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:14:\"apa-300x90.png\";s:5:\"width\";i:300;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:14:\"apa-250x90.png\";s:5:\"width\";i:250;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:14:\"apa-300x90.png\";s:5:\"width\";i:300;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:14:\"apa-250x90.png\";s:5:\"width\";i:250;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6078,4344,'_wp_old_date','2021-04-28'),(6079,4409,'_wp_old_date','2021-04-28'),(6080,4345,'_wp_old_date','2021-04-28'),(6110,3493,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:1;s:18:\"title_space_bottom\";i:1;s:10:\"ct_animate\";i:1;s:10:\"text_align\";i:1;}s:17:\"sub_title_section\";a:6:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:32:\"sub_title_typography_font_family\";i:1;s:32:\"sub_title_typography_font_weight\";i:1;s:15:\"sub_title_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:2;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}}'),(6111,3493,'_elementor_css','a:6:{s:4:\"time\";i:1621619395;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(6112,4509,'_wp_attached_file','2021/05/image-1.png'),(6113,4509,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1183;s:6:\"height\";i:360;s:4:\"file\";s:19:\"2021/05/image-1.png\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"image-1-300x91.png\";s:5:\"width\";i:300;s:6:\"height\";i:91;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"image-1-1024x312.png\";s:5:\"width\";i:1024;s:6:\"height\";i:312;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"image-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"image-1-768x234.png\";s:5:\"width\";i:768;s:6:\"height\";i:234;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:19:\"image-1-900x313.png\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:19:\"image-1-600x360.png\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:19:\"image-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:19:\"image-1-600x183.png\";s:5:\"width\";i:600;s:6:\"height\";i:183;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:19:\"image-1-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:19:\"image-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:19:\"image-1-600x183.png\";s:5:\"width\";i:600;s:6:\"height\";i:183;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"image-1-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6114,4510,'_wp_page_template','default'),(6115,4510,'_elementor_edit_mode','builder'),(6116,4510,'_elementor_template_type','wp-page'),(6117,4510,'_elementor_version','3.2.2'),(6118,4510,'_elementor_data','[{\"id\":\"64fd72b8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"42\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"305603d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9da93fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the information below to sign up for the Dart and Pool Leagues\",\"sub_title\":\"League Information\",\"sub_title_color\":\"#595959\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"_css_classes\":\"line-sub-preset2\",\"ct_animate\":\"wow bounce\",\"text_align\":\"center\",\"sub_title_style\":\"style7\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"f725b8f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"20124ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"df23ab3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"about-call\\\"><span style=\\\"color: #d90202;\\\">Dart League registration and info<\\/span><\\/h5><div><strong>Inland Empire Dart League<\\/strong><\\/div><div>\\u00a0<\\/div><div><a href=\\\"tel:509-389-6518\\\"><strong>509-389-6518<\\/strong><\\/a>\\u00a0 \\u00a0<em>Ask For Tammy (secretary)<\\/em><\\/div><div>\\u00a0<\\/div><div><strong><a href=\\\"mailto:info@dartleague.com\\\">info@dartleague.com<\\/a><\\/strong><\\/div><div>\\u00a0<\\/div><div><strong>The dart league is associated with the National Dart Association\\u00a0<\\/strong><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a6662f5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/nda.png\",\"id\":4504},\"image_size\":\"medium\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ab5c66a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ea0522\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"about-call\\\"><span style=\\\"color: #d90202;\\\">Pool League registration and info<\\/span><\\/h5><div><strong>APA of Spokane<\\/strong><\\/div><div>\\u00a0<\\/div><div><div><a href=\\\"tel:509-327-2591\\\"><strong>509-327-2591<\\/strong><\\/a><\\/div><\\/div><div>\\u00a0<\\/div><div><div><a href=\\\"http:\\/\\/poolplayers.com\\\"><strong>poolplayers.com<\\/strong><\\/a><\\/div><div>\\u00a0<\\/div><div><strong>The pool league is associated with the American Pool Players Association\\u00a0<\\/strong><\\/div><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"13ae9b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/apa.png\",\"id\":4505},\"image_size\":\"full\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6119,4510,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:1;s:18:\"title_space_bottom\";i:1;s:10:\"ct_animate\";i:1;s:10:\"text_align\";i:1;}s:17:\"sub_title_section\";a:6:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:32:\"sub_title_typography_font_family\";i:1;s:32:\"sub_title_typography_font_weight\";i:1;s:15:\"sub_title_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:2;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}}'),(6120,4510,'_elementor_css','a:6:{s:4:\"time\";i:1621619395;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}');
/*!40000 ALTER TABLE `wp9s_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp9s_posts`
--

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

--
-- Dumping data for table `wp9s_posts`
--

LOCK TABLES `wp9s_posts` WRITE;
/*!40000 ALTER TABLE `wp9s_posts` DISABLE KEYS */;
INSERT INTO `wp9s_posts` VALUES (237,1,'2019-11-09 02:05:09','2019-11-09 02:05:09','','author-01','','inherit','open','closed','','author-01','','','2019-11-09 02:05:09','2019-11-09 02:05:09','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/11/author-01.jpg',0,'attachment','image/jpeg',0),(238,1,'2019-11-09 02:05:10','2019-11-09 02:05:10','','author-02','','inherit','open','closed','','author-02','','','2019-11-09 02:05:10','2019-11-09 02:05:10','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/11/author-02.jpg',0,'attachment','image/jpeg',0),(397,1,'2019-11-11 07:30:40','2019-11-11 07:30:40','','testimonial-01','','inherit','open','closed','','testimonial-01','','','2019-11-11 07:30:40','2019-11-11 07:30:40','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/11/testimonial-01.jpg',0,'attachment','image/jpeg',0),(398,1,'2019-11-11 07:30:40','2019-11-11 07:30:40','','testimonial-02','','inherit','open','closed','','testimonial-02','','','2019-11-11 07:30:40','2019-11-11 07:30:40','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/11/testimonial-02.jpg',0,'attachment','image/jpeg',0),(399,1,'2019-11-11 07:30:41','2019-11-11 07:30:41','','testimonial-03','','inherit','open','closed','','testimonial-03','','','2019-11-11 07:30:41','2019-11-11 07:30:41','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/11/testimonial-03.jpg',0,'attachment','image/jpeg',0),(400,1,'2019-11-11 07:30:42','2019-11-11 07:30:42','','testimonial-04','','inherit','open','closed','','testimonial-04','','','2019-11-11 07:30:42','2019-11-11 07:30:42','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/11/testimonial-04.jpg',0,'attachment','image/jpeg',0),(401,1,'2019-11-11 07:30:43','2019-11-11 07:30:43','','testimonial-05','','inherit','open','closed','','testimonial-05','','','2019-11-11 07:30:43','2019-11-11 07:30:43','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/11/testimonial-05.jpg',0,'attachment','image/jpeg',0),(402,1,'2019-11-11 07:30:44','2019-11-11 07:30:44','','testimonial-06','','inherit','open','closed','','testimonial-06','','','2019-11-11 07:30:44','2019-11-11 07:30:44','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/11/testimonial-06.jpg',0,'attachment','image/jpeg',0),(997,1,'2019-11-23 16:18:31','2019-11-23 16:18:31','','client-01','','inherit','open','closed','','client-01','','','2019-11-23 16:18:31','2019-11-23 16:18:31','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/11/client-01.png',0,'attachment','image/png',0),(998,1,'2019-11-23 16:18:32','2019-11-23 16:18:32','','client-02','','inherit','open','closed','','client-02','','','2019-11-23 16:18:32','2019-11-23 16:18:32','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/11/client-02.png',0,'attachment','image/png',0),(999,1,'2019-11-23 16:18:33','2019-11-23 16:18:33','','client-03','','inherit','open','closed','','client-03','','','2019-11-23 16:18:33','2019-11-23 16:18:33','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/11/client-03.png',0,'attachment','image/png',0),(1000,1,'2019-11-23 16:18:34','2019-11-23 16:18:34','','client-04','','inherit','open','closed','','client-04','','','2019-11-23 16:18:34','2019-11-23 16:18:34','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/11/client-04.png',0,'attachment','image/png',0),(1512,1,'2019-11-30 07:23:08','2019-11-30 07:23:08','','bg-page-title','','inherit','open','closed','','bg-page-title','','','2019-11-30 07:23:08','2019-11-30 07:23:08','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/11/bg-page-title.jpg',0,'attachment','image/jpeg',0),(1513,1,'2019-11-30 07:28:19','2019-11-30 07:28:19','','logo-footer','','inherit','open','closed','','logo-footer','','','2019-11-30 07:28:19','2019-11-30 07:28:19','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/10/logo-footer.png',0,'attachment','image/png',0),(1516,1,'2019-11-30 07:31:11','2019-11-30 07:31:11','','bg-footer1','','inherit','open','closed','','bg-footer1','','','2019-11-30 07:31:11','2019-11-30 07:31:11','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/10/bg-footer1.png',0,'attachment','image/png',0),(1522,1,'2019-11-30 07:49:44','2019-11-30 07:49:44','','app-store','','inherit','open','closed','','app-store','','','2019-11-30 07:49:44','2019-11-30 07:49:44','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/10/app-store.png',0,'attachment','image/png',0),(1524,1,'2019-11-30 07:54:04','2019-11-30 07:54:04','','google-play','','inherit','open','closed','','google-play','','','2019-11-30 07:54:04','2019-11-30 07:54:04','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/10/google-play.png',0,'attachment','image/png',0),(1530,1,'2019-12-02 02:49:09','2019-12-02 02:49:09','','theme-01','','inherit','open','closed','','theme-01','','','2019-12-02 02:49:09','2019-12-02 02:49:09','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-01.jpg',0,'attachment','image/jpeg',0),(1531,1,'2019-12-02 02:49:13','2019-12-02 02:49:13','','theme-02','','inherit','open','closed','','theme-02','','','2019-12-02 02:49:13','2019-12-02 02:49:13','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-02.jpg',0,'attachment','image/jpeg',0),(1532,1,'2019-12-02 02:49:17','2019-12-02 02:49:17','','theme-03','','inherit','open','closed','','theme-03','','','2019-12-02 02:49:17','2019-12-02 02:49:17','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-03.jpg',0,'attachment','image/jpeg',0),(1533,1,'2019-12-02 02:49:21','2019-12-02 02:49:21','','theme-04','','inherit','open','closed','','theme-04','','','2019-12-02 02:49:21','2019-12-02 02:49:21','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-04.jpg',0,'attachment','image/jpeg',0),(1534,1,'2019-12-02 02:49:24','2019-12-02 02:49:24','','theme-05','','inherit','open','closed','','theme-05','','','2019-12-02 02:49:24','2019-12-02 02:49:24','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-05.jpg',0,'attachment','image/jpeg',0),(1535,1,'2019-12-02 02:49:28','2019-12-02 02:49:28','','theme-06','','inherit','open','closed','','theme-06','','','2019-12-02 02:49:28','2019-12-02 02:49:28','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-06.jpg',0,'attachment','image/jpeg',0),(1536,1,'2019-12-02 02:49:31','2019-12-02 02:49:31','','theme-07','','inherit','open','closed','','theme-07','','','2019-12-02 02:49:31','2019-12-02 02:49:31','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07.jpg',0,'attachment','image/jpeg',0),(1537,1,'2019-12-02 02:49:34','2019-12-02 02:49:34','','theme-08','','inherit','open','closed','','theme-08','','','2019-12-02 02:49:34','2019-12-02 02:49:34','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-08.jpg',0,'attachment','image/jpeg',0),(1538,1,'2019-12-02 02:49:35','2019-12-02 02:49:35','','theme-09','','inherit','open','closed','','theme-09','','','2019-12-02 02:49:35','2019-12-02 02:49:35','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-09.jpg',0,'attachment','image/jpeg',0),(1539,1,'2019-12-02 02:49:37','2019-12-02 02:49:37','','theme-10','','inherit','open','closed','','theme-10','','','2019-12-02 02:49:37','2019-12-02 02:49:37','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10.jpg',0,'attachment','image/jpeg',0),(1540,1,'2019-12-02 02:49:39','2019-12-02 02:49:39','','theme-11','','inherit','open','closed','','theme-11','','','2019-12-02 02:49:39','2019-12-02 02:49:39','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-11.jpg',0,'attachment','image/jpeg',0),(1541,1,'2019-12-02 02:49:40','2019-12-02 02:49:40','','theme-12','','inherit','open','closed','','theme-12','','','2019-12-02 02:49:40','2019-12-02 02:49:40','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-12.jpg',0,'attachment','image/jpeg',0),(1542,1,'2019-12-02 02:49:42','2019-12-02 02:49:42','','theme-13','','inherit','open','closed','','theme-13','','','2019-12-02 02:49:42','2019-12-02 02:49:42','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13.jpg',0,'attachment','image/jpeg',0),(1543,1,'2019-12-02 02:49:44','2019-12-02 02:49:44','','theme-14','','inherit','open','closed','','theme-14','','','2019-12-02 02:49:44','2019-12-02 02:49:44','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14.jpg',0,'attachment','image/jpeg',0),(1552,1,'2019-12-02 02:59:25','2019-12-02 02:59:25','','gallery-01','','inherit','open','closed','','gallery-01','','','2019-12-02 02:59:25','2019-12-02 02:59:25','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/gallery-01.jpg',0,'attachment','image/jpeg',0),(1553,1,'2019-12-02 02:59:29','2019-12-02 02:59:29','','gallery-02','','inherit','open','closed','','gallery-02','','','2019-12-02 02:59:29','2019-12-02 02:59:29','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/gallery-02.jpg',0,'attachment','image/jpeg',0),(1554,1,'2019-12-02 02:59:33','2019-12-02 02:59:33','','gallery-03','','inherit','open','closed','','gallery-03','','','2019-12-02 02:59:33','2019-12-02 02:59:33','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/gallery-03.jpg',0,'attachment','image/jpeg',0),(1555,1,'2019-12-02 02:59:36','2019-12-02 02:59:36','','gallery-04','','inherit','open','closed','','gallery-04','','','2019-12-02 02:59:36','2019-12-02 02:59:36','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/gallery-04.jpg',0,'attachment','image/jpeg',0),(1556,1,'2019-12-02 02:59:41','2019-12-02 02:59:41','','gallery-05','','inherit','open','closed','','gallery-05','','','2019-12-02 02:59:41','2019-12-02 02:59:41','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/gallery-05.jpg',0,'attachment','image/jpeg',0),(1557,1,'2019-12-02 02:59:45','2019-12-02 02:59:45','','gallery-06','','inherit','open','closed','','gallery-06','','','2019-12-02 02:59:45','2019-12-02 02:59:45','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/gallery-06.jpg',0,'attachment','image/jpeg',0),(1558,1,'2019-12-02 03:02:42','2019-12-02 03:02:42','','favicon','','inherit','open','closed','','favicon','','','2019-12-02 03:02:42','2019-12-02 03:02:42','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/favicon.png',0,'attachment','image/png',0),(1568,1,'2019-12-02 07:26:03','2019-12-02 07:26:03','','contact-about1','','inherit','open','closed','','contact-about1','','','2019-12-02 07:26:03','2019-12-02 07:26:03','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/contact-about1.png',0,'attachment','image/png',0),(1656,1,'2019-12-02 13:48:10','2019-12-02 13:48:10','','testimonial-07','','inherit','open','closed','','testimonial-07','','','2019-12-02 13:48:10','2019-12-02 13:48:10','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/testimonial-07.jpg',0,'attachment','image/jpeg',0),(1657,1,'2019-12-02 13:48:11','2019-12-02 13:48:11','','testimonial-08','','inherit','open','closed','','testimonial-08','','','2019-12-02 13:48:11','2019-12-02 13:48:11','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/testimonial-08.jpg',0,'attachment','image/jpeg',0),(1658,1,'2019-12-02 13:48:13','2019-12-02 13:48:13','','testimonial-09','','inherit','open','closed','','testimonial-09','','','2019-12-02 13:48:13','2019-12-02 13:48:13','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/testimonial-09.jpg',0,'attachment','image/jpeg',0),(1678,1,'2019-12-02 16:00:11','2019-12-02 16:00:11','','client-05','','inherit','open','closed','','client-05','','','2019-12-02 16:00:11','2019-12-02 16:00:11','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/client-05.png',0,'attachment','image/png',0),(1690,1,'2019-12-02 16:18:03','2019-12-02 16:18:03','','team-01','','inherit','open','closed','','team-01','','','2019-12-02 16:18:03','2019-12-02 16:18:03','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/team-01.jpg',0,'attachment','image/jpeg',0),(1691,1,'2019-12-02 16:18:05','2019-12-02 16:18:05','','team-02','','inherit','open','closed','','team-02','','','2019-12-02 16:18:05','2019-12-02 16:18:05','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/team-02.jpg',0,'attachment','image/jpeg',0),(1692,1,'2019-12-02 16:18:07','2019-12-02 16:18:07','','team-03','','inherit','open','closed','','team-03','','','2019-12-02 16:18:07','2019-12-02 16:18:07','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/team-03.jpg',0,'attachment','image/jpeg',0),(1693,1,'2019-12-02 16:18:08','2019-12-02 16:18:08','','team-04','','inherit','open','closed','','team-04','','','2019-12-02 16:18:08','2019-12-02 16:18:08','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/team-04.jpg',0,'attachment','image/jpeg',0),(1706,1,'2019-12-03 03:46:51','2019-12-03 03:46:51','','team-single','','inherit','open','closed','','team-single','','','2019-12-03 03:46:51','2019-12-03 03:46:51','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/team-single.jpg',0,'attachment','image/jpeg',0),(1860,1,'2019-12-04 08:23:42','2019-12-04 08:23:42','','theme-15','','inherit','open','closed','','theme-15','','','2019-12-04 08:23:42','2019-12-04 08:23:42','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/theme-15.jpg',0,'attachment','image/jpeg',0),(1877,1,'2019-12-04 09:34:55','2019-12-04 09:34:55','','about1','','inherit','open','closed','','about1','','','2019-12-04 09:34:55','2019-12-04 09:34:55','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/about1.png',0,'attachment','image/png',0),(1892,1,'2019-12-04 09:47:40','2019-12-04 09:47:40','','signature','','inherit','open','closed','','signature','','','2019-12-04 09:47:40','2019-12-04 09:47:40','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/signature.png',0,'attachment','image/png',0),(1896,1,'2019-12-04 09:57:44','2019-12-04 09:57:44','','about-gap','','inherit','open','closed','','about-gap','','','2019-12-04 09:57:44','2019-12-04 09:57:44','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/about-gap.png',0,'attachment','image/png',0),(1925,1,'2019-12-05 07:07:49','2019-12-05 07:07:49','','BlackBlazer','','inherit','open','closed','','blackblazer','','','2019-12-05 07:07:49','2019-12-05 07:07:49','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/BlackBlazer.jpg',0,'attachment','image/jpeg',0),(1926,1,'2019-12-05 07:07:52','2019-12-05 07:07:52','','BlackDress','','inherit','open','closed','','blackdress','','','2019-12-05 07:07:52','2019-12-05 07:07:52','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/BlackDress.jpg',0,'attachment','image/jpeg',0),(1927,1,'2019-12-05 07:07:54','2019-12-05 07:07:54','','BlackShoes','','inherit','open','closed','','blackshoes','','','2019-12-05 07:07:54','2019-12-05 07:07:54','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/BlackShoes.jpg',0,'attachment','image/jpeg',0),(1928,1,'2019-12-05 07:07:56','2019-12-05 07:07:56','','BlackSuit','','inherit','open','closed','','blacksuit','','','2019-12-05 07:07:56','2019-12-05 07:07:56','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/BlackSuit.jpg',0,'attachment','image/jpeg',0),(1929,1,'2019-12-05 07:07:58','2019-12-05 07:07:58','','CamiSkaterFront','','inherit','open','closed','','camiskaterfront','','','2019-12-05 07:07:58','2019-12-05 07:07:58','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/CamiSkaterFront.jpg',0,'attachment','image/jpeg',0),(1930,1,'2019-12-05 07:08:00','2019-12-05 07:08:00','','ChelseaBoots','','inherit','open','closed','','chelseaboots','','','2019-12-05 07:08:00','2019-12-05 07:08:00','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/ChelseaBoots.jpg',0,'attachment','image/jpeg',0),(1931,1,'2019-12-05 07:08:02','2019-12-05 07:08:02','','FlatShoes','','inherit','open','closed','','flatshoes','','','2019-12-05 07:08:02','2019-12-05 07:08:02','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/FlatShoes.jpg',0,'attachment','image/jpeg',0),(1932,1,'2019-12-05 07:08:03','2019-12-05 07:08:03','','GreyShirt','','inherit','open','closed','','greyshirt','','','2019-12-05 07:08:03','2019-12-05 07:08:03','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/GreyShirt.jpg',0,'attachment','image/jpeg',0),(1933,1,'2019-12-05 07:08:04','2019-12-05 07:08:04','','LightBlueShirt','','inherit','open','closed','','lightblueshirt','','','2019-12-05 07:08:04','2019-12-05 07:08:04','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/LightBlueShirt.jpg',0,'attachment','image/jpeg',0),(1934,1,'2019-12-05 07:08:06','2019-12-05 07:08:06','','MonochromeCamiMidi','','inherit','open','closed','','monochromecamimidi','','','2019-12-05 07:08:06','2019-12-05 07:08:06','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/MonochromeCamiMidi.jpg',0,'attachment','image/jpeg',0),(1935,1,'2019-12-05 07:08:07','2019-12-05 07:08:07','','PureSilkBlackTie','','inherit','open','closed','','puresilkblacktie','','','2019-12-05 07:08:07','2019-12-05 07:08:07','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/PureSilkBlackTie.jpg',0,'attachment','image/jpeg',0),(1936,1,'2019-12-05 07:08:08','2019-12-05 07:08:08','','PureSilkBlueTie','','inherit','open','closed','','puresilkbluetie','','','2019-12-05 07:08:08','2019-12-05 07:08:08','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/PureSilkBlueTie.jpg',0,'attachment','image/jpeg',0),(1937,1,'2019-12-05 07:08:09','2019-12-05 07:08:09','','PureSilkGreyTie','','inherit','open','closed','','puresilkgreytie','','','2019-12-05 07:08:09','2019-12-05 07:08:09','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/PureSilkGreyTie.jpg',0,'attachment','image/jpeg',0),(1938,1,'2019-12-05 07:08:10','2019-12-05 07:08:10','','SlimFitBrightBlue','','inherit','open','closed','','slimfitbrightblue','','','2019-12-05 07:08:10','2019-12-05 07:08:10','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/SlimFitBrightBlue.jpg',0,'attachment','image/jpeg',0),(1939,1,'2019-12-05 07:08:11','2019-12-05 07:08:11','','WhiteTailoredBlazer','','inherit','open','closed','','whitetailoredblazer','','','2019-12-05 07:08:11','2019-12-05 07:08:11','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/WhiteTailoredBlazer.jpg',0,'attachment','image/jpeg',0),(1940,1,'2019-12-05 07:36:35','2019-12-05 07:36:35','','theme-16','','inherit','open','closed','','theme-16','','','2019-12-05 07:36:35','2019-12-05 07:36:35','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/theme-16.jpg',0,'attachment','image/jpeg',0),(1941,1,'2019-12-05 07:36:38','2019-12-05 07:36:38','','theme-17','','inherit','open','closed','','theme-17','','','2019-12-05 07:36:38','2019-12-05 07:36:38','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/theme-17.jpg',0,'attachment','image/jpeg',0),(1942,1,'2019-12-05 07:36:42','2019-12-05 07:36:42','','theme-18','','inherit','open','closed','','theme-18','','','2019-12-05 07:36:42','2019-12-05 07:36:42','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/theme-18.jpg',0,'attachment','image/jpeg',0),(1943,1,'2019-12-05 07:36:45','2019-12-05 07:36:45','','theme-19','','inherit','open','closed','','theme-19','','','2019-12-05 07:36:45','2019-12-05 07:36:45','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/theme-19.jpg',0,'attachment','image/jpeg',0),(1944,1,'2019-12-05 07:36:48','2019-12-05 07:36:48','','theme-20','','inherit','open','closed','','theme-20','','','2019-12-05 07:36:48','2019-12-05 07:36:48','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/theme-20.jpg',0,'attachment','image/jpeg',0),(1945,1,'2019-12-05 07:36:50','2019-12-05 07:36:50','','theme-21','','inherit','open','closed','','theme-21','','','2019-12-05 07:36:50','2019-12-05 07:36:50','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/theme-21.jpg',0,'attachment','image/jpeg',0),(1946,1,'2019-12-05 07:36:53','2019-12-05 07:36:53','','theme-22','','inherit','open','closed','','theme-22','','','2019-12-05 07:36:53','2019-12-05 07:36:53','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/theme-22.jpg',0,'attachment','image/jpeg',0),(1985,1,'2019-12-05 09:15:30','2019-12-05 09:15:30','','icon-google','','inherit','open','closed','','icon-google','','','2019-12-05 09:15:30','2019-12-05 09:15:30','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/icon-google.png',0,'attachment','image/png',0),(1988,1,'2019-12-05 09:23:43','2019-12-05 09:23:43','','icon-career','','inherit','open','closed','','icon-career','','','2019-12-05 09:23:43','2019-12-05 09:23:43','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/icon-career.png',0,'attachment','image/png',0),(1989,1,'2019-12-05 09:23:45','2019-12-05 09:23:45','','icon-codecanyon','','inherit','open','closed','','icon-codecanyon','','','2019-12-05 09:23:45','2019-12-05 09:23:45','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/icon-codecanyon.png',0,'attachment','image/png',0),(1990,1,'2019-12-05 09:23:46','2019-12-05 09:23:46','','icon-envato','','inherit','open','closed','','icon-envato','','','2019-12-05 09:23:46','2019-12-05 09:23:46','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/icon-envato.png',0,'attachment','image/png',0),(1991,1,'2019-12-05 09:23:48','2019-12-05 09:23:48','','icon-themeforest','','inherit','open','closed','','icon-themeforest','','','2019-12-05 09:23:48','2019-12-05 09:23:48','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/icon-themeforest.png',0,'attachment','image/png',0),(2000,1,'2019-12-05 16:59:46','2019-12-05 16:59:46','','bg-slider-01','','inherit','open','closed','','bg-slider-01','','','2019-12-05 16:59:46','2019-12-05 16:59:46','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/bg-slider-01.jpg',0,'attachment','image/jpeg',0),(2006,1,'2019-12-05 17:06:02','2019-12-05 17:06:02','','slider-logo-01','','inherit','open','closed','','slider-logo-01','','','2019-12-05 17:06:02','2019-12-05 17:06:02','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/slider-logo-01.png',0,'attachment','image/png',0),(2007,1,'2019-12-06 02:37:22','2019-12-06 02:37:22','','bg-slider-02','','inherit','open','closed','','bg-slider-02','','','2019-12-06 02:37:22','2019-12-06 02:37:22','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/bg-slider-02.jpg',0,'attachment','image/jpeg',0),(2008,1,'2019-12-06 02:45:16','2019-12-06 02:45:16','','bg-slider-03','','inherit','open','closed','','bg-slider-03','','','2019-12-06 02:45:16','2019-12-06 02:45:16','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/bg-slider-03.jpg',0,'attachment','image/jpeg',0),(2046,1,'2019-12-06 04:32:05','2019-12-06 04:32:05','','about-02','','inherit','open','closed','','about-02','','','2019-12-06 04:32:05','2019-12-06 04:32:05','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/about-02.png',0,'attachment','image/png',0),(2056,1,'2019-12-06 07:18:49','2019-12-06 07:18:49','','bg-section-01','','inherit','open','closed','','bg-section-01','','','2019-12-06 07:18:49','2019-12-06 07:18:49','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/bg-section-01.png',0,'attachment','image/png',0),(2070,1,'2019-12-06 08:29:04','2019-12-06 08:29:04','','bg-section-02','','inherit','open','closed','','bg-section-02','','','2019-12-06 08:29:04','2019-12-06 08:29:04','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/bg-section-02.png',0,'attachment','image/png',0),(2074,1,'2019-12-06 08:46:48','2019-12-06 08:46:48','','testimonial-10','','inherit','open','closed','','testimonial-10','','','2019-12-06 08:46:48','2019-12-06 08:46:48','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/testimonial-10.jpg',0,'attachment','image/jpeg',0),(2091,1,'2019-12-07 03:23:07','2019-12-07 03:23:07','','bg-section-03','','inherit','open','closed','','bg-section-03','','','2019-12-07 03:23:07','2019-12-07 03:23:07','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/bg-section-03.png',0,'attachment','image/png',0),(2114,1,'2019-12-07 04:07:52','2019-12-07 04:07:52','','home-team-01','','inherit','open','closed','','home-team-01','','','2019-12-07 04:07:52','2019-12-07 04:07:52','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/home-team-01.jpg',0,'attachment','image/jpeg',0),(2115,1,'2019-12-07 04:07:56','2019-12-07 04:07:56','','home-team-02','','inherit','open','closed','','home-team-02','','','2019-12-07 04:07:56','2019-12-07 04:07:56','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/home-team-02.jpg',0,'attachment','image/jpeg',0),(2116,1,'2019-12-07 04:07:58','2019-12-07 04:07:58','','home-team-03','','inherit','open','closed','','home-team-03','','','2019-12-07 04:07:58','2019-12-07 04:07:58','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/home-team-03.jpg',0,'attachment','image/jpeg',0),(2117,1,'2019-12-07 04:08:23','2019-12-07 04:08:23','','home-team-04','','inherit','open','closed','','home-team-04','','','2019-12-07 04:08:23','2019-12-07 04:08:23','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/home-team-04.jpg',0,'attachment','image/jpeg',0),(2125,1,'2019-12-07 08:45:56','2019-12-07 08:45:56','','bg-section-04','','inherit','open','closed','','bg-section-04','','','2019-12-07 08:45:56','2019-12-07 08:45:56','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/bg-section-04.png',0,'attachment','image/png',0),(2170,1,'2019-12-07 15:24:17','2019-12-07 15:24:17','','home-author-01','','inherit','open','closed','','home-author-01','','','2019-12-07 15:24:17','2019-12-07 15:24:17','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/home-author-01.jpg',0,'attachment','image/jpeg',0),(2171,1,'2019-12-07 15:24:19','2019-12-07 15:24:19','','home-author-02','','inherit','open','closed','','home-author-02','','','2019-12-07 15:24:19','2019-12-07 15:24:19','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/home-author-02.jpg',0,'attachment','image/jpeg',0),(2173,1,'2019-12-07 16:19:29','2019-12-07 16:19:29','','award-01','','inherit','open','closed','','award-01','','','2019-12-07 16:19:29','2019-12-07 16:19:29','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/award-01.jpg',0,'attachment','image/jpeg',0),(2174,1,'2019-12-07 16:19:31','2019-12-07 16:19:31','','award-02','','inherit','open','closed','','award-02','','','2019-12-07 16:19:31','2019-12-07 16:19:31','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/award-02.jpg',0,'attachment','image/jpeg',0),(2175,1,'2019-12-07 16:19:32','2019-12-07 16:19:32','','award-03','','inherit','open','closed','','award-03','','','2019-12-07 16:19:32','2019-12-07 16:19:32','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/award-03.jpg',0,'attachment','image/jpeg',0),(2176,1,'2019-12-07 16:19:34','2019-12-07 16:19:34','','award-04','','inherit','open','closed','','award-04','','','2019-12-07 16:19:34','2019-12-07 16:19:34','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/award-04.jpg',0,'attachment','image/jpeg',0),(2177,1,'2019-12-07 16:19:35','2019-12-07 16:19:35','','award-05','','inherit','open','closed','','award-05','','','2019-12-07 16:19:35','2019-12-07 16:19:35','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/award-05.jpg',0,'attachment','image/jpeg',0),(2178,1,'2019-12-07 16:19:37','2019-12-07 16:19:37','','award-06','','inherit','open','closed','','award-06','','','2019-12-07 16:19:37','2019-12-07 16:19:37','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/award-06.jpg',0,'attachment','image/jpeg',0),(2179,1,'2019-12-07 16:19:38','2019-12-07 16:19:38','','award-year','','inherit','open','closed','','award-year','','','2019-12-07 16:19:38','2019-12-07 16:19:38','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/award-year.png',0,'attachment','image/png',0),(2180,1,'2019-12-07 16:19:39','2019-12-07 16:19:39','','award','','inherit','open','closed','','award','','','2019-12-07 16:19:39','2019-12-07 16:19:39','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/award.png',0,'attachment','image/png',0),(2306,1,'2019-12-12 07:41:27','2019-12-12 07:41:27','','banner-01','','inherit','open','closed','','banner-01','','','2019-12-12 07:41:27','2019-12-12 07:41:27','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/banner-01.png',0,'attachment','image/png',0),(2319,1,'2019-12-12 08:10:52','2019-12-12 08:10:52','','signature-02','','inherit','open','closed','','signature-02','','','2019-12-12 08:10:52','2019-12-12 08:10:52','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/signature-02.png',0,'attachment','image/png',0),(2382,1,'2019-12-13 04:19:44','2019-12-13 04:19:44','','bg-section-04','','inherit','open','closed','','bg-section-04-2','','','2019-12-13 04:19:44','2019-12-13 04:19:44','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/bg-section-04.jpg',0,'attachment','image/jpeg',0),(2391,1,'2019-12-13 04:31:47','2019-12-13 04:31:47','','bg-section-05','','inherit','open','closed','','bg-section-05','','','2019-12-13 04:31:47','2019-12-13 04:31:47','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/bg-section-05.png',0,'attachment','image/png',0),(2405,1,'2019-12-13 07:11:43','2019-12-13 07:11:43','','marker-01','','inherit','open','closed','','marker-01','','','2019-12-13 07:11:43','2019-12-13 07:11:43','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/marker-01.png',0,'attachment','image/png',0),(2523,1,'2019-12-14 02:20:44','2019-12-14 02:20:44','','bg-section-06','','inherit','open','closed','','bg-section-06','','','2019-12-14 02:20:44','2019-12-14 02:20:44','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/bg-section-06.jpg',0,'attachment','image/jpeg',0),(2528,1,'2019-12-14 02:24:48','2019-12-14 02:24:48','','bg-section-07','','inherit','open','closed','','bg-section-07','','','2019-12-14 02:24:48','2019-12-14 02:24:48','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/bg-section-07.png',0,'attachment','image/png',0),(2567,1,'2019-12-14 03:45:22','2019-12-14 03:45:22','','h3-icon-01','','inherit','open','closed','','h3-icon-01','','','2019-12-14 03:45:22','2019-12-14 03:45:22','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/h3-icon-01.png',0,'attachment','image/png',0),(2569,1,'2019-12-14 03:46:33','2019-12-14 03:46:33','','h3-icon-02','','inherit','open','closed','','h3-icon-02','','','2019-12-14 03:46:33','2019-12-14 03:46:33','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/h3-icon-02.png',0,'attachment','image/png',0),(2576,1,'2019-12-14 03:59:41','2019-12-14 03:59:41','','about-03','','inherit','open','closed','','about-03','','','2019-12-14 03:59:41','2019-12-14 03:59:41','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/about-03.png',0,'attachment','image/png',0),(2602,1,'2019-12-14 09:12:55','2019-12-14 09:12:55','','bg-section-07','','inherit','open','closed','','bg-section-07-2','','','2019-12-14 09:12:55','2019-12-14 09:12:55','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/bg-section-07-1.png',0,'attachment','image/png',0),(2606,1,'2019-12-14 09:19:23','2019-12-14 09:19:23','','h3-team-02','','inherit','open','closed','','h3-team-02','','','2019-12-14 09:19:23','2019-12-14 09:19:23','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/h3-team-02.png',0,'attachment','image/png',0),(2608,1,'2019-12-14 09:26:37','2019-12-14 09:26:37','','h3-team-01','','inherit','open','closed','','h3-team-01','','','2019-12-14 09:26:37','2019-12-14 09:26:37','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/h3-team-01.jpg',0,'attachment','image/jpeg',0),(2609,1,'2019-12-14 09:26:39','2019-12-14 09:26:39','','h3-team-03','','inherit','open','closed','','h3-team-03','','','2019-12-14 09:26:39','2019-12-14 09:26:39','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/h3-team-03.jpg',0,'attachment','image/jpeg',0),(2610,1,'2019-12-14 09:26:40','2019-12-14 09:26:40','','h3-team-04','','inherit','open','closed','','h3-team-04','','','2019-12-14 09:26:40','2019-12-14 09:26:40','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/h3-team-04.jpg',0,'attachment','image/jpeg',0),(2630,1,'2019-12-15 01:28:28','2019-12-15 01:28:28','','theme-23','','inherit','open','closed','','theme-23','','','2019-12-15 01:28:28','2019-12-15 01:28:28','',0,'https://sa7717.dev34.info/wp-content/uploads/2019/12/theme-23.jpg',0,'attachment','image/jpeg',0),(3212,1,'2020-01-30 04:12:35','2020-01-30 04:12:35','','h6-logo-dark','','inherit','open','closed','','h6-logo-dark','','','2020-01-30 04:12:35','2020-01-30 04:12:35','',0,'https://sa7717.dev34.info/wp-content/uploads/2020/01/h6-logo-dark.png',0,'attachment','image/png',0),(3213,1,'2020-01-30 04:12:38','2020-01-30 04:12:38','','h6-logo-light','','inherit','open','closed','','h6-logo-light','','','2020-01-30 04:12:38','2020-01-30 04:12:38','',0,'https://sa7717.dev34.info/wp-content/uploads/2020/01/h6-logo-light.png',0,'attachment','image/png',0),(3270,1,'2020-01-31 07:00:43','2020-01-31 07:00:43','','h6-bg-slider-01','','inherit','open','closed','','h6-bg-slider-01','','','2020-01-31 07:00:43','2020-01-31 07:00:43','',0,'https://sa7717.dev34.info/wp-content/uploads/2020/01/h6-bg-slider-01.jpg',0,'attachment','image/jpeg',0),(3274,1,'2020-01-31 07:36:04','2020-01-31 07:36:04','','h6-slider-img1','','inherit','open','closed','','h6-slider-img1','','','2020-01-31 07:36:04','2020-01-31 07:36:04','',0,'https://sa7717.dev34.info/wp-content/uploads/2020/01/h6-slider-img1.png',0,'attachment','image/png',0),(3275,1,'2020-01-31 07:43:16','2020-01-31 07:43:16','','h6-shape1','','inherit','open','closed','','h6-shape1','','','2020-01-31 07:43:16','2020-01-31 07:43:16','',0,'https://sa7717.dev34.info/wp-content/uploads/2020/01/h6-shape1.png',0,'attachment','image/png',0),(3276,1,'2020-01-31 07:43:17','2020-01-31 07:43:17','','h6-shape2','','inherit','open','closed','','h6-shape2','','','2020-01-31 07:43:17','2020-01-31 07:43:17','',0,'https://sa7717.dev34.info/wp-content/uploads/2020/01/h6-shape2.png',0,'attachment','image/png',0),(3277,1,'2020-01-31 07:43:18','2020-01-31 07:43:18','','h6-shape3','','inherit','open','closed','','h6-shape3','','','2020-01-31 07:43:18','2020-01-31 07:43:18','',0,'https://sa7717.dev34.info/wp-content/uploads/2020/01/h6-shape3.png',0,'attachment','image/png',0),(3278,1,'2020-01-31 07:43:19','2020-01-31 07:43:19','','h6-shape4','','inherit','open','closed','','h6-shape4','','','2020-01-31 07:43:19','2020-01-31 07:43:19','',0,'https://sa7717.dev34.info/wp-content/uploads/2020/01/h6-shape4.png',0,'attachment','image/png',0),(3282,1,'2020-01-31 08:29:09','2020-01-31 08:29:09','','h6-bg-section-01','','inherit','open','closed','','h6-bg-section-01','','','2020-01-31 08:29:09','2020-01-31 08:29:09','',0,'https://sa7717.dev34.info/wp-content/uploads/2020/01/h6-bg-section-01.png',0,'attachment','image/png',0),(3292,1,'2020-01-31 15:40:30','2020-01-31 15:40:30','','h6-icon-service1','','inherit','open','closed','','h6-icon-service1','','','2020-01-31 15:40:30','2020-01-31 15:40:30','',0,'https://sa7717.dev34.info/wp-content/uploads/2020/01/h6-icon-service1.png',0,'attachment','image/png',0),(3294,1,'2020-01-31 15:42:59','2020-01-31 15:42:59','','h6-icon-service2','','inherit','open','closed','','h6-icon-service2','','','2020-01-31 15:42:59','2020-01-31 15:42:59','',0,'https://sa7717.dev34.info/wp-content/uploads/2020/01/h6-icon-service2.png',0,'attachment','image/png',0),(3295,1,'2020-01-31 15:43:02','2020-01-31 15:43:02','','h6-icon-service3','','inherit','open','closed','','h6-icon-service3','','','2020-01-31 15:43:02','2020-01-31 15:43:02','',0,'https://sa7717.dev34.info/wp-content/uploads/2020/01/h6-icon-service3.png',0,'attachment','image/png',0),(3304,1,'2020-02-01 08:44:00','2020-02-01 08:44:00','','h6-bg-section-01','','inherit','open','closed','','h6-bg-section-01-2','','','2020-02-01 08:44:00','2020-02-01 08:44:00','',0,'https://sa7717.dev34.info/wp-content/uploads/2020/02/h6-bg-section-01.jpg',0,'attachment','image/jpeg',0),(3315,1,'2020-02-01 10:27:06','2020-02-01 10:27:06','','h6-counter-icon1','','inherit','open','closed','','h6-counter-icon1','','','2020-02-01 10:27:06','2020-02-01 10:27:06','',0,'https://sa7717.dev34.info/wp-content/uploads/2020/02/h6-counter-icon1.png',0,'attachment','image/png',0),(3316,1,'2020-02-01 10:27:11','2020-02-01 10:27:11','','h6-counter-icon2','','inherit','open','closed','','h6-counter-icon2','','','2020-02-01 10:27:11','2020-02-01 10:27:11','',0,'https://sa7717.dev34.info/wp-content/uploads/2020/02/h6-counter-icon2.png',0,'attachment','image/png',0),(3317,1,'2020-02-01 10:27:17','2020-02-01 10:27:17','','h6-counter-icon3','','inherit','open','closed','','h6-counter-icon3','','','2020-02-01 10:27:17','2020-02-01 10:27:17','',0,'https://sa7717.dev34.info/wp-content/uploads/2020/02/h6-counter-icon3.png',0,'attachment','image/png',0),(3318,1,'2020-02-01 10:27:24','2020-02-01 10:27:24','','h6-counter-icon4','','inherit','open','closed','','h6-counter-icon4','','','2020-02-01 10:27:24','2020-02-01 10:27:24','',0,'https://sa7717.dev34.info/wp-content/uploads/2020/02/h6-counter-icon4.png',0,'attachment','image/png',0),(3348,1,'2020-02-01 17:04:11','2020-02-01 17:04:11','','h6-shape-5','','inherit','open','closed','','h6-shape-5','','','2020-02-01 17:04:11','2020-02-01 17:04:11','',0,'https://sa7717.dev34.info/wp-content/uploads/2020/02/h6-shape-5.png',0,'attachment','image/png',0),(3349,1,'2020-02-01 17:04:13','2020-02-01 17:04:13','','h6-shape-6','','inherit','open','closed','','h6-shape-6','','','2020-02-01 17:04:13','2020-02-01 17:04:13','',0,'https://sa7717.dev34.info/wp-content/uploads/2020/02/h6-shape-6.png',0,'attachment','image/png',0),(3350,1,'2020-02-01 17:04:15','2020-02-01 17:04:15','','h6-shape-7','','inherit','open','closed','','h6-shape-7','','','2020-02-01 17:04:15','2020-02-01 17:04:15','',0,'https://sa7717.dev34.info/wp-content/uploads/2020/02/h6-shape-7.png',0,'attachment','image/png',0),(3364,1,'2020-02-02 02:59:28','2020-02-02 02:59:28','','h6-service-icon4','','inherit','open','closed','','h6-service-icon4','','','2020-02-02 02:59:28','2020-02-02 02:59:28','',0,'https://sa7717.dev34.info/wp-content/uploads/2020/02/h6-service-icon4.png',0,'attachment','image/png',0),(3365,1,'2020-02-02 02:59:30','2020-02-02 02:59:30','','h6-service-icon5','','inherit','open','closed','','h6-service-icon5','','','2020-02-02 02:59:30','2020-02-02 02:59:30','',0,'https://sa7717.dev34.info/wp-content/uploads/2020/02/h6-service-icon5.png',0,'attachment','image/png',0),(3366,1,'2020-02-02 02:59:31','2020-02-02 02:59:31','','h6-service-icon6','','inherit','open','closed','','h6-service-icon6','','','2020-02-02 02:59:31','2020-02-02 02:59:31','',0,'https://sa7717.dev34.info/wp-content/uploads/2020/02/h6-service-icon6.png',0,'attachment','image/png',0),(3367,1,'2020-02-02 02:59:33','2020-02-02 02:59:33','','h6-service-icon7','','inherit','open','closed','','h6-service-icon7','','','2020-02-02 02:59:33','2020-02-02 02:59:33','',0,'https://sa7717.dev34.info/wp-content/uploads/2020/02/h6-service-icon7.png',0,'attachment','image/png',0),(3368,1,'2020-02-02 02:59:35','2020-02-02 02:59:35','','h6-service-icon8','','inherit','open','closed','','h6-service-icon8','','','2020-02-02 02:59:35','2020-02-02 02:59:35','',0,'https://sa7717.dev34.info/wp-content/uploads/2020/02/h6-service-icon8.png',0,'attachment','image/png',0),(3369,1,'2020-02-02 02:59:37','2020-02-02 02:59:37','','h6-service-icon9','','inherit','open','closed','','h6-service-icon9','','','2020-02-02 02:59:37','2020-02-02 02:59:37','',0,'https://sa7717.dev34.info/wp-content/uploads/2020/02/h6-service-icon9.png',0,'attachment','image/png',0),(3376,1,'2020-02-02 04:07:46','2020-02-02 04:07:46','','demo9','','inherit','open','closed','','demo9','','','2020-02-02 04:07:46','2020-02-02 04:07:46','',0,'https://sa7717.dev34.info/wp-content/uploads/2020/02/demo9.jpg',0,'attachment','image/jpeg',0),(3383,1,'2020-02-02 09:08:29','2020-02-02 09:08:29','','h6-team1','','inherit','open','closed','','h6-team1','','','2020-02-02 09:08:29','2020-02-02 09:08:29','',0,'https://sa7717.dev34.info/wp-content/uploads/2020/02/h6-team1.jpg',0,'attachment','image/jpeg',0),(3399,1,'2020-02-02 10:27:43','2020-02-02 10:27:43','','h6-team2','','inherit','open','closed','','h6-team2','','','2020-02-02 10:27:43','2020-02-02 10:27:43','',0,'https://sa7717.dev34.info/wp-content/uploads/2020/02/h6-team2.jpg',0,'attachment','image/jpeg',0),(3400,1,'2020-02-02 10:27:45','2020-02-02 10:27:45','','h6-team3','','inherit','open','closed','','h6-team3','','','2020-02-02 10:27:45','2020-02-02 10:27:45','',0,'https://sa7717.dev34.info/wp-content/uploads/2020/02/h6-team3.jpg',0,'attachment','image/jpeg',0),(3401,1,'2020-02-02 10:27:47','2020-02-02 10:27:47','','h6-team4','','inherit','open','closed','','h6-team4','','','2020-02-02 10:27:47','2020-02-02 10:27:47','',0,'https://sa7717.dev34.info/wp-content/uploads/2020/02/h6-team4.jpg',0,'attachment','image/jpeg',0),(3411,1,'2020-02-02 13:18:02','2020-02-02 13:18:02','','h6-bg-section-02','','inherit','open','closed','','h6-bg-section-02','','','2020-02-02 13:18:02','2020-02-02 13:18:02','',0,'https://sa7717.dev34.info/wp-content/uploads/2020/02/h6-bg-section-02.png',0,'attachment','image/png',0),(3468,1,'2020-02-03 02:54:04','2020-02-03 02:54:04','','h6-tax','','inherit','open','closed','','h6-tax','','','2020-02-03 02:54:04','2020-02-03 02:54:04','',0,'https://sa7717.dev34.info/wp-content/uploads/2020/02/h6-tax.png',0,'attachment','image/png',0),(3614,1,'2020-02-07 06:44:34','2020-02-07 06:44:34','','theme23','','inherit','open','closed','','theme23','','','2020-02-07 06:44:34','2020-02-07 06:44:34','',0,'https://sa7717.dev34.info/wp-content/uploads/2020/02/theme23.jpg',0,'attachment','image/jpeg',0),(3628,1,'2020-02-07 07:07:17','2020-02-07 07:07:17','','about-section-01','','inherit','open','closed','','about-section-01','','','2020-02-07 07:07:17','2020-02-07 07:07:17','',0,'https://sa7717.dev34.info/wp-content/uploads/2020/02/about-section-01.jpg',0,'attachment','image/jpeg',0),(3663,1,'2020-02-07 10:00:49','2020-02-07 10:00:49','','about4-icon1','','inherit','open','closed','','about4-icon1','','','2020-02-07 10:00:49','2020-02-07 10:00:49','',0,'https://sa7717.dev34.info/wp-content/uploads/2020/02/about4-icon1.png',0,'attachment','image/png',0),(3664,1,'2020-02-07 10:00:51','2020-02-07 10:00:51','','about4-icon2','','inherit','open','closed','','about4-icon2','','','2020-02-07 10:00:51','2020-02-07 10:00:51','',0,'https://sa7717.dev34.info/wp-content/uploads/2020/02/about4-icon2.png',0,'attachment','image/png',0),(3665,1,'2020-02-07 10:00:53','2020-02-07 10:00:53','','about4-icon3','','inherit','open','closed','','about4-icon3','','','2020-02-07 10:00:53','2020-02-07 10:00:53','',0,'https://sa7717.dev34.info/wp-content/uploads/2020/02/about4-icon3.png',0,'attachment','image/png',0),(3669,1,'2020-02-07 10:07:29','2020-02-07 10:07:29','','about4-bg-section1','','inherit','open','closed','','about4-bg-section1','','','2020-02-07 10:07:29','2020-02-07 10:07:29','',0,'https://sa7717.dev34.info/wp-content/uploads/2020/02/about4-bg-section1.png',0,'attachment','image/png',0),(3679,1,'2020-02-07 15:08:10','2020-02-07 15:08:10','','h4-about1','','inherit','open','closed','','h4-about1-2','','','2020-02-07 15:08:10','2020-02-07 15:08:10','',0,'https://sa7717.dev34.info/wp-content/uploads/2020/02/h4-about1.png',0,'attachment','image/png',0),(3681,1,'2020-02-07 15:10:20','2020-02-07 15:10:20','','about4-shape1','','inherit','open','closed','','about4-shape1','','','2020-02-07 15:10:20','2020-02-07 15:10:20','',0,'https://sa7717.dev34.info/wp-content/uploads/2020/02/about4-shape1.png',0,'attachment','image/png',0),(3852,1,'2020-02-08 16:16:38','2020-02-08 16:16:38','','contact-v4','','inherit','open','closed','','contact-v4','','','2020-02-08 16:16:38','2020-02-08 16:16:38','',0,'https://sa7717.dev34.info/wp-content/uploads/2020/02/contact-v4.png',0,'attachment','image/png',0),(3937,1,'2020-02-09 13:31:39','2020-02-09 13:31:39','','h4-about1','','inherit','open','closed','','h4-about1','','','2020-02-09 13:31:39','2020-02-09 13:31:39','',0,'https://sa7717.dev34.info/wp-content/uploads/2020/02/h4-about1-1.png',0,'attachment','image/png',0),(3945,1,'2020-02-15 09:16:47','2020-02-15 09:16:47','','woocommerce-placeholder','','inherit','open','closed','','woocommerce-placeholder','','','2020-02-15 09:16:47','2020-02-15 09:16:47','',0,'https://sa7717.dev34.info/wp-content/uploads/woocommerce-placeholder.png',0,'attachment','image/png',0),(20,1,'2019-10-30 03:38:33','2019-10-30 03:38:33','<a href=\"https://demo.casethemes.net/consultio-tax/\">\n							<img width=\"223\" height=\"59\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/10/logo-footer.png\" alt=\"\" />								</a>\n			    <ul>\n                    <li>\n                       30 Commercial Road<br /> Fratton, Australia                    \n                           </li>\n                    <li>\n                       1-888-452-1505                    \n                           </li>\n            </ul>\n		Open Hours:Mon - Sat: 8 am - 5 pm,<br/>\nSunday: CLOSED		\n    <h3>\n        Links\n        <i></i>\n    </h3>\n        <ul id=\"menu-menu-footer-links\"><li id=\"menu-item-65\"><a href=\"https://demo.casethemes.net/consultio-tax/team/\">Team</a></li>\n<li id=\"menu-item-509\"><a href=\"https://demo.casethemes.net/consultio-tax/services-v-1/\">Services</a></li>\n<li id=\"menu-item-67\"><a href=\"https://demo.casethemes.net/consultio-tax/faq/\">FAQ</a></li>\n<li id=\"menu-item-68\"><a href=\"https://demo.casethemes.net/consultio-tax/about/\">About us</a></li>\n<li id=\"menu-item-103\"><a href=\"#\">Gallery</a></li>\n<li id=\"menu-item-511\"><a href=\"https://demo.casethemes.net/consultio-tax/testimonials/\">Testimonials</a></li>\n<li id=\"menu-item-70\"><a href=\"https://demo.casethemes.net/consultio-tax/contact/\">Contact</a></li>\n<li id=\"menu-item-512\"><a href=\"https://demo.casethemes.net/consultio-tax/blog-grid-3-columns/\">News</a></li>\n<li id=\"menu-item-513\"><a href=\"https://demo.casethemes.net/consultio-tax/portfolio-grid/\">Portfolio</a></li>\n</ul>    \n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		Send us a newsletter to get update		\n    		    	    <form action=\"https://demo.casethemes.net/consultio-tax/?na=s\" method=\"post\" onsubmit=\"return newsletter_check(this)\">\n	    	<input type=\"hidden\" name=\"nr\" value=\"widget-minimal\"/>\n	    		<label>Your mail address</label>\n	    		<input type=\"email\" required name=\"ne\" value=\"\" placeholder=\"Your mail address\">\n	    		<input type=\"submit\" value=\"Subscribe\">\n	    </form>\n											<a href=\"#\" target=\"_blank\" rel=\"noopener noreferrer\">\n							<img width=\"157\" height=\"46\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/10/app-store.png\" alt=\"\" />								</a>\n											<a href=\"#\" target=\"_blank\" rel=\"noopener noreferrer\">\n							<img width=\"145\" height=\"45\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/10/google-play.png\" alt=\"\" />								</a>\n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n		2019 © All rights reserved by <a href=\"https://themeforest.net/user/case-themes/portfolio\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">CaseThemes</a>','Footer - Default','','publish','closed','closed','','footer-1','','','2019-10-30 03:38:33','2019-10-30 03:38:33','',0,'https://demo.casethemes.net/consultio-tax/?post_type=footer&amp;p=20',0,'footer','',0),(1214,1,'2019-11-25 12:06:00','2019-11-25 12:06:00','<h3>Basic Plan</h3>\n        The argument in favor of using to filler text goes something.\n    $29/ monthly\n                    <ul>\n                                    <li><del>24/7 system monitoring</del></li>\n                                    <li>Security management</li>\n                                    <li><del>Secure finance backup</del></li>\n                                    <li><del>Remote support</del></li>\n                            </ul>\n                <a href=\"#\">Get a free trial</a>\n            Recommended\n        <h3>Standard Plan</h3>\n        The argument in favor of using to filler text goes something.\n    $49/ monthly\n                    <ul>\n                                    <li>24/7 system monitoring</li>\n                                    <li><del>Security management</del></li>\n                                    <li>Secure finance backup</li>\n                                    <li><del>Remote support</del></li>\n                            </ul>\n                <a href=\"#\">Get a free trial</a>\n        <h3>Extended Plan</h3>\n        The argument in favor of using to filler text goes something.\n    $59/ monthly\n                    <ul>\n                                    <li>24/7 system monitoring</li>\n                                    <li>Security management</li>\n                                    <li>Secure finance backup</li>\n                                    <li>Remote support</li>\n                            </ul>\n                <a href=\"#\">Get a free trial</a>','Pricing - Month','','publish','closed','closed','','pricing-month','','','2019-11-25 12:06:00','2019-11-25 12:06:00','',0,'https://demo.casethemes.net/consultio-tax/?elementor_library=pricing-month',0,'elementor_library','',0),(1217,1,'2019-11-25 12:06:13','2019-11-25 12:06:13','<h3>Basic Plan</h3>\n        The argument in favor of using to filler text goes something.\n    $49/ year\n                    <ul>\n                                    <li><del>24/7 system monitoring</del></li>\n                                    <li>Security management</li>\n                                    <li><del>Secure finance backup</del></li>\n                                    <li><del>Remote support</del></li>\n                            </ul>\n                <a href=\"#\">Get a free trial</a>\n            Recommended\n        <h3>Standard Plan</h3>\n        The argument in favor of using to filler text goes something.\n    $89/ year\n                    <ul>\n                                    <li>24/7 system monitoring</li>\n                                    <li><del>Security management</del></li>\n                                    <li>Secure finance backup</li>\n                                    <li><del>Remote support</del></li>\n                            </ul>\n                <a href=\"#\">Get a free trial</a>\n        <h3>Extended Plan</h3>\n        The argument in favor of using to filler text goes something.\n    $120/ year\n                    <ul>\n                                    <li>24/7 system monitoring</li>\n                                    <li>Security management</li>\n                                    <li>Secure finance backup</li>\n                                    <li>Remote support</li>\n                            </ul>\n                <a href=\"#\">Get a free trial</a>','Pricing - Year','','publish','closed','closed','','pricing-year','','','2019-11-25 12:06:13','2019-11-25 12:06:13','',0,'https://demo.casethemes.net/consultio-tax/?elementor_library=pricing-year',0,'elementor_library','',0),(1383,1,'2019-11-27 01:55:00','2019-11-27 01:55:00','','No Footer','','publish','closed','closed','','no-footer','','','2019-11-27 01:55:00','2019-11-27 01:55:00','',0,'https://demo.casethemes.net/consultio-tax/?post_type=footer&amp;p=1383',0,'footer','',0),(2331,1,'2019-12-12 09:16:28','2019-12-12 09:16:28','Forging relationships between multi-national corporations, governments and global NGOs begins with connections between people. 		\n                                            Corporate\n                70%\n                                            Commercial\n                98%\n                                            Business\n                80%','Tab 01','','publish','closed','closed','','tab-01','','','2019-12-12 09:16:28','2019-12-12 09:16:28','',0,'https://demo.casethemes.net/consultio-tax/?post_type=elementor_library&amp;p=2331',0,'elementor_library','',0),(2439,1,'2019-12-13 08:25:31','2019-12-13 08:25:31','Case Studies\n	    <h3>\n        Look how wonderful work we have done!    </h3>\n		At vero eos et accusamus et iusto odio digni goiku\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. 		\n										<img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/elementor/thumbs/theme-11-ohk30az46cr12khwk7piw16t7i0j85bx17lzlj4nd2.jpg\" title=\"theme-11\" alt=\"theme-11\" />											\n	    <h3>\n        Data Analytics    </h3>\n		Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.Eveniet in vulputate velit esse molestie cons to\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\nsim. Temporibus autem.		\n			    <ul>\n                    <li>\n                                    <label>Category:</label>\n                                    Strategy\n                            </li>\n                    <li>\n                                    <label>Client:</label>\n                                    Real Madrid C.F\n                            </li>\n                    <li>\n                                    <label>Date:</label>\n                                    24/11/2017\n                            </li>\n                    <li>\n                                    <label>Website:</label>\n                                    www.giorf.esp\n                            </li>\n            </ul>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-01-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-01\" title=\"theme-01\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/business-growth/\">Business Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/business-growth/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-02-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-02\" title=\"theme-02\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/digital-analysis/\">Digital Analysis</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/digital-analysis/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-03-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-03\" title=\"theme-03\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/chan-agency/\">Chan Agency</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/chan-agency/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-04-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-04\" title=\"theme-04\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/data-analytics/\">Data Analytics</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/data-analytics/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-05-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-05\" title=\"theme-05\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/court-imperial/\">Court Imperial</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/court-imperial/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-06-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-06\" title=\"theme-06\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/revenue-growth/\">Revenue Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/stakeholder-relations/\" rel=\"tag\">Stakeholder relations</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/revenue-growth/\">+</a>','On behalf of World Bank, an Advocom Group.','','publish','closed','closed','','on-behalf-of-world-bank-an-advocom-group','','','2019-12-13 08:25:31','2019-12-13 08:25:31','',0,'https://demo.casethemes.net/consultio-tax/?post_type=case-study&amp;p=2439',0,'case-study','',0),(2440,1,'2019-12-13 08:25:50','2019-12-13 08:25:50','Case Studies\n	    <h3>\n        Look how wonderful work we have done!    </h3>\n		At vero eos et accusamus et iusto odio digni goiku\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. 		\n										<img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/elementor/thumbs/theme-07-ohk318tb0e1coj4r2mc3dsnelddqx9295v3gvhqh52.jpg\" title=\"theme-07\" alt=\"theme-07\" />											\n	    <h3>\n        Data Analytics    </h3>\n		Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.Eveniet in vulputate velit esse molestie cons to\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\nsim. Temporibus autem.		\n			    <ul>\n                    <li>\n                                    <label>Category:</label>\n                                    Strategy\n                            </li>\n                    <li>\n                                    <label>Client:</label>\n                                    Real Madrid C.F\n                            </li>\n                    <li>\n                                    <label>Date:</label>\n                                    24/11/2017\n                            </li>\n                    <li>\n                                    <label>Website:</label>\n                                    www.giorf.esp\n                            </li>\n            </ul>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-01-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-01\" title=\"theme-01\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/business-growth/\">Business Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/business-growth/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-02-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-02\" title=\"theme-02\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/digital-analysis/\">Digital Analysis</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/digital-analysis/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-03-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-03\" title=\"theme-03\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/chan-agency/\">Chan Agency</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/chan-agency/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-04-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-04\" title=\"theme-04\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/data-analytics/\">Data Analytics</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/data-analytics/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-05-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-05\" title=\"theme-05\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/court-imperial/\">Court Imperial</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/court-imperial/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-06-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-06\" title=\"theme-06\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/revenue-growth/\">Revenue Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/stakeholder-relations/\" rel=\"tag\">Stakeholder relations</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/revenue-growth/\">+</a>','Developing a program to be alleviate poverty.','','publish','closed','closed','','developing-a-program-to-be-alleviate-poverty','','','2019-12-13 08:25:50','2019-12-13 08:25:50','',0,'https://demo.casethemes.net/consultio-tax/?post_type=case-study&amp;p=2440',0,'case-study','',0),(2441,1,'2019-12-13 08:26:17','2019-12-13 08:26:17','Case Studies\n	    <h3>\n        Look how wonderful work we have done!    </h3>\n		At vero eos et accusamus et iusto odio digni goiku\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. 		\n										<img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/elementor/thumbs/theme-08-ohk3069x86klgioqbnoe1kdi8knp5nt9ckck75bm86.jpg\" title=\"theme-08\" alt=\"theme-08\" />											\n	    <h3>\n        Data Analytics    </h3>\n		Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.Eveniet in vulputate velit esse molestie cons to\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\nsim. Temporibus autem.		\n			    <ul>\n                    <li>\n                                    <label>Category:</label>\n                                    Strategy\n                            </li>\n                    <li>\n                                    <label>Client:</label>\n                                    Real Madrid C.F\n                            </li>\n                    <li>\n                                    <label>Date:</label>\n                                    24/11/2017\n                            </li>\n                    <li>\n                                    <label>Website:</label>\n                                    www.giorf.esp\n                            </li>\n            </ul>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-01-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-01\" title=\"theme-01\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/business-growth/\">Business Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/business-growth/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-02-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-02\" title=\"theme-02\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/digital-analysis/\">Digital Analysis</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/digital-analysis/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-03-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-03\" title=\"theme-03\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/chan-agency/\">Chan Agency</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/chan-agency/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-04-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-04\" title=\"theme-04\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/data-analytics/\">Data Analytics</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/data-analytics/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-05-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-05\" title=\"theme-05\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/court-imperial/\">Court Imperial</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/court-imperial/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-06-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-06\" title=\"theme-06\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/revenue-growth/\">Revenue Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/stakeholder-relations/\" rel=\"tag\">Stakeholder relations</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/revenue-growth/\">+</a>','Supporting a unique global public-private partnership.','','publish','closed','closed','','supporting-a-unique-global-public-private-partnership','','','2019-12-13 08:26:17','2019-12-13 08:26:17','',0,'https://demo.casethemes.net/consultio-tax/?post_type=case-study&amp;p=2441',0,'case-study','',0),(2442,1,'2019-12-13 08:26:38','2019-12-13 08:26:38','Case Studies\n	    <h3>\n        Look how wonderful work we have done!    </h3>\n		At vero eos et accusamus et iusto odio digni goiku\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. 		\n										<img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/elementor/thumbs/theme-12-ohk31sjwzwsdgcc2vcv9c5o32gogew8m8ksnyax7ie.jpg\" title=\"theme-12\" alt=\"theme-12\" />											\n	    <h3>\n        Data Analytics    </h3>\n		Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.Eveniet in vulputate velit esse molestie cons to\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\nsim. Temporibus autem.		\n			    <ul>\n                    <li>\n                                    <label>Category:</label>\n                                    Strategy\n                            </li>\n                    <li>\n                                    <label>Client:</label>\n                                    Real Madrid C.F\n                            </li>\n                    <li>\n                                    <label>Date:</label>\n                                    24/11/2017\n                            </li>\n                    <li>\n                                    <label>Website:</label>\n                                    www.giorf.esp\n                            </li>\n            </ul>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-01-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-01\" title=\"theme-01\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/business-growth/\">Business Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/business-growth/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-02-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-02\" title=\"theme-02\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/digital-analysis/\">Digital Analysis</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/digital-analysis/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-03-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-03\" title=\"theme-03\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/chan-agency/\">Chan Agency</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/chan-agency/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-04-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-04\" title=\"theme-04\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/data-analytics/\">Data Analytics</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/data-analytics/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-05-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-05\" title=\"theme-05\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/court-imperial/\">Court Imperial</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/court-imperial/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-06-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-06\" title=\"theme-06\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/revenue-growth/\">Revenue Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/stakeholder-relations/\" rel=\"tag\">Stakeholder relations</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/revenue-growth/\">+</a>','International business development relationships','','publish','closed','closed','','international-business-development-relationships','','','2019-12-13 08:26:38','2019-12-13 08:26:38','',0,'https://demo.casethemes.net/consultio-tax/?post_type=case-study&amp;p=2442',0,'case-study','',0),(2699,1,'2019-12-16 03:52:10','2019-12-16 03:52:10','<a href=\"https://demo.casethemes.net/consultio-tax/\">\n							<img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/p-light-logo3.png\" title=\"\" alt=\"\" />								</a>\n			    <ul>\n                    <li>\n                       30 Commercial Road<br /> Fratton, Australia                    \n                           </li>\n                    <li>\n                       1-888-452-1505                    \n                           </li>\n            </ul>\n		Open Hours:Mon - Sat: 8 am - 5 pm,<br/>\nSunday: CLOSED		\n    <h3>\n        Links\n        <i></i>\n    </h3>\n        <ul id=\"menu-menu-footer-links\"><li id=\"menu-item-65\"><a href=\"https://demo.casethemes.net/consultio-tax/team/\">Team</a></li>\n<li id=\"menu-item-509\"><a href=\"https://demo.casethemes.net/consultio-tax/services-v-1/\">Services</a></li>\n<li id=\"menu-item-67\"><a href=\"https://demo.casethemes.net/consultio-tax/faq/\">FAQ</a></li>\n<li id=\"menu-item-68\"><a href=\"https://demo.casethemes.net/consultio-tax/about/\">About us</a></li>\n<li id=\"menu-item-103\"><a href=\"#\">Gallery</a></li>\n<li id=\"menu-item-511\"><a href=\"https://demo.casethemes.net/consultio-tax/testimonials/\">Testimonials</a></li>\n<li id=\"menu-item-70\"><a href=\"https://demo.casethemes.net/consultio-tax/contact/\">Contact</a></li>\n<li id=\"menu-item-512\"><a href=\"https://demo.casethemes.net/consultio-tax/blog-grid-3-columns/\">News</a></li>\n<li id=\"menu-item-513\"><a href=\"https://demo.casethemes.net/consultio-tax/portfolio-grid/\">Portfolio</a></li>\n</ul>    \n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		Send us a newsletter to get update		\n    		    	    <form action=\"https://demo.casethemes.net/consultio-tax/?na=s\" method=\"post\" onsubmit=\"return newsletter_check(this)\">\n	    	<input type=\"hidden\" name=\"nr\" value=\"widget-minimal\"/>\n	    		<label>Your mail address</label>\n	    		<input type=\"email\" required name=\"ne\" value=\"\" placeholder=\"Your mail address\">\n	    		<input type=\"submit\" value=\"Subscribe\">\n	    </form>\n											<a href=\"#\" target=\"_blank\" rel=\"noopener noreferrer\">\n							<img width=\"157\" height=\"46\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/10/app-store.png\" alt=\"\" />								</a>\n											<a href=\"#\" target=\"_blank\" rel=\"noopener noreferrer\">\n							<img width=\"145\" height=\"45\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/10/google-play.png\" alt=\"\" />								</a>\n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n		2019 © All rights reserved by <a href=\"https://themeforest.net/user/case-themes/portfolio\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">CaseThemes</a>','Footer - Home Startup','','publish','closed','closed','','footer-4','','','2019-12-16 03:52:10','2019-12-16 03:52:10','',0,'https://demo.casethemes.net/consultio-tax/?post_type=footer&amp;p=2699',0,'footer','',0),(3201,1,'2020-01-30 03:58:07','2020-01-30 03:58:07','<img width=\"466\" height=\"178\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Screen-Shot-2021-03-26-at-1.45.54-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Screen-Shot-2021-03-26-at-1.45.54-PM.png 466w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Screen-Shot-2021-03-26-at-1.45.54-PM-300x115.png 300w\" sizes=\"(max-width: 466px) 100vw, 466px\" />											\n					<ul>\n							<li>\n					<a href=\"tel:%20509-326-1551 \">						\n										509-326-1551 \n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:%20systemamusement@comcast.net\">						\n										systemamusement@comcast.net\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:%20info@systemamusement.com\">						\n										Mon - Sat: 8 am - 5 pm, Sunday: CLOSED\n											</a>\n									</li>\n						</ul>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n    <h3>\n        Navigation\n        <i></i>\n    </h3>\n        <ul id=\"menu-footer-1\"><li id=\"menu-item-4342\"><a href=\"#\">Home</a></li>\n<li id=\"menu-item-4343\"><a href=\"#\">About</a></li>\n<li id=\"menu-item-4344\"><a href=\"#\">Services</a></li>\n<li id=\"menu-item-4345\"><a href=\"#\">Equipment</a></li>\n<li id=\"menu-item-4361\"><a href=\"#\">League Info</a>\n<ul>\n	<li id=\"menu-item-4347\"><a href=\"#\">Pool League</a></li>\n	<li id=\"menu-item-4348\"><a href=\"#\">Dart League</a></li>\n</ul>\n</li>\n<li id=\"menu-item-4350\"><a href=\"#\">Pinball Locator</a></li>\n<li id=\"menu-item-4349\"><a href=\"#\">Contact</a></li>\n</ul>    \n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		<p style=\"text-align: center;\">Send us a newsletter to get update</p>		\n	   		    	<form action=\"https://sa7717.dev34.info/?na=s\" method=\"post\" onsubmit=\"return newsletter_check(this)\">\n		    	<input type=\"hidden\" name=\"nr\" value=\"widget-minimal\"/>\n		    		<label>Your mail address</label>\n		    		<input type=\"email\" required name=\"ne\" value=\"\" placeholder=\"Your mail address\">\n		    		<input type=\"submit\" value=\"Subscribe\">\n		    </form>\n		<p>2021 © System Amusements. All rights reserved.</p>','Footer Tax Consulting','','publish','closed','closed','','footer-5-tax-consulting','','','2021-04-14 22:27:24','2021-04-14 22:27:24','',0,'https://demo.casethemes.net/consultio-tax/?post_type=footer&#038;p=3201',0,'footer','',0),(4362,1,'2021-03-27 21:50:50','2021-03-27 21:50:50','<img width=\"466\" height=\"178\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Screen-Shot-2021-03-26-at-1.45.54-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Screen-Shot-2021-03-26-at-1.45.54-PM.png 466w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Screen-Shot-2021-03-26-at-1.45.54-PM-300x115.png 300w\" sizes=\"(max-width: 466px) 100vw, 466px\" />											\n					<ul>\n							<li>\n					<a href=\"tel:%20509-993-4955\">						\n										509-993-4955\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:%20info@systemamusement.com\">						\n										info@systemamusement.com\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:%20info@systemamusement.com\">						\n										Mon - Sat: 8 am - 5 pm, Sunday: CLOSED\n											</a>\n									</li>\n						</ul>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n    <h3>\n        Navigation\n        <i></i>\n    </h3>\n        <ul id=\"menu-footer-1\"><li id=\"menu-item-4342\"><a href=\"#\">Home</a></li>\n<li id=\"menu-item-4343\"><a href=\"#\">About</a></li>\n<li id=\"menu-item-4344\"><a href=\"#\">Services</a></li>\n<li id=\"menu-item-4345\"><a href=\"#\">Equipment</a></li>\n<li id=\"menu-item-4361\"><a href=\"#\">League Info</a>\n<ul>\n	<li id=\"menu-item-4347\"><a href=\"#\">Pool League</a></li>\n	<li id=\"menu-item-4348\"><a href=\"#\">Dart League</a></li>\n</ul>\n</li>\n<li id=\"menu-item-4350\"><a href=\"#\">Pinball Locator</a></li>\n<li id=\"menu-item-4349\"><a href=\"#\">Contact</a></li>\n</ul>    \n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		<p style=\"text-align: center;\">Send us a newsletter to get update</p>		\n	   		    	<form action=\"https://sa7717.dev34.info/?na=s\" method=\"post\" onsubmit=\"return newsletter_check(this)\">\n		    	<input type=\"hidden\" name=\"nr\" value=\"widget-minimal\"/>\n		    		<label>Your mail address</label>\n		    		<input type=\"email\" required name=\"ne\" value=\"\" placeholder=\"Your mail address\">\n		    		<input type=\"submit\" value=\"Subscribe\">\n		    </form>\n		<p>2021 © System Amusements. All rights reserved.</p>','Footer Tax Consulting','','inherit','closed','closed','','3201-revision-v1','','','2021-03-27 21:50:50','2021-03-27 21:50:50','',3201,'https://sa7717.dev34.info/?p=4362',0,'revision','',0),(3808,1,'2020-02-08 15:00:45','2020-02-08 15:00:45','<h3>\n                        Want to learn details about us?                    \n            </h3>\n		Download our brochure for details of our work		\n        <a href=\"#\" data-wow-delay=\"ms\">\n                Download Brochure\n    </a>\n											<a href=\"https://demo.casethemes.net/consultio-tax/\">\n							<img width=\"601\" height=\"159\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/01/h6-logo-light.png\" alt=\"\" srcset=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/01/h6-logo-light.png 601w, https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/01/h6-logo-light-300x79.png 300w\" sizes=\"(max-width: 601px) 100vw, 601px\" />								</a>\n			    <ul>\n                    <li>\n                       30 Commercial Road<br /> Fratton, Australia                    \n                           </li>\n                    <li>\n                       1-888-452-1505                    \n                           </li>\n            </ul>\n		Open Hours:Mon - Sat: 8 am - 5 pm,<br/>\nSunday: CLOSED		\n    <h3>\n        Links\n        <i></i>\n    </h3>\n        <ul id=\"menu-menu-footer-links\"><li id=\"menu-item-65\"><a href=\"https://demo.casethemes.net/consultio-tax/team/\">Team</a></li>\n<li id=\"menu-item-509\"><a href=\"https://demo.casethemes.net/consultio-tax/services-v-1/\">Services</a></li>\n<li id=\"menu-item-67\"><a href=\"https://demo.casethemes.net/consultio-tax/faq/\">FAQ</a></li>\n<li id=\"menu-item-68\"><a href=\"https://demo.casethemes.net/consultio-tax/about/\">About us</a></li>\n<li id=\"menu-item-103\"><a href=\"#\">Gallery</a></li>\n<li id=\"menu-item-511\"><a href=\"https://demo.casethemes.net/consultio-tax/testimonials/\">Testimonials</a></li>\n<li id=\"menu-item-70\"><a href=\"https://demo.casethemes.net/consultio-tax/contact/\">Contact</a></li>\n<li id=\"menu-item-512\"><a href=\"https://demo.casethemes.net/consultio-tax/blog-grid-3-columns/\">News</a></li>\n<li id=\"menu-item-513\"><a href=\"https://demo.casethemes.net/consultio-tax/portfolio-grid/\">Portfolio</a></li>\n</ul>    \n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		Send us a newsletter to get update		\n    		    	    <form action=\"https://demo.casethemes.net/consultio-tax/?na=s\" method=\"post\" onsubmit=\"return newsletter_check(this)\">\n	    	<input type=\"hidden\" name=\"nr\" value=\"widget-minimal\"/>\n	    		<label>Your mail address</label>\n	    		<input type=\"email\" required name=\"ne\" value=\"\" placeholder=\"Your mail address\">\n	    		<input type=\"submit\" value=\"Subscribe\">\n	    </form>\n											<a href=\"#\" target=\"_blank\" rel=\"noopener noreferrer\">\n							<img width=\"157\" height=\"46\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/10/app-store.png\" alt=\"\" />								</a>\n											<a href=\"#\" target=\"_blank\" rel=\"noopener noreferrer\">\n							<img width=\"145\" height=\"45\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/10/google-play.png\" alt=\"\" />								</a>\n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n		2019 © All rights reserved by <a href=\"https://themeforest.net/user/case-themes/portfolio\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">CaseThemes</a>','Footer - Inner Page','','publish','closed','closed','','footer-6-inner-page','','','2020-02-08 15:00:45','2020-02-08 15:00:45','',0,'https://demo.casethemes.net/consultio-tax/?post_type=footer&amp;p=3808',0,'footer','',0),(3872,1,'2020-02-09 02:46:59','2020-02-09 02:46:59','<h3>New Business</h3>\n    1-4 Employees\n    $499\n        Plus One-Time Bambee In-Depth HR Audit For: <cite>$500</cite>    \n            <a href=\"#\">Try now</a>\n    Best choice\n    <h3>Small Business</h3>\n    5-19 Employees\n    $599\n        Plus One-Time Bambee In-Depth HR Audit For: <cite>$500</cite>    \n            <a href=\"#\">Try now</a>\n    <h3>Growing Business</h3>\n    20-39 Employees\n    $599\n        Plus One-Time Bambee In-Depth HR Audit For: <cite>$1000</cite>    \n            <a href=\"#\">Try now</a>\n    <h3>Large Business</h3>\n    Unlimited Employees\n    $699\n        Plus One-Time Bambee In-Depth HR Audit For: <cite>$1500</cite>    \n            <a href=\"#\">Try now</a>','Pricing - Year Style 2','','publish','closed','closed','','pricing-year-style-2','','','2020-02-09 02:46:59','2020-02-09 02:46:59','',0,'https://demo.casethemes.net/consultio-tax/?post_type=elementor_library&amp;p=3872',0,'elementor_library','',0),(3876,1,'2020-02-09 02:45:49','2020-02-09 02:45:49','<h3>New Business</h3>\n    1-4 Employees\n    $99\n        Plus One-Time Bambee In-Depth HR Audit For: <cite>$500</cite>    \n            <a href=\"#\">Try now</a>\n    Best choice\n    <h3>Small Business</h3>\n    5-19 Employees\n    $199\n        Plus One-Time Bambee In-Depth HR Audit For: <cite>$500</cite>    \n            <a href=\"#\">Try now</a>\n    <h3>Growing Business</h3>\n    20-39 Employees\n    $299\n        Plus One-Time Bambee In-Depth HR Audit For: <cite>$1000</cite>    \n            <a href=\"#\">Try now</a>\n    <h3>Large Business</h3>\n    Unlimited Employees\n    $399\n        Plus One-Time Bambee In-Depth HR Audit For: <cite>$1500</cite>    \n            <a href=\"#\">Try now</a>','Pricing - Month Style 2','','publish','closed','closed','','pricing-month-style-2','','','2020-02-09 02:45:49','2020-02-09 02:45:49','',0,'https://demo.casethemes.net/consultio-tax/?post_type=elementor_library&amp;p=3876',0,'elementor_library','',0),(3948,1,'2020-07-25 10:42:58','2020-07-25 10:42:58','','Default Kit','','publish','closed','closed','','default-kit','','','2020-07-25 10:42:58','2020-07-25 10:42:58','',0,'https://demo.casethemes.net/consultio-tax/?elementor_library=default-kit',0,'elementor_library','',0),(3953,1,'2020-07-25 10:44:16','2020-07-25 10:44:16','<h3>\n                        Multi Pages                    \n            </h3>\n			    <ul>\n                        <li><a href=\"http://demo.casethemes.net/consultio/\">\n                                                                                                            Finance                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-finance2/\">\n                                                                                                            Finance 2                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-rtl/\">\n                                                                                                            Finance RTL                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-business/\">\n                                                                                                            Business 1                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-business2/\">\n                                                                                                            Business 2                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-corporate1\">\n                                                                                                            Corporate 1                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-corporate2\">\n                                                                                                            Corporate 2                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-corporate3\">\n                                                                                                            Corporate 3                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-law/\">\n                                                                                                            Law                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-startup/\">\n                                                                                                            Startup                                    </a></li>\n            </ul>\n	    <h3>\n                        Multi Pages                    \n            </h3>\n			    <ul>\n                        <li><a href=\"http://demo.casethemes.net/consultio-hr/\">\n                                                                                                            Human Resource                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-coach/\">\n                                                                                                            Life Coach                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-marketing/\">\n                                                                                                            Marketing                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-medical/\">\n                                                                                                            Medical                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-it/\">\n                                                                                                            IT Solution                                    </a></li>\n                        <li><a href=\"https://demo.casethemes.net/consultio-tax/\">\n                                                                                                            Tax Consulting                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-insurance/\">\n                                                                                                            Insurance                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-corona/\">\n                                                                                                            Corona                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-consulting/\">\n                                                                                                            Consulting                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-software/\">\n                                                                                                            Software                                    </a></li>\n            </ul>\n	    <h3>\n                        One Page                    \n            </h3>\n			    <ul>\n                        <li><a href=\"http://demo.casethemes.net/consultio/home-onepage\">\n                                                                                                            Finance                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-finance2/home-onepage\">\n                                                                                                            Finance 2                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-rtl/home-onepage\">\n                                                                                                            Finance RTL                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-business/home-onepage\">\n                                                                                                            Business 1                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-business2/home-onepage\">\n                                                                                                            Business 2                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-corporate1/home-onepage\">\n                                                                                                            Corporate 1                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-corporate2/home-onepage\">\n                                                                                                            Corporate 2                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-corporate3/home-onepage\">\n                                                                                                            Corporate 3                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-law/home-onepage\">\n                                                                                                            Law                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-startup/home-onepage\">\n                                                                                                            Startup                                    </a></li>\n            </ul>\n	    <h3>\n                        One Page                    \n            </h3>\n			    <ul>\n                        <li><a href=\"http://demo.casethemes.net/consultio-hr/home-onepage\">\n                                                                                                            Human Resource                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-coach/home-onepage\">\n                                                                                                            Life Coach                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-marketing/home-onepage\">\n                                                                                                            Marketing                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-medical/home-onepage\">\n                                                                                                            Medical                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-it/home-onepage\">\n                                                                                                            IT Solution                                    </a></li>\n                        <li><a href=\"https://demo.casethemes.net/consultio-tax/home-onepage\">\n                                                                                                            Tax Consulting                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-insurance/home-onepage\">\n                                                                                                            Insurance                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-corona/home-onepage\">\n                                                                                                            Corona                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-consulting/home-onepage\">\n                                                                                                            Consulting                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-software/home-onepage\">\n                                                                                                            Software                                    </a></li>\n            </ul>','Demos','','publish','closed','closed','','demos','','','2020-07-25 10:44:16','2020-07-25 10:44:16','',0,'https://demo.casethemes.net/consultio-tax/?post_type=ct-mega-menu&amp;p=3953',0,'ct-mega-menu','',0),(3955,1,'2020-07-25 10:44:24','2020-07-25 10:44:24','<h3>\n                        Interactive Elements                    \n            </h3>\n			    <ul>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/testimonials-2/\">\n                                                                                                            Testimonials                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/blog-slider/\">\n                                                                                                            Blog Slider                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/elements-portfolio-carousel/\">\n                                                                                                            Portfolio Carousel                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/service-carousel/\">\n                                                                                                            Service Carousel                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/clients/\">\n                                                                                                            Clients                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/history/\">\n                                                                                                            History                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/video-button/\">\n                                                                                                            Video Button                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/columns/\">\n                                                                                                            Columns                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/row-background/\">\n                                                                                                            Row background                                    </a></li>\n            </ul>\n	    <h3>\n                        Standard Elements                    \n            </h3>\n			    <ul>\n                        <li><a href=\"http://demo.casethemes.net/consultio/team-variations/\">\n                                                                                                            Team Variations                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/buttons/\">\n                                                                                                            Buttons                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/tabs-tours/\">\n                                                                                                            Tabs & Tours                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/accordions-toggles/\">\n                                                                                                            Accordions & Toggles                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/google-maps/\">\n                                                                                                            Google Maps                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/contact-forms-7/\">\n                                                                                                            Contact Forms 7                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/dividers/\">\n                                                                                                            Dividers                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/pricing-tables/\">\n                                                                                                            Pricing Tables                                    </a></li>\n            </ul>\n	    <h3>\n                        Infographics                    \n            </h3>\n			    <ul>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/counters/\">\n                                                                                                            Counters                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/progress-bars/\">\n                                                                                                            Progress Bars                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/icon-with-text/\">\n                                                                                                            Icon With Text                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/icon-grid/\">\n                                                                                                            Icon Grid                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/image-box-fancy/\">\n                                                                                                            Image Box Fancy                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/cover-boxes/\">\n                                                                                                            Cover Boxes                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/newsletters/\">\n                                                                                                            Newsletters                                    </a></li>\n            </ul>\n	    <h3>\n                        Typography                    \n            </h3>\n			    <ul>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/custom-fonts/\">\n                                                                                                            Custom Fonts                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/highlights/\">\n                                                                                                            Highlights                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/blockquote/\">\n                                                                                                            Blockquote                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/dropcaps/\">\n                                                                                                            Dropcaps                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/message-box/\">\n                                                                                                            Message Box                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/lists/\">\n                                                                                                            Lists                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/titles/\">\n                                                                                                            Titles                                    </a></li>\n            </ul>','Elements','','publish','closed','closed','','elements','','','2020-07-25 10:44:24','2020-07-25 10:44:24','',0,'https://demo.casethemes.net/consultio-tax/?post_type=ct-mega-menu&amp;p=3955',0,'ct-mega-menu','',0),(4115,1,'2021-03-27 06:07:10','2021-03-27 06:07:10','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Testimonial                                \n	    <h3>\n                            <i></i>\n                        We have appreciated by our clients!                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/author-02.jpg\" width=\"92\" height=\"92\" alt=\"author-02\" title=\"author-02\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Maria Silverii                                    </h3>\n                                    CEO of Blue Illusion\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/author-01.jpg\" width=\"92\" height=\"92\" alt=\"author-01\" title=\"author-01\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Rebecca Leo                                     </h3>\n                                    Web Designer\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Blog                                \n	    <h3>\n                            <i></i>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 06:07:10','2021-03-27 06:07:10','',3193,'https://sa7717.dev34.info/?p=4115',0,'revision','',0),(4105,1,'2021-03-27 05:47:07','2021-03-27 05:47:07','','Female pool player taking aim at the cue ball','Female pool player taking aim at the cue ball while happy friends with beer bottles stand around watching','inherit','open','closed','','female-pool-player-taking-aim-at-the-cue-ball','','','2021-03-27 05:47:07','2021-03-27 05:47:07','',3193,'https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426.jpg',0,'attachment','image/jpeg',0),(4114,1,'2021-03-27 06:04:00','2021-03-27 06:04:00','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Testimonial                                \n	    <h3>\n                            <i></i>\n                        We have appreciated by our clients!                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/author-02.jpg\" width=\"92\" height=\"92\" alt=\"author-02\" title=\"author-02\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Maria Silverii                                    </h3>\n                                    CEO of Blue Illusion\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/author-01.jpg\" width=\"92\" height=\"92\" alt=\"author-01\" title=\"author-01\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Rebecca Leo                                     </h3>\n                                    Web Designer\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Blog                                \n	    <h3>\n                            <i></i>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 06:04:00','2021-03-27 06:04:00','',3193,'https://sa7717.dev34.info/?p=4114',0,'revision','',0),(4112,1,'2021-03-27 06:03:59','2021-03-27 06:03:59','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n            Services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Testimonial                                \n	    <h3>\n                            <i></i>\n                        We have appreciated by our clients!                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/author-02.jpg\" width=\"92\" height=\"92\" alt=\"author-02\" title=\"author-02\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Maria Silverii                                    </h3>\n                                    CEO of Blue Illusion\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/author-01.jpg\" width=\"92\" height=\"92\" alt=\"author-01\" title=\"author-01\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Rebecca Leo                                     </h3>\n                                    Web Designer\n										<img width=\"800\" height=\"632\" src=\"https://sa7717.dev34.info/wp-content/uploads/2020/02/h6-tax.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2020/02/h6-tax.png 800w, https://sa7717.dev34.info/wp-content/uploads/2020/02/h6-tax-300x237.png 300w, https://sa7717.dev34.info/wp-content/uploads/2020/02/h6-tax-768x607.png 768w, https://sa7717.dev34.info/wp-content/uploads/2020/02/h6-tax-600x474.png 600w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n            Blog                                \n	    <h3>\n                            <i></i>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 06:03:59','2021-03-27 06:03:59','',3193,'https://sa7717.dev34.info/?p=4112',0,'revision','',0),(4109,1,'2021-03-27 05:58:19','2021-03-27 05:58:19','','attractive cheerful women singing with microphone in karaoke','attractive cheerful women singing with microphone in karaoke','inherit','open','closed','','attractive-cheerful-women-singing-with-microphone-in-karaoke','','','2021-03-27 05:58:19','2021-03-27 05:58:19','',3193,'https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG.jpg',0,'attachment','image/jpeg',0),(4108,1,'2021-03-27 05:53:22','2021-03-27 05:53:22','','i-am-blue-C3X74HU','','inherit','open','closed','','i-am-blue-c3x74hu','','','2021-03-27 05:53:22','2021-03-27 05:53:22','',3193,'https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU.jpg',0,'attachment','image/jpeg',0),(4107,1,'2021-03-27 05:51:30','2021-03-27 05:51:30','','Friends playing toy grabbing game','Young friends playing toy grabbing game at game room. Four young people playing at toy vending machine.','inherit','open','closed','','friends-playing-toy-grabbing-game','','','2021-03-27 05:51:30','2021-03-27 05:51:30','',3193,'https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9.jpg',0,'attachment','image/jpeg',0),(4111,1,'2021-03-27 06:03:23','2021-03-27 06:03:23','','Portrait Of Male Bar Owner Standing By Counter','Portrait Of Male Bar Owner Standing By Counter','inherit','open','closed','','portrait-of-male-bar-owner-standing-by-counter','','','2021-03-27 06:03:23','2021-03-27 06:03:23','',3193,'https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT.jpg',0,'attachment','image/jpeg',0),(4110,1,'2021-03-27 06:01:39','2021-03-27 06:01:39','','Young couple playing together pool in bar','Young couple playing pool in bar while having night out in town','inherit','open','closed','','young-couple-playing-together-pool-in-bar','','','2021-03-27 06:01:39','2021-03-27 06:01:39','',3193,'https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7.jpg',0,'attachment','image/jpeg',0),(4113,1,'2021-03-27 06:03:59','2021-03-27 06:03:59','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n            Services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Testimonial                                \n	    <h3>\n                            <i></i>\n                        We have appreciated by our clients!                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/author-02.jpg\" width=\"92\" height=\"92\" alt=\"author-02\" title=\"author-02\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Maria Silverii                                    </h3>\n                                    CEO of Blue Illusion\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/author-01.jpg\" width=\"92\" height=\"92\" alt=\"author-01\" title=\"author-01\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Rebecca Leo                                     </h3>\n                                    Web Designer\n										<img width=\"800\" height=\"632\" src=\"https://sa7717.dev34.info/wp-content/uploads/2020/02/h6-tax.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2020/02/h6-tax.png 800w, https://sa7717.dev34.info/wp-content/uploads/2020/02/h6-tax-300x237.png 300w, https://sa7717.dev34.info/wp-content/uploads/2020/02/h6-tax-768x607.png 768w, https://sa7717.dev34.info/wp-content/uploads/2020/02/h6-tax-600x474.png 600w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n            Blog                                \n	    <h3>\n                            <i></i>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 06:03:59','2021-03-27 06:03:59','',3193,'https://sa7717.dev34.info/?p=4113',0,'revision','',0),(3968,1,'2021-03-26 19:41:37','2021-03-26 19:41:37','','Pages','','publish','closed','closed','','pages','','','2021-03-26 19:41:37','2021-03-26 19:41:37','',0,'https://sa7717.dev34.info/2021/03/26/pages/',6,'nav_menu_item','',0),(3969,1,'2021-03-26 19:41:37','2021-03-26 19:41:37','','Gallery','','publish','closed','closed','','gallery','','','2021-03-26 19:41:37','2021-03-26 19:41:37','',0,'https://sa7717.dev34.info/2021/03/26/gallery/',6,'nav_menu_item','',0),(3970,1,'2021-03-26 19:41:37','2021-03-26 19:41:37','','Error 404','','publish','closed','closed','','error-404','','','2021-03-26 19:41:37','2021-03-26 19:41:37','',0,'https://sa7717.dev34.info/2021/03/26/error-404/',33,'nav_menu_item','',0),(3971,1,'2021-03-26 19:41:37','2021-03-26 19:41:37','','Pages','','publish','closed','closed','','pages-2','','','2021-03-26 19:41:37','2021-03-26 19:41:37','',0,'https://sa7717.dev34.info/2021/03/26/pages-2/',6,'nav_menu_item','',0),(3972,1,'2021-03-26 19:41:37','2021-03-26 19:41:37','','Error 404','','publish','closed','closed','','error-404-2','','','2021-03-26 19:41:37','2021-03-26 19:41:37','',0,'https://sa7717.dev34.info/2021/03/26/error-404-2/',28,'nav_menu_item','',0),(3973,1,'2021-03-26 19:41:37','2021-03-26 19:41:37','','Demos','','publish','closed','closed','','demos','','','2021-03-26 19:41:37','2021-03-26 19:41:37','',0,'https://sa7717.dev34.info/2021/03/26/demos/',1,'nav_menu_item','',0),(24,1,'2019-10-30 08:04:10','2019-10-30 08:04:10','<h3>\n                        Contact System Amusement Today                    \n            </h3>\n                    <h3>\n                Phone:            </h3>\n                509-326-1551 \n                    <h3>\n                Email:            </h3>\n                systemamusement@comcast.net\n                    <h3>\n                Hours:            </h3>\n                Mon - Sat: 8 am - 5 pm, <br>Sunday: CLOSED\n															<img width=\"2560\" height=\"1708\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-600x400.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our 50+ Years of Dedication to our Clients!                    \n            </h3>\n		<p>Your success is our success!</p>		\n                1\n                %\n                            Quality Equipment\n                1\n                %\n                            Attention to Detail\n                1\n                %\n                            Reliable Support\n                1\n                %\n                            Client Dedication','Contact','','publish','closed','closed','','contact','','','2021-04-28 20:04:47','2021-04-28 20:04:47','',0,'https://demo.casethemes.net/consultio-tax/?page_id=24',0,'page','',0),(4413,1,'2021-04-15 03:31:48','2021-04-15 03:31:48','<h3>\n                Hours:            </h3>\n                Mon - Sat: 8 am - 5 pm, <br>Sunday: CLOSED\n                    <h3>\n                Phone:            </h3>\n                509-326-1551 \n                    <h3>\n                Email:            </h3>\n                systemamusement@comcast.net\n	    <h3>\n                        Contact System Amusement Today                    \n            </h3>\n										<img width=\"2560\" height=\"1708\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-600x400.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />','Contact','','inherit','closed','closed','','24-revision-v1','','','2021-04-15 03:31:48','2021-04-15 03:31:48','',24,'https://sa7717.dev34.info/?p=4413',0,'revision','',0),(4410,1,'2021-04-15 03:09:46','2021-04-15 03:09:46','<h3>\n            Head office address:</h3>\n3556 Hartford Way Vlg, Mount\nPleasant, SC, 29466, Australia.\n<h3>\n            Call for help:</h3>\n(734) 697-2907\n(843) 971-1906\n<h3>\n            Mail for information:</h3>\nnoreply@envato.com\nnoreply@consultio.com\n<img width=\"601\" height=\"706\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/contact-about1.png\" alt=\"\" srcset=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/contact-about1.png 601w, https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/contact-about1-255x300.png 255w\" sizes=\"(max-width: 601px) 100vw, 601px\">\n<h3>\n        Make a free consultation with our expert team to solve your prolems.</h3>\nFor any inquiries relating to my  Retail and Leadership Programs*\n\n<form action=\"/ctthemes/csuti/wp-admin/admin-ajax.php#wpcf7-f91-o1\" method=\"post\" novalidate=\"novalidate\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"91\">\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.1.6\">\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\">\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f91-o1\">\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\">\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\">\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail*\">\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone*\">\n<select name=\"your-subject\" aria-required=\"true\" aria-invalid=\"false\">\n<option value=\"Subject\">Subject</option>\n<option value=\"Success fullfill\">Success fullfill</option>\n<option value=\"StartUp business\">StartUp business</option>\n<option value=\"Leadership work\">Leadership work</option>\n<option value=\"Business Growth\">Business Growth</option>\n</select>\n<button type=\"submit\">Consult today</button>\n</form>                                <a href=\"#\"><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-01.png\" alt=\"\"></a>\n<a href=\"#\"><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-02.png\" alt=\"\"></a>\n<a href=\"#\"><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-03.png\" alt=\"\"></a>\n<a href=\"#\"><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-04.png\" alt=\"\"></a>\n<a href=\"#\"><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/client-05.png\" alt=\"\"></a>','Contact','','inherit','closed','closed','','24-revision-v1','','','2021-04-15 03:09:46','2021-04-15 03:09:46','',24,'https://sa7717.dev34.info/?p=4410',0,'revision','',0),(26,1,'2019-10-30 08:04:23','2019-10-30 08:04:23','<h3>\n                        Available Machines For Sale</h3>\nIf you are interested in any of the below machines, please contact the System Amusement team to inquire. We look forward to speaking with you soon!\n<h5><strong>Call today at: </strong><a href=\"tel:509-993-4655\"><strong>509-993-4655</strong></a></h5>\n<figure><img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" width=\"600\" height=\"600\"></figure>\n<h3>Munsters Pinball Machine</h3>\nLike new condition, with several new parts.\n<figure><img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" width=\"600\" height=\"600\"></figure>\n<h3>Munsters Pinball Machine</h3>\nLike new condition, with several new parts.\n<figure><img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" width=\"600\" height=\"600\"></figure>\n<h3>Munsters Pinball Machine</h3>\nLike new condition, with several new parts.\n<figure><img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" width=\"600\" height=\"600\"></figure>\n<h3>Munsters Pinball Machine</h3>\nLike new condition, with several new parts.\n\nInterested in this equipment?\nCall us today!\n<a href=\"tel:509-993-4655\">\n509-993-4655            </a>','Equipment For Sale','','publish','closed','closed','','equipment-for-sale','','','2021-04-28 21:51:02','2021-04-28 21:51:02','',0,'https://demo.casethemes.net/consultio-tax/?page_id=26',0,'page','',0),(4439,1,'2021-04-28 21:13:37','2021-04-28 21:13:37','<h3>\n                        Available Machines For Sale</h3>\nIf you are interested in any of the below machines, please contact the System Amusement team to inquire. We look forward to speaking with you soon!\n<h5><strong>Call today at: </strong><a href=\"tel:509-993-4655\"><strong>509-993-4655</strong></a></h5>\n<figure><img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" width=\"600\" height=\"600\"></figure>\n<h3>Munsters Pinball Machine</h3>\nLike new condition, with several new parts.\n<figure><img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" width=\"600\" height=\"600\"></figure>\n<h3>Munsters Pinball Machine</h3>\nLike new condition, with several new parts.\n<figure><img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" width=\"600\" height=\"600\"></figure>\n<h3>Munsters Pinball Machine</h3>\nLike new condition, with several new parts.\n<figure><img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" width=\"600\" height=\"600\"></figure>\n<h3>Munsters Pinball Machine</h3>\nLike new condition, with several new parts.\n\nInterested in this equipment?\nCall us today!\n<a href=\"tel:509-993-4655\">\n509-993-4655            </a>','About','','inherit','closed','closed','','26-revision-v1','','','2021-04-28 21:13:37','2021-04-28 21:13:37','',26,'https://sa7717.dev34.info/?p=4439',0,'revision','',0),(4438,1,'2021-04-28 21:10:18','2021-04-28 21:10:18','<h3>\n                        Available Machines For Sale                    \n            </h3>\n		<p>If you are interested in any of the below machines, please contact the System Amusement team to inquire. We look forward to speaking with you soon!</p><h5><strong>Call today at: </strong><a href=\"tel:509-993-4655\"><strong>509-993-4655</strong></a></h5>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Munsters Pinball Machine</h3><p>Like new condition, with several new parts.\n</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Munsters Pinball Machine</h3><p>Like new condition, with several new parts.\n</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Munsters Pinball Machine</h3><p>Like new condition, with several new parts.\n</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Munsters Pinball Machine</h3><p>Like new condition, with several new parts.\n</p>		\n            Interested in this equipment?\n            Call us today!\n            <a href=\"tel:509-993-4655\">\n                                                                    509-993-4655            </a>','About','','inherit','closed','closed','','26-revision-v1','','','2021-04-28 21:10:18','2021-04-28 21:10:18','',26,'https://sa7717.dev34.info/?p=4438',0,'revision','',0),(4429,1,'2021-04-28 20:56:51','2021-04-28 20:56:51','<h3>\n                        Available Machines For Sale                    \n            </h3>\n		<p>If you are interested in any of the below machines, please contact the System Amusement team to inquire. We look forward to speaking with you soon!</p><h5><strong>Call today at: </strong><a href=\"tel:509-993-4655\"><strong>509-993-4655</strong></a></h5>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Munsters Pinball Machine</h3><p>Like new condition, with several new parts.\n</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Munsters Pinball Machine</h3><p>Like new condition, with several new parts.\n</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Munsters Pinball Machine</h3><p>Like new condition, with several new parts.\n</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Munsters Pinball Machine</h3><p>Like new condition, with several new parts.\n</p>		\n		We bring more than 24 years’ senior experience forging of\ncollaborations across government.		\n	            		Praesent feugiat sem mattis.	            	\n	            		A wonderful serenity.	            	\n	            		Premium services for you.	            	\n	            		Set a link back to photo.	            	\n		Call to ask <a href=\"#\">any question</a>  540-325-1523		\n															<img width=\"350\" height=\"1\" src=\"https://sa7717.dev34.info/wp-content/uploads/2019/12/about-gap.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2019/12/about-gap.png 350w, https://sa7717.dev34.info/wp-content/uploads/2019/12/about-gap-300x1.png 300w, https://sa7717.dev34.info/wp-content/uploads/2019/12/about-gap-150x1.png 150w, https://sa7717.dev34.info/wp-content/uploads/2019/12/about-gap-250x1.png 250w\" sizes=\"(max-width: 350px) 100vw, 350px\" />															\n        	<img width=\"95\" height=\"85\" src=\"https://sa7717.dev34.info/wp-content/uploads/2019/12/signature.png\" alt=\"\" />        \n    	<h3>Natalia Duke</h3>\n    	(Chairman and founder)\n            Want to know more about us?\n            Just download brochure...\n            <a href=\"#\">\n                                                                    Download Brochure            </a>','About','','inherit','closed','closed','','26-revision-v1','','','2021-04-28 20:56:51','2021-04-28 20:56:51','',26,'https://sa7717.dev34.info/?p=4429',0,'revision','',0),(4430,1,'2021-04-28 20:57:37','2021-04-28 20:57:37','<h3>\n                        Available Machines For Sale                    \n            </h3>\n		<p>If you are interested in any of the below machines, please contact the System Amusement team to inquire. We look forward to speaking with you soon!</p><h5><strong>Call today at: </strong><a href=\"tel:509-993-4655\"><strong>509-993-4655</strong></a></h5>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Munsters Pinball Machine</h3><p>Like new condition, with several new parts.\n</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Munsters Pinball Machine</h3><p>Like new condition, with several new parts.\n</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Munsters Pinball Machine</h3><p>Like new condition, with several new parts.\n</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Munsters Pinball Machine</h3><p>Like new condition, with several new parts.\n</p>		\n		We bring more than 24 years’ senior experience forging of\ncollaborations across government.		\n	            		Praesent feugiat sem mattis.	            	\n	            		A wonderful serenity.	            	\n	            		Premium services for you.	            	\n	            		Set a link back to photo.	            	\n		Call to ask <a href=\"#\">any question</a>  540-325-1523		\n															<img width=\"350\" height=\"1\" src=\"https://sa7717.dev34.info/wp-content/uploads/2019/12/about-gap.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2019/12/about-gap.png 350w, https://sa7717.dev34.info/wp-content/uploads/2019/12/about-gap-300x1.png 300w, https://sa7717.dev34.info/wp-content/uploads/2019/12/about-gap-150x1.png 150w, https://sa7717.dev34.info/wp-content/uploads/2019/12/about-gap-250x1.png 250w\" sizes=\"(max-width: 350px) 100vw, 350px\" />															\n        	<img width=\"95\" height=\"85\" src=\"https://sa7717.dev34.info/wp-content/uploads/2019/12/signature.png\" alt=\"\" />        \n    	<h3>Natalia Duke</h3>\n    	(Chairman and founder)\n            Want to know more about us?\n            Just download brochure...\n            <a href=\"#\">\n                                                                    Download Brochure            </a>','About','','inherit','closed','closed','','26-revision-v1','','','2021-04-28 20:57:37','2021-04-28 20:57:37','',26,'https://sa7717.dev34.info/?p=4430',0,'revision','',0),(28,1,'2019-10-30 08:05:01','2019-10-30 08:05:01','Team\n	    <h3>\n                We draw on our global network to assemble a team of experts.    </h3>\n		We also bring a strong interest in coaching and capability building, with an emphasis on emotional intelligence and effective stakeholder relationships.		\n                                <a href=\"https://demo.casethemes.net/consultio-tax/team-details/\"><img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/testimonial-07-100x100.jpg\" width=\"100\" height=\"100\" alt=\"testimonial-07\" title=\"testimonial-07\" /></a>\n                                                                                <a href=\"#\"></a>\n                            	<h3>	\n                	            	Donald Johnson                		        </h3>\n                		        Executive Manager\n                                        <a href=\"https://demo.casethemes.net/consultio-tax/team-details/\">Details</a>\n                                <a href=\"https://demo.casethemes.net/consultio-tax/team-details/\"><img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/team-01.jpg\" width=\"100\" height=\"100\" alt=\"team-01\" title=\"team-01\" /></a>\n                                                                                <a href=\"#\"></a>\n                            	<h3>	\n                	            	Jewel D Smith                		        </h3>\n                		        Executive Director\n                                        <a href=\"https://demo.casethemes.net/consultio-tax/team-details/\">Details</a>\n                                <a href=\"https://demo.casethemes.net/consultio-tax/team-details/\"><img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/team-02.jpg\" width=\"100\" height=\"100\" alt=\"team-02\" title=\"team-02\" /></a>\n                                                                                <a href=\"#\"></a>\n                            	<h3>	\n                	            	Alan Smith                		        </h3>\n                		        Managing Director\n                                        <a href=\"https://demo.casethemes.net/consultio-tax/team-details/\">Details</a>\n                                <a href=\"https://demo.casethemes.net/consultio-tax/team-details/\"><img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/team-03.jpg\" width=\"100\" height=\"100\" alt=\"team-03\" title=\"team-03\" /></a>\n                                                                                <a href=\"#\"></a>\n                            	<h3>	\n                	            	Brad Smith                		        </h3>\n                		        Executive Manager\n                                        <a href=\"https://demo.casethemes.net/consultio-tax/team-details/\">Details</a>\n                                <a href=\"https://demo.casethemes.net/consultio-tax/team-details/\"><img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/testimonial-06-100x100.jpg\" width=\"100\" height=\"100\" alt=\"testimonial-06\" title=\"testimonial-06\" /></a>\n                                                                                <a href=\"#\"></a>\n                            	<h3>	\n                	            	Kathleen Smith                		        </h3>\n                		        Senior Director\n                                        <a href=\"https://demo.casethemes.net/consultio-tax/team-details/\">Details</a>\n                                <a href=\"https://demo.casethemes.net/consultio-tax/team-details/\"><img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/team-04.jpg\" width=\"100\" height=\"100\" alt=\"team-04\" title=\"team-04\" /></a>\n                                                                                <a href=\"#\"></a>\n                            	<h3>	\n                	            	Joyce Thompson                		        </h3>\n                		        Asistant Manager\n                                        <a href=\"https://demo.casethemes.net/consultio-tax/team-details/\">Details</a>\n                                <a href=\"https://demo.casethemes.net/consultio-tax/team-details/\"><img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/testimonial-05-100x100.jpg\" width=\"100\" height=\"100\" alt=\"testimonial-05\" title=\"testimonial-05\" /></a>\n                                                                                <a href=\"#\"></a>\n                            	<h3>	\n                	            	Kathleen Smith                		        </h3>\n                		        Executive Manager\n                                        <a href=\"https://demo.casethemes.net/consultio-tax/team-details/\">Details</a>\n                                <a href=\"https://demo.casethemes.net/consultio-tax/team-details/\"><img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/testimonial-09-100x100.jpg\" width=\"100\" height=\"100\" alt=\"testimonial-09\" title=\"testimonial-09\" /></a>\n                                                                                <a href=\"#\"></a>\n                            	<h3>	\n                	            	Joyce Thompson                		        </h3>\n                		        Executive Manager\n                                        <a href=\"https://demo.casethemes.net/consultio-tax/team-details/\">Details</a>\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Team','','publish','closed','closed','','team','','','2019-10-30 08:05:01','2019-10-30 08:05:01','',0,'https://demo.casethemes.net/consultio-tax/?page_id=28',0,'page','',0),(30,1,'2019-10-30 08:05:16','2019-10-30 08:05:16','FAQ\n	    <h3>\n        You can learn more from our asked questions    </h3>\n		At vero eos et accusamus et iusto odio digni goiku sendeno\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. 		\n                    <a>What should I include in my personal statement?</a>\n                Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiu smod tempor incididunt</u> ut labore.\n                    <a>Will membership plans be charged automatically?</a>\n                Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiu smod tempor incididunt</u> ut labore.\n                    <a>How can I make a change to my application?</a>\n                Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiu smod tempor incididunt</u> ut labore.\n                    <a>Where can I find out about funding?</a>\n                Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiu smod tempor incididunt</u> ut labore.\n                    <a>What will happen when I’ve sent my application?</a>\n                Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiu smod tempor incididunt</u> ut labore.\n                    <a>Can I get a free trial before I purchase?</a>\n                Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiu smod tempor incididunt</u> ut labore.\n	    <h3>\n        Still have you any problem  for solutions?    </h3>\n		For any inquiries relating to my  Retail and Leadership\nPrograms or Coaching and Mentoring services feel free to speak to me personally by call us during business hours.		\n        <h3>\n            Head office address:        </h3>\n        3556 Hartford Way Vlg, Mount\nPleasant, SC, 29466, Australia.\n        <h3>\n            Call for help:        </h3>\n        (734) 697-2907<br/>\n(843) 971-1906\n        <h3>\n            Mail for information:        </h3>\n        noreply@envato.com<br/>\nnoreply@consultio.com\n<form action=\"/ctthemes/csuti/wp-admin/admin-ajax.php#wpcf7-f1615-o1\" method=\"post\" novalidate=\"novalidate\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"1615\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.1.6\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f1615-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<label>First name*</label><input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Type your first name\" />\n<label>Last name*</label><input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Type your last name\" />\n<label>Select a subject to get help*</label><select name=\"your-subject\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Select a subject\">Select a subject</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<label>Your mail address*</label><input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Type mail address\" />\n<label>Message*</label><textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Type message...\"></textarea>\n<button type=\"submit\">Submit now</button>\n</form>        \n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','FAQ','','publish','closed','closed','','faq','','','2019-10-30 08:05:16','2019-10-30 08:05:16','',0,'https://demo.casethemes.net/consultio-tax/?page_id=30',0,'page','',0),(32,1,'2019-10-30 08:05:37','2019-10-30 08:05:37','Pricing\n	    <h3>\n        We’re a global stakeholder relations and consultancy.    </h3>\n		Collaborate Consulting exists to find the place where to being seemingly disparate interests meet. From that point of the\nconnection, we create platforms.		\n                Monthly\n                Yearly Save 20%\n                    <style>.elementor-1214 .elementor-element.elementor-element-c6873c8{margin-top:0px;margin-bottom:0px;}.elementor-1214 .elementor-element.elementor-element-9c326ae > .elementor-element-populated{margin:0px 0px 40px 0px;}.elementor-1214 .elementor-element.elementor-element-ba9c4e2 > .elementor-element-populated{margin:0px 0px 40px 0px;}.elementor-1214 .elementor-element.elementor-element-9c8bcbf > .elementor-element-populated{margin:0px 0px 40px 0px;}@media(max-width:767px){.elementor-1214 .elementor-element.elementor-element-9c326ae > .elementor-element-populated{margin:0px 0px 0px 0px;}.elementor-1214 .elementor-element.elementor-element-ba9c4e2 > .elementor-element-populated{margin:39px 0px 0px 0px;}}</style>		\n							<section data-id=\"c6873c8\" data-element_type=\"section\">\n        <h3>Basic Plan</h3>\n        The argument in favor of using to filler text goes something.\n    $29/ monthly\n                    <ul>\n                                    <li><del>24/7 system monitoring</del></li>\n                                    <li>Security management</li>\n                                    <li><del>Secure finance backup</del></li>\n                                    <li><del>Remote support</del></li>\n                            </ul>\n                <a href=\"#\">Get a free trial</a>\n            Recommended\n        <h3>Standard Plan</h3>\n        The argument in favor of using to filler text goes something.\n    $49/ monthly\n                    <ul>\n                                    <li>24/7 system monitoring</li>\n                                    <li><del>Security management</del></li>\n                                    <li>Secure finance backup</li>\n                                    <li><del>Remote support</del></li>\n                            </ul>\n                <a href=\"#\">Get a free trial</a>\n        <h3>Extended Plan</h3>\n        The argument in favor of using to filler text goes something.\n    $59/ monthly\n                    <ul>\n                                    <li>24/7 system monitoring</li>\n                                    <li>Security management</li>\n                                    <li>Secure finance backup</li>\n                                    <li>Remote support</li>\n                            </ul>\n                <a href=\"#\">Get a free trial</a>\n		</section>\n                    <style>.elementor-1217 .elementor-element.elementor-element-c6873c8{margin-top:0px;margin-bottom:0px;}.elementor-1217 .elementor-element.elementor-element-9c326ae > .elementor-element-populated{margin:0px 0px 40px 0px;}.elementor-1217 .elementor-element.elementor-element-ba9c4e2 > .elementor-element-populated{margin:0px 0px 40px 0px;}.elementor-1217 .elementor-element.elementor-element-9c8bcbf > .elementor-element-populated{margin:0px 0px 40px 0px;}@media(max-width:767px){.elementor-1217 .elementor-element.elementor-element-9c326ae > .elementor-element-populated{margin:0px 0px 0px 0px;}.elementor-1217 .elementor-element.elementor-element-ba9c4e2 > .elementor-element-populated{margin:39px 0px 0px 0px;}}</style>		\n							<section data-id=\"c6873c8\" data-element_type=\"section\">\n        <h3>Basic Plan</h3>\n        The argument in favor of using to filler text goes something.\n    $49/ monthly\n                    <ul>\n                                    <li><del>24/7 system monitoring</del></li>\n                                    <li>Security management</li>\n                                    <li><del>Secure finance backup</del></li>\n                                    <li><del>Remote support</del></li>\n                            </ul>\n                <a href=\"#\">Get a free trial</a>\n            Recommended\n        <h3>Standard Plan</h3>\n        The argument in favor of using to filler text goes something.\n    $89/ monthly\n                    <ul>\n                                    <li>24/7 system monitoring</li>\n                                    <li><del>Security management</del></li>\n                                    <li>Secure finance backup</li>\n                                    <li><del>Remote support</del></li>\n                            </ul>\n                <a href=\"#\">Get a free trial</a>\n        <h3>Extended Plan</h3>\n        The argument in favor of using to filler text goes something.\n    $120/ monthly\n                    <ul>\n                                    <li>24/7 system monitoring</li>\n                                    <li>Security management</li>\n                                    <li>Secure finance backup</li>\n                                    <li>Remote support</li>\n                            </ul>\n                <a href=\"#\">Get a free trial</a>\n		</section>\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>','Pricing','','publish','closed','closed','','pricing','','','2019-10-30 08:05:37','2019-10-30 08:05:37','',0,'https://demo.casethemes.net/consultio-tax/?page_id=32',0,'page','',0),(123,1,'2019-11-02 02:32:13','2019-11-02 02:32:13','Pricing\n	    <h3>\n        Learn something more from our blog    </h3>\n		At vero eos et accusamus et iusto odio digni goiku\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. 		\n                            <a href=\"https://demo.casethemes.net/consultio-tax/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://demo.casethemes.net/consultio-tax/author/admin/\">admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://demo.casethemes.net/consultio-tax/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://demo.casethemes.net/consultio-tax/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://demo.casethemes.net/consultio-tax/author/admin/\">admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://demo.casethemes.net/consultio-tax/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to beo usually discovered.</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://demo.casethemes.net/consultio-tax/food-industry-leaders-often-change-their-profound/\"><img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://demo.casethemes.net/consultio-tax/author/admin/\">admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://demo.casethemes.net/consultio-tax/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://demo.casethemes.net/consultio-tax/how-to-go-about-intiating-an-start-up-in-a-matter-of-days/\"><img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://demo.casethemes.net/consultio-tax/author/admin/\">admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://demo.casethemes.net/consultio-tax/how-to-go-about-intiating-an-start-up-in-a-matter-of-days/\">How to go about intiating an start-up in a matter.</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/how-to-go-about-intiating-an-start-up-in-a-matter-of-days/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://demo.casethemes.net/consultio-tax/engaging-new-audiences-through-smart-approach/\"><img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-09-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-09\" title=\"theme-09\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://demo.casethemes.net/consultio-tax/author/admin/\">admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://demo.casethemes.net/consultio-tax/engaging-new-audiences-through-smart-approach/\">Main reasons to explan fast business builder</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/engaging-new-audiences-through-smart-approach/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://demo.casethemes.net/consultio-tax/many-types-of-construction-equipment-are-designed/\"><img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-05-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-05\" title=\"theme-05\" /></a>\n                                                            <ul>\n                                                                            <li>November 4, 2018</li>\n                                                                                                                <li>\n                                            <a href=\"https://demo.casethemes.net/consultio-tax/author/admin/\">admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://demo.casethemes.net/consultio-tax/many-types-of-construction-equipment-are-designed/\">Blackpool polices hunt for David Schwimmer</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/many-types-of-construction-equipment-are-designed/\">\n                                        Read more                                        \n                                    </a>\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Blog Carousel','','publish','closed','closed','','blog-carousel','','','2019-11-02 02:32:13','2019-11-02 02:32:13','',0,'https://demo.casethemes.net/consultio-tax/?page_id=123',0,'page','',0),(125,1,'2019-11-02 02:32:23','2019-11-02 02:32:23','<a href=\"https://demo.casethemes.net/consultio-tax/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-10-600x414.jpg\" width=\"600\" height=\"414\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                                    <ul>\n                                                                                    <li>November 5, 2019</li>\n                                                                                                                            <li>\n                                                <a href=\"https://demo.casethemes.net/consultio-tax/author/admin/\">admin</a></li>\n                                                                            </ul>\n                                                                <h3><a href=\"https://demo.casethemes.net/consultio-tax/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-tax/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                            \n                                        </a>\n                                <a href=\"https://demo.casethemes.net/consultio-tax/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-07-600x414.jpg\" width=\"600\" height=\"414\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                                    <ul>\n                                                                                    <li>November 5, 2019</li>\n                                                                                                                            <li>\n                                                <a href=\"https://demo.casethemes.net/consultio-tax/author/admin/\">admin</a></li>\n                                                                            </ul>\n                                                                <h3><a href=\"https://demo.casethemes.net/consultio-tax/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to beo usually discovered.</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-tax/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                            \n                                        </a>\n                                <a href=\"https://demo.casethemes.net/consultio-tax/food-industry-leaders-often-change-their-profound/\"><img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-14-600x414.jpg\" width=\"600\" height=\"414\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                                    <ul>\n                                                                                    <li>November 5, 2019</li>\n                                                                                                                            <li>\n                                                <a href=\"https://demo.casethemes.net/consultio-tax/author/admin/\">admin</a></li>\n                                                                            </ul>\n                                                                <h3><a href=\"https://demo.casethemes.net/consultio-tax/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-tax/food-industry-leaders-often-change-their-profound/\">\n                                            Read more                                            \n                                        </a>\n                                <a href=\"https://demo.casethemes.net/consultio-tax/how-to-go-about-intiating-an-start-up-in-a-matter-of-days/\"><img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-13-600x414.jpg\" width=\"600\" height=\"414\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                                    <ul>\n                                                                                    <li>November 5, 2019</li>\n                                                                                                                            <li>\n                                                <a href=\"https://demo.casethemes.net/consultio-tax/author/admin/\">admin</a></li>\n                                                                            </ul>\n                                                                <h3><a href=\"https://demo.casethemes.net/consultio-tax/how-to-go-about-intiating-an-start-up-in-a-matter-of-days/\">How to go about intiating an start-up in a matter.</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-tax/how-to-go-about-intiating-an-start-up-in-a-matter-of-days/\">\n                                            Read more                                            \n                                        </a>\n                                <a href=\"https://demo.casethemes.net/consultio-tax/engaging-new-audiences-through-smart-approach/\"><img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-09-600x414.jpg\" width=\"600\" height=\"414\" alt=\"theme-09\" title=\"theme-09\" /></a>\n                                                                    <ul>\n                                                                                    <li>November 5, 2019</li>\n                                                                                                                            <li>\n                                                <a href=\"https://demo.casethemes.net/consultio-tax/author/admin/\">admin</a></li>\n                                                                            </ul>\n                                                                <h3><a href=\"https://demo.casethemes.net/consultio-tax/engaging-new-audiences-through-smart-approach/\">Main reasons to explan fast business builder</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-tax/engaging-new-audiences-through-smart-approach/\">\n                                            Read more                                            \n                                        </a>\n                                <a href=\"https://demo.casethemes.net/consultio-tax/many-types-of-construction-equipment-are-designed/\"><img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-05-600x414.jpg\" width=\"600\" height=\"414\" alt=\"theme-05\" title=\"theme-05\" /></a>\n                                                                    <ul>\n                                                                                    <li>November 4, 2018</li>\n                                                                                                                            <li>\n                                                <a href=\"https://demo.casethemes.net/consultio-tax/author/admin/\">admin</a></li>\n                                                                            </ul>\n                                                                <h3><a href=\"https://demo.casethemes.net/consultio-tax/many-types-of-construction-equipment-are-designed/\">Blackpool polices hunt for David Schwimmer</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-tax/many-types-of-construction-equipment-are-designed/\">\n                                            Read more                                            \n                                        </a>','Blog Grid 2 Columns + Sidebar Left','','publish','closed','closed','','blog-grid-2-columns-sidebar-left','','','2019-11-02 02:32:23','2019-11-02 02:32:23','',0,'https://demo.casethemes.net/consultio-tax/?page_id=125',0,'page','',0),(127,1,'2019-11-02 02:32:36','2019-11-02 02:32:36','<a href=\"https://demo.casethemes.net/consultio-tax/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-10-600x414.jpg\" width=\"600\" height=\"414\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                                    <ul>\n                                                                                    <li>November 5, 2019</li>\n                                                                                                                            <li>\n                                                <a href=\"https://demo.casethemes.net/consultio-tax/author/admin/\">admin</a></li>\n                                                                            </ul>\n                                                                <h3><a href=\"https://demo.casethemes.net/consultio-tax/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-tax/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                            \n                                        </a>\n                                <a href=\"https://demo.casethemes.net/consultio-tax/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-07-600x414.jpg\" width=\"600\" height=\"414\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                                    <ul>\n                                                                                    <li>November 5, 2019</li>\n                                                                                                                            <li>\n                                                <a href=\"https://demo.casethemes.net/consultio-tax/author/admin/\">admin</a></li>\n                                                                            </ul>\n                                                                <h3><a href=\"https://demo.casethemes.net/consultio-tax/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to beo usually discovered.</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-tax/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                            \n                                        </a>\n                                <a href=\"https://demo.casethemes.net/consultio-tax/food-industry-leaders-often-change-their-profound/\"><img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-14-600x414.jpg\" width=\"600\" height=\"414\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                                    <ul>\n                                                                                    <li>November 5, 2019</li>\n                                                                                                                            <li>\n                                                <a href=\"https://demo.casethemes.net/consultio-tax/author/admin/\">admin</a></li>\n                                                                            </ul>\n                                                                <h3><a href=\"https://demo.casethemes.net/consultio-tax/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-tax/food-industry-leaders-often-change-their-profound/\">\n                                            Read more                                            \n                                        </a>\n                                <a href=\"https://demo.casethemes.net/consultio-tax/how-to-go-about-intiating-an-start-up-in-a-matter-of-days/\"><img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-13-600x414.jpg\" width=\"600\" height=\"414\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                                    <ul>\n                                                                                    <li>November 5, 2019</li>\n                                                                                                                            <li>\n                                                <a href=\"https://demo.casethemes.net/consultio-tax/author/admin/\">admin</a></li>\n                                                                            </ul>\n                                                                <h3><a href=\"https://demo.casethemes.net/consultio-tax/how-to-go-about-intiating-an-start-up-in-a-matter-of-days/\">How to go about intiating an start-up in a matter.</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-tax/how-to-go-about-intiating-an-start-up-in-a-matter-of-days/\">\n                                            Read more                                            \n                                        </a>\n                                <a href=\"https://demo.casethemes.net/consultio-tax/engaging-new-audiences-through-smart-approach/\"><img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-09-600x414.jpg\" width=\"600\" height=\"414\" alt=\"theme-09\" title=\"theme-09\" /></a>\n                                                                    <ul>\n                                                                                    <li>November 5, 2019</li>\n                                                                                                                            <li>\n                                                <a href=\"https://demo.casethemes.net/consultio-tax/author/admin/\">admin</a></li>\n                                                                            </ul>\n                                                                <h3><a href=\"https://demo.casethemes.net/consultio-tax/engaging-new-audiences-through-smart-approach/\">Main reasons to explan fast business builder</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-tax/engaging-new-audiences-through-smart-approach/\">\n                                            Read more                                            \n                                        </a>\n                                <a href=\"https://demo.casethemes.net/consultio-tax/many-types-of-construction-equipment-are-designed/\"><img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-05-600x414.jpg\" width=\"600\" height=\"414\" alt=\"theme-05\" title=\"theme-05\" /></a>\n                                                                    <ul>\n                                                                                    <li>November 4, 2018</li>\n                                                                                                                            <li>\n                                                <a href=\"https://demo.casethemes.net/consultio-tax/author/admin/\">admin</a></li>\n                                                                            </ul>\n                                                                <h3><a href=\"https://demo.casethemes.net/consultio-tax/many-types-of-construction-equipment-are-designed/\">Blackpool polices hunt for David Schwimmer</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-tax/many-types-of-construction-equipment-are-designed/\">\n                                            Read more                                            \n                                        </a>','Blog Grid 2 Columns + Sidebar Right','','publish','closed','closed','','blog-grid-2-columns-sidebar-right','','','2019-11-02 02:32:36','2019-11-02 02:32:36','',0,'https://demo.casethemes.net/consultio-tax/?page_id=127',0,'page','',0),(129,1,'2019-11-02 02:32:56','2019-11-02 02:32:56','Our Service area\n	    <h3>\n                Learn something more from our blog    </h3>\n		At vero eos et accusamus et iusto odio digni goiku\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. 		\n                                <a href=\"https://demo.casethemes.net/consultio-tax/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-10-600x414.jpg\" width=\"600\" height=\"414\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                                    <ul>\n                                                                                    <li>November 5, 2019</li>\n                                                                                                                            <li>\n                                                <a href=\"https://demo.casethemes.net/consultio-tax/author/admin/\">admin</a></li>\n                                                                            </ul>\n                                                                <h3><a href=\"https://demo.casethemes.net/consultio-tax/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-tax/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                            \n                                        </a>\n                                <a href=\"https://demo.casethemes.net/consultio-tax/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-07-600x414.jpg\" width=\"600\" height=\"414\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                                    <ul>\n                                                                                    <li>November 5, 2019</li>\n                                                                                                                            <li>\n                                                <a href=\"https://demo.casethemes.net/consultio-tax/author/admin/\">admin</a></li>\n                                                                            </ul>\n                                                                <h3><a href=\"https://demo.casethemes.net/consultio-tax/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to beo usually discovered.</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-tax/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                            \n                                        </a>\n                                <a href=\"https://demo.casethemes.net/consultio-tax/food-industry-leaders-often-change-their-profound/\"><img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-14-600x414.jpg\" width=\"600\" height=\"414\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                                    <ul>\n                                                                                    <li>November 5, 2019</li>\n                                                                                                                            <li>\n                                                <a href=\"https://demo.casethemes.net/consultio-tax/author/admin/\">admin</a></li>\n                                                                            </ul>\n                                                                <h3><a href=\"https://demo.casethemes.net/consultio-tax/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-tax/food-industry-leaders-often-change-their-profound/\">\n                                            Read more                                            \n                                        </a>\n                                <a href=\"https://demo.casethemes.net/consultio-tax/how-to-go-about-intiating-an-start-up-in-a-matter-of-days/\"><img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-13-600x414.jpg\" width=\"600\" height=\"414\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                                    <ul>\n                                                                                    <li>November 5, 2019</li>\n                                                                                                                            <li>\n                                                <a href=\"https://demo.casethemes.net/consultio-tax/author/admin/\">admin</a></li>\n                                                                            </ul>\n                                                                <h3><a href=\"https://demo.casethemes.net/consultio-tax/how-to-go-about-intiating-an-start-up-in-a-matter-of-days/\">How to go about intiating an start-up in a matter.</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-tax/how-to-go-about-intiating-an-start-up-in-a-matter-of-days/\">\n                                            Read more                                            \n                                        </a>\n                                <a href=\"https://demo.casethemes.net/consultio-tax/engaging-new-audiences-through-smart-approach/\"><img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-09-600x414.jpg\" width=\"600\" height=\"414\" alt=\"theme-09\" title=\"theme-09\" /></a>\n                                                                    <ul>\n                                                                                    <li>November 5, 2019</li>\n                                                                                                                            <li>\n                                                <a href=\"https://demo.casethemes.net/consultio-tax/author/admin/\">admin</a></li>\n                                                                            </ul>\n                                                                <h3><a href=\"https://demo.casethemes.net/consultio-tax/engaging-new-audiences-through-smart-approach/\">Main reasons to explan fast business builder</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-tax/engaging-new-audiences-through-smart-approach/\">\n                                            Read more                                            \n                                        </a>\n                                <a href=\"https://demo.casethemes.net/consultio-tax/many-types-of-construction-equipment-are-designed/\"><img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-05-600x414.jpg\" width=\"600\" height=\"414\" alt=\"theme-05\" title=\"theme-05\" /></a>\n                                                                    <ul>\n                                                                                    <li>November 4, 2018</li>\n                                                                                                                            <li>\n                                                <a href=\"https://demo.casethemes.net/consultio-tax/author/admin/\">admin</a></li>\n                                                                            </ul>\n                                                                <h3><a href=\"https://demo.casethemes.net/consultio-tax/many-types-of-construction-equipment-are-designed/\">Blackpool polices hunt for David Schwimmer</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-tax/many-types-of-construction-equipment-are-designed/\">\n                                            Read more                                            \n                                        </a>\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Blog Grid 3 Columns','','publish','closed','closed','','blog-grid-3-columns','','','2019-11-02 02:32:56','2019-11-02 02:32:56','',0,'https://demo.casethemes.net/consultio-tax/?page_id=129',0,'page','',0),(3974,1,'2021-03-26 19:41:37','2021-03-26 19:41:37','','Demos','','publish','closed','closed','','demos-2','','','2021-03-26 19:41:37','2021-03-26 19:41:37','',0,'https://sa7717.dev34.info/2021/03/26/demos-2/',1,'nav_menu_item','',0),(3975,1,'2021-03-26 19:41:38','2021-03-26 19:41:38','','Elements','','publish','closed','closed','','elements','','','2021-03-26 19:41:38','2021-03-26 19:41:38','',0,'https://sa7717.dev34.info/2021/03/26/elements/',20,'nav_menu_item','',0),(3976,1,'2021-03-26 19:41:38','2021-03-26 19:41:38','','Elements','','publish','closed','closed','','elements-2','','','2021-03-26 19:41:38','2021-03-26 19:41:38','',0,'https://sa7717.dev34.info/2021/03/26/elements-2/',57,'nav_menu_item','',0),(3977,1,'2021-03-26 19:41:38','2021-03-26 19:41:38','','Home','','publish','closed','closed','','home','','','2021-03-26 19:41:38','2021-03-26 19:41:38','',0,'https://sa7717.dev34.info/2021/03/26/home/',1,'nav_menu_item','',0),(3978,1,'2021-03-26 19:41:38','2021-03-26 19:41:38','','About us','','publish','closed','closed','','about-us','','','2021-03-26 19:41:38','2021-03-26 19:41:38','',0,'https://sa7717.dev34.info/2021/03/26/about-us/',2,'nav_menu_item','',0),(3979,1,'2021-03-26 19:41:38','2021-03-26 19:41:38','','Services','','publish','closed','closed','','services','','','2021-03-26 19:41:38','2021-03-26 19:41:38','',0,'https://sa7717.dev34.info/2021/03/26/services/',3,'nav_menu_item','',0),(3980,1,'2021-03-26 19:41:38','2021-03-26 19:41:38','','Team','','publish','closed','closed','','team','','','2021-03-26 19:41:38','2021-03-26 19:41:38','',0,'https://sa7717.dev34.info/2021/03/26/team/',4,'nav_menu_item','',0),(3981,1,'2021-03-26 19:41:38','2021-03-26 19:41:38','','Project','','publish','closed','closed','','project','','','2021-03-26 19:41:38','2021-03-26 19:41:38','',0,'https://sa7717.dev34.info/2021/03/26/project/',1,'nav_menu_item','',0),(3982,1,'2021-03-26 19:41:38','2021-03-26 19:41:38','','Testimonials','','publish','closed','closed','','testimonials','','','2021-03-26 19:41:38','2021-03-26 19:41:38','',0,'https://sa7717.dev34.info/2021/03/26/testimonials/',2,'nav_menu_item','',0),(3983,1,'2021-03-26 19:41:38','2021-03-26 19:41:38','','Blog','','publish','closed','closed','','blog','','','2021-03-26 19:41:38','2021-03-26 19:41:38','',0,'https://sa7717.dev34.info/2021/03/26/blog/',3,'nav_menu_item','',0),(132,1,'2019-11-02 02:33:10','2019-11-02 02:33:10','','Blog Standard','','publish','closed','closed','','blog-standard','','','2019-11-02 02:33:10','2019-11-02 02:33:10','',0,'https://demo.casethemes.net/consultio-tax/?page_id=132',0,'page','',0),(134,1,'2019-11-02 02:33:24','2019-11-02 02:33:24','','Blog Standard Left Sidebar','','publish','closed','closed','','blog-standard-left-sidebar','','','2019-11-02 02:33:24','2019-11-02 02:33:24','',0,'https://demo.casethemes.net/consultio-tax/?page_id=134',0,'page','',0),(136,1,'2019-11-02 02:33:37','2019-11-02 02:33:37','','Blog Standard Without Sidebar','','publish','closed','closed','','blog-standard-without-sidebar','','','2019-11-02 02:33:37','2019-11-02 02:33:37','',0,'https://demo.casethemes.net/consultio-tax/?page_id=136',0,'page','',0),(362,1,'2019-11-11 01:50:45','2019-11-11 01:50:45','<h3>\n        We will satisfy you by our work ideas    </h3>\n		At vero eos et accusamus et iusto odio digni goiku sendeno\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. 		\n				<h3>Ronald Dumple</h3>\n				Web Designer\n		<ul>\n							<li>info@consulio.com </li>\n										<li>+123 (4567) 890</li>\n										<li>380 St Kilda Road, Melbourne VIC 3004, Australia</li>\n					</ul>\n					<a href=\"https://demo.casethemes.net/consultio-tax/contact/\">Appionment</a>\n								            			                <a href=\"#\">\n			                    			                    			                </a>\n			            			        			            			                <a href=\"#\">\n			                    			                    			                </a>\n			            			        			            			                <a href=\"#\">\n			                    			                    			                </a>\n			            			        			            			                <a href=\"#\">\n			                    			                    			                </a>\n		Lorem ipsum dolor sit amet consectetur adipiscing tofo dosed do eiusmod tempor incididunt ut labore  dolore sedodir magna aliqua.  Lorem Ipsum has been rode. Making good food choices takes on special significant for people living with diabetes.  Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magnaaliqua anim id est laborum. Sed ut perspiciatis unde.Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam. Ut enim ad minim veniam. 		\n        <h3>\n            Expert team member        </h3>\n        Lorem ipsum dolor sit amet, cotu\ntopsectetur adipisicing elit, sed.\n        <h3>\n            24/7 Customer support        </h3>\n        Lorem ipsum dolor sit amet, cotu\ntopsectetur adipisicing elit, sed.\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Team Details','','publish','closed','closed','','team-details','','','2019-11-11 01:50:45','2019-11-11 01:50:45','',0,'https://demo.casethemes.net/consultio-tax/?page_id=362',0,'page','',0),(367,1,'2019-11-11 02:18:04','2019-11-11 02:18:04','<h3>\n                We have many reviews from our satisfied clients.    </h3>\n		It’s always a joy to hear that the work I do has positively impacted our clients and that they are happy to share their experience.		\n                        <i>”</i>\n                                <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/testimonial-07.jpg\" width=\"130\" height=\"130\" alt=\"testimonial-07\" title=\"testimonial-07\" />                            \n                            We also bring a strong interest in coaching and capability building, with an emphasis on emotional.\n                            <h3>    \n                                Kathleen Smith                            </h3>\n                            Senior Director\n                        <i>”</i>\n                                <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/testimonial-08.jpg\" width=\"130\" height=\"130\" alt=\"testimonial-08\" title=\"testimonial-08\" />                            \n                            I love that moment when we find the connections between organisations and envisage the initiative or platform.\n                            <h3>    \n                                Van Hunter                            </h3>\n                            Senior Director\n                        <i>”</i>\n                                <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/testimonial-09.jpg\" width=\"130\" height=\"130\" alt=\"testimonial-09\" title=\"testimonial-09\" />                            \n                            He was great in planting the seed and allowing the group to transition into a\ncollaborative discussion pertaining.\n                            <h3>    \n                                Macquarie Telecom                            </h3>\n                            Leadership Group\n                        <i>”</i>\n                                <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/testimonial-06.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-06\" title=\"testimonial-06\" />                            \n                            We also bring a strong interest in coaching and capability building, with an emphasis on emotional.\n                            <h3>    \n                                Fred L Smith                            </h3>\n                            Senior Director\n                        <i>”</i>\n                                <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/testimonial-05.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-05\" title=\"testimonial-05\" />                            \n                            I love that moment when we find the connections between organisations and envisage the initiative or platform.\n                            <h3>    \n                                Carolyn Smith                            </h3>\n                            Senior Director\n                        <i>”</i>\n                                <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/testimonial-04.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-04\" title=\"testimonial-04\" />                            \n                            He was great in planting the seed and allowing the group to transition into a\ncollaborative discussion pertaining.\n                            <h3>    \n                                Pamela Johnson                            </h3>\n                            Leadership Group\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Testimonials','','publish','closed','closed','','testimonials','','','2019-11-11 02:18:04','2019-11-11 02:18:04','',0,'https://demo.casethemes.net/consultio-tax/?page_id=367',0,'page','',0),(407,1,'2019-11-11 08:33:51','2019-11-11 08:33:51','Services\n	    <h3>\n                We position our clients at the forefront of their field by advancing an agenda.    </h3>\n		Easily apply to multiple jobs with one click! Quick Apply shows you recommended jobs based off your most recent search and allows you to apply to 25+ jobs in a matter of seconds!		\n                                    <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-04-541x600.jpg\" width=\"541\" height=\"600\" alt=\"theme-04\" title=\"theme-04\" />                                \n                                                                                                                <h3>Business Planning</h3>\n                                            We develop the relationships that underpin the next phase in your organisation’s growth. We do this by discerning the people.                                        \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/business-planning/\">Business Planning</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-tax/service/business-planning/\">+</a>\n                                    <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-10-541x600.jpg\" width=\"541\" height=\"600\" alt=\"theme-10\" title=\"theme-10\" />                                \n                                                                                                                <h3>Program management</h3>\n                                            The development of your next business plan will be executed by a brilliant team who will indicate your grand success.                                        \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/program-management/\">Program management</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-tax/service/program-management/\">+</a>\n                                    <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-05-541x600.jpg\" width=\"541\" height=\"600\" alt=\"theme-05\" title=\"theme-05\" />                                \n                                                                                                                <h3>Strategy</h3>\n                                            What separates York agency from all other web design agencies is the ability to offer the most User Friendly Experience.                                        \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/strategy/\">Strategy</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-tax/service/strategy/\">+</a>\n                                    <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-01-541x600.jpg\" width=\"541\" height=\"600\" alt=\"theme-01\" title=\"theme-01\" />                                \n                                                                                                                <h3>Chart management</h3>\n                                            Graphic design is the process of visual and problem-solving using one or more of typography, photography and illustration.                                        \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/chart-management/\">Chart management</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-tax/service/chart-management/\">+</a>\n                                    <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-12-541x600.jpg\" width=\"541\" height=\"600\" alt=\"theme-12\" title=\"theme-12\" />                                \n                                                                                                                <h3>SEO Optimization</h3>\n                                            A blueprint for accomplishing your objectives, from thought leadership to capacity building, photography and illustration.                                        \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/seo-optimization/\">SEO Optimization</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-tax/service/seo-optimization/\">+</a>\n                                    <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-09-541x600.jpg\" width=\"541\" height=\"600\" alt=\"theme-09\" title=\"theme-09\" />                                \n                                                                                                                <h3>Market Research</h3>\n                                            Photography is the core of everything we do, photography equipment, camera, photography and reviews, photography articles.                                        \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/market-research/\">Market Research</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-tax/service/market-research/\">+</a>\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Services v.1','','publish','closed','closed','','services-v-1','','','2019-11-11 08:33:51','2019-11-11 08:33:51','',0,'https://demo.casethemes.net/consultio-tax/?page_id=407',0,'page','',0),(409,1,'2019-11-11 08:37:45','2019-11-11 08:37:45','<h3>\n                        Our Services                    \n            </h3>\n		<p style=\"text-align: center;\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. </p><p style=\"text-align: center;\"><strong>Call now: <a href=\"tel:509-993-4655\">509-993-4655</a></strong></p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Pinball Machines</h3><p>We offer some of the most cutting edge and popular pinball machines you can have in your location. </p>		\n			<figure><img width=\"300\" height=\"320\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221-281x300.jpeg 281w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></figure><h3>ATM Machines</h3><p>This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!</p>		\n			<figure><img width=\"692\" height=\"848\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png 692w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-245x300.png 245w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-600x735.png 600w\" sizes=\"(max-width: 692px) 100vw, 692px\" /></figure><h3>Ski Ball</h3><p>Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.</p>		\n			<figure><img width=\"933\" height=\"1432\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee.jpeg 933w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-195x300.jpeg 195w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-667x1024.jpeg 667w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-768x1179.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-600x921.jpeg 600w\" sizes=\"(max-width: 933px) 100vw, 933px\" /></figure><h3>Games</h3><p>We have the most poplur bar games of all time like Buck Hunter and Golden Tee Golf. Get your location setup with these modern classics.</p>		\n			<figure><img width=\"1080\" height=\"1080\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/darts.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/darts.jpeg 1080w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-300x300.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-1024x1024.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-150x150.jpeg 150w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-768x768.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-600x600.jpeg 600w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></figure><h3>Dart Boards</h3><p>System Amusement offers the best dart boards such as the Arachnid Bullshooter. Dart boards provide a classic game that everyone loves, yet our cutting edge equipment gives a modern and interactive twist.</p>		\n			<figure><img width=\"578\" height=\"582\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-28-at-4.11.46-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-28-at-4.11.46-PM.png 578w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-28-at-4.11.46-PM-298x300.png 298w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-28-at-4.11.46-PM-150x150.png 150w\" sizes=\"(max-width: 578px) 100vw, 578px\" /></figure><h3>Pool Tables</h3><p>Pool tables are a must for successful bars. We offer quarter pool machines that will keep your customers excited and in your location for hours.</p>		\n			<figure><img width=\"352\" height=\"459\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717.jpg 352w, https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717-230x300.jpg 230w\" sizes=\"(max-width: 352px) 100vw, 352px\" /></figure><h3>Touch Tunes</h3><p>System Amusement proudly provides the Touch Tunes music system, that will bring the entertainment in your location to a whole new level!</p>		\n			<figure><img width=\"1210\" height=\"1182\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM.png 1210w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-300x293.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-1024x1000.png 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-768x750.png 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-600x586.png 600w\" sizes=\"(max-width: 1210px) 100vw, 1210px\" /></figure><h3>Juke Boxes</h3><p>These have been a classic for literally decades. System Amusement carries the highest tech juke boxes in the industry. Contact us today to order yours.</p>		\n	    <h3>\n                        Contact System Amusement Today                    \n            </h3>\n                    <h3>\n                Phone:            </h3>\n                509-326-1551 \n                    <h3>\n                Email:            </h3>\n                systemamusement@comcast.net\n                    <h3>\n                Hours:            </h3>\n                Mon - Sat: 8 am - 5 pm, <br>Sunday: CLOSED\n															<img width=\"2560\" height=\"1708\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-600x400.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our 50+ Years of Dedication to our Clients!                    \n            </h3>\n		<p>Your success is our success!</p>		\n                1\n                %\n                            Quality Equipment\n                1\n                %\n                            Attention to Detail\n                1\n                %\n                            Reliable Support\n                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n															<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />','Our Services','','publish','closed','closed','','our-services','','','2021-04-28 23:21:45','2021-04-28 23:21:45','',0,'https://demo.casethemes.net/consultio-tax/?page_id=409',0,'page','',0),(4443,1,'2021-04-28 22:07:28','2021-04-28 22:07:28','<h3>\n                        Our Services                    \n            </h3>\n		<p style=\"text-align: center;\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. </p><p style=\"text-align: center;\"><strong>Call now: <a href=\"tel:509-993-4655\">509-993-4655</a></strong></p>','Services v.2','','inherit','closed','closed','','409-revision-v1','','','2021-04-28 22:07:28','2021-04-28 22:07:28','',409,'https://sa7717.dev34.info/?p=4443',0,'revision','',0),(4447,1,'2021-04-28 22:16:44','2021-04-28 22:16:44','<h3>\n                        Our Services                    \n            </h3>\n		<p style=\"text-align: center;\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. </p><p style=\"text-align: center;\"><strong>Call now: <a href=\"tel:509-993-4655\">509-993-4655</a></strong></p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Pinball Machines</h3><p>We offer some of the most cutting edge and popular pinball machines you can have in your location. </p>		\n			<figure><img width=\"300\" height=\"320\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221-281x300.jpeg 281w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></figure><h3>ATM Machines</h3><p>This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Pinball Machines</h3><p>We offer some of the most cutting edge and popular pinball machines you can have in your location. </p>','Services v.2','','inherit','closed','closed','','409-revision-v1','','','2021-04-28 22:16:44','2021-04-28 22:16:44','',409,'https://sa7717.dev34.info/?p=4447',0,'revision','',0),(4445,1,'2021-04-28 22:16:44','2021-04-28 22:16:44','<h3>\n                        Our Services                    \n            </h3>\n		<p style=\"text-align: center;\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. </p><p style=\"text-align: center;\"><strong>Call now: <a href=\"tel:509-993-4655\">509-993-4655</a></strong></p>','Services v.2','','inherit','closed','closed','','409-revision-v1','','','2021-04-28 22:16:44','2021-04-28 22:16:44','',409,'https://sa7717.dev34.info/?p=4445',0,'revision','',0),(4446,1,'2021-04-28 22:16:44','2021-04-28 22:16:44','<h3>\n                        Our Services                    \n            </h3>\n		<p style=\"text-align: center;\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. </p><p style=\"text-align: center;\"><strong>Call now: <a href=\"tel:509-993-4655\">509-993-4655</a></strong></p>','Services v.2','','inherit','closed','closed','','409-revision-v1','','','2021-04-28 22:16:44','2021-04-28 22:16:44','',409,'https://sa7717.dev34.info/?p=4446',0,'revision','',0),(415,1,'2019-11-11 08:40:33','2019-11-11 08:40:33','<h3>\n                Our client, global analytical techno company, wanted to build market.    </h3>\n		<p>In this context, our approach was to build trusted and strategic relationships within key sectors, with the goal of advancing health, trade and business outcomes.</p>		\n            All\n                    Coaching                \n                    Facilitation                \n                    Stakeholder relations                \n                    Strategy                \n                                <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-01-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-01\" title=\"theme-01\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/business-growth/\">Business Growth</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/business-growth/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-02-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-02\" title=\"theme-02\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/digital-analysis/\">Digital Analysis</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/digital-analysis/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-03-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-03\" title=\"theme-03\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/chan-agency/\">Chan Agency</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/chan-agency/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-04-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-04\" title=\"theme-04\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/data-analytics/\">Data Analytics</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/data-analytics/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-05-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-05\" title=\"theme-05\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/court-imperial/\">Court Imperial</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/court-imperial/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-06-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-06\" title=\"theme-06\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/revenue-growth/\">Revenue Growth</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/stakeholder-relations/\" rel=\"tag\">Stakeholder relations</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/revenue-growth/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-07-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-07\" title=\"theme-07\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/market-expansion/\">Market Expansion</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/market-expansion/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-09-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-09\" title=\"theme-09\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/financial-analysis/\">Financial Analysis</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/financial-analysis/\">+</a>\n                Load more            \n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Portfolio Grid','','publish','closed','closed','','portfolio-grid','','','2019-11-11 08:40:33','2019-11-11 08:40:33','',0,'https://demo.casethemes.net/consultio-tax/?page_id=415',0,'page','',0),(417,1,'2019-11-11 08:41:02','2019-11-11 08:41:02','<h3>\n                Our client, global analytical techno company, wanted to build market.    </h3>\n		<p>In this context, our approach was to build trusted and strategic relationships within key sectors, with the goal of advancing health, trade and business outcomes.</p>		\n            All\n                    Coaching                \n                    Facilitation                \n                    Stakeholder relations                \n                    Strategy                \n                                <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-01-600x600.jpg\" width=\"600\" height=\"600\" alt=\"theme-01\" title=\"theme-01\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/business-growth/\">Business Growth</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/business-growth/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-02-600x600.jpg\" width=\"600\" height=\"600\" alt=\"theme-02\" title=\"theme-02\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/digital-analysis/\">Digital Analysis</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/digital-analysis/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-03-600x600.jpg\" width=\"600\" height=\"600\" alt=\"theme-03\" title=\"theme-03\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/chan-agency/\">Chan Agency</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/chan-agency/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-04-600x600.jpg\" width=\"600\" height=\"600\" alt=\"theme-04\" title=\"theme-04\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/data-analytics/\">Data Analytics</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/data-analytics/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-05-600x600.jpg\" width=\"600\" height=\"600\" alt=\"theme-05\" title=\"theme-05\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/court-imperial/\">Court Imperial</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/court-imperial/\">+</a>\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Portfolio Masonry','','publish','closed','closed','','portfolio-masonry','','','2019-11-11 08:41:02','2019-11-11 08:41:02','',0,'https://demo.casethemes.net/consultio-tax/?page_id=417',0,'page','',0),(483,1,'2019-11-12 02:30:38','2019-11-12 02:30:38','<a data-elementor-open-lightbox=\"\" href=\"https://demo.casethemes.net/consultio-tax/\">\n							<img width=\"607\" height=\"160\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/10/logo-footer.png\" alt=\"\" srcset=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/10/logo-footer.png 607w, https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/10/logo-footer-300x79.png 300w, https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/10/logo-footer-600x158.png 600w\" sizes=\"(max-width: 607px) 100vw, 607px\" />								</a>\n	    <h3>\n                        One solution for all kinds of Consulting <cite>business</cite>        \n    </h3>\n		Consultio is a responsive corporate, business & financial services WordPress theme. It is suitable for all business & corporate websites. 		\n    <a href=\"https://themeforest.net/cart/add_items?ref=case-themes&amp;item_ids=25376496\" target=\"_blank\" rel=\"noopener noreferrer\">\n                Purchase Now!\n    </a>\n    <a href=\"#demos\">\n                View Demos\n    </a>\n		Creat a successful website		\n	    <h3>\n                        06+ Awesome Demos        \n    </h3>\n		Consultio is a Consulting, Finance &amp; Business Theme. It is a clean and modern Business design. You can use it for any kind website like consultancy, Adviser, Business, Consultant, Corporate, Finance, Financiall.		\n	    	<img width=\"800\" height=\"1024\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/demo1.jpg\" alt=\"\" />	    	\n	    		    		<a href=\"https://demo.casethemes.net/consultio-tax/\" target=\"_blank\" rel=\"noopener noreferrer\">View now</a>\n	    	<h3>Consultio - <cite>FINANCE CONSULTING</cite></h3>\n	    	<img width=\"800\" height=\"1024\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/demo2.jpg\" alt=\"\" />	    	\n	    		    		<a href=\"https://demo.casethemes.net/consultio-tax/home-2/\" target=\"_blank\" rel=\"noopener noreferrer\">View now</a>\n	    	<h3>Consultio - <cite>BUSINESS CONSULTING</cite></h3>\n	    	<img width=\"800\" height=\"1024\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/demo3.jpg\" alt=\"\" />	    	\n	    		    		<a href=\"https://demo.casethemes.net/consultio-tax/home-3/\" target=\"_blank\" rel=\"noopener noreferrer\">View now</a>\n	    	<h3>Consultio - <cite>LAW CONSULTING</cite></h3>\n	    	<img width=\"800\" height=\"1024\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/demo4.jpg\" alt=\"\" />	    	\n	    		    		<a href=\"https://demo.casethemes.net/consultio-tax/home-4/\" target=\"_blank\" rel=\"noopener noreferrer\">View now</a>\n	    	<h3>Consultio - <cite>STARTUP CONSULTING</cite></h3>\n	    	<img width=\"800\" height=\"1024\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/01/demo7.jpg\" alt=\"\" />	    	\n	    		    		<a href=\"https://demo.casethemes.net/consultio-tax/home-5\" target=\"_blank\" rel=\"noopener noreferrer\">View now</a>\n	    		    					<label>NEW</label>\n	    	<h3>Consultio - <cite>IT SOLUTION</cite></h3>\n	    	<img width=\"800\" height=\"1024\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/01/demo8.jpg\" alt=\"\" />	    	\n	    		    		<a href=\"https://demo.casethemes.net/consultio-tax/home-6/\" target=\"_blank\" rel=\"noopener noreferrer\">View now</a>\n	    		    					<label>New</label>\n	    	<h3>Consultio - <cite>TAX CONSULTING</cite></h3>\n	    	<img width=\"800\" height=\"1024\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/demo9.jpg\" alt=\"\" />	    	\n	    		    		<a href=\"#\" target=\"_blank\" rel=\"noopener noreferrer\">View now</a>\n	    		    					<label>Coming Soon</label>\n	    	<h3>Consultio - <cite>HUMAN RESOURCE</cite></h3>\n	    <h3>\n                        # Fully Responsive and Retina Ready        \n    </h3>\n										<img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/devices.png\" title=\"\" alt=\"\" />											\n										<img width=\"937\" height=\"400\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/landing-devices.png\" alt=\"\" srcset=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/landing-devices.png 937w, https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/landing-devices-300x128.png 300w, https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/landing-devices-768x328.png 768w, https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/landing-devices-600x256.png 600w\" sizes=\"(max-width: 937px) 100vw, 937px\" />											\n	    <h3>\n                        Features of Our Theme        \n    </h3>\n		Consultio allows you to create beautiful website with some awesome features. We have built this theme as user friendly and we have made by Elementor.		\n            <img width=\"35\" height=\"56\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/feature-icon-01.png\" alt=\"\" />        \n        <h3>\n            1 Click Demo Install        </h3>\n        This works by importing wordpress content, widgets and theme options.\n            <img width=\"49\" height=\"56\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/feature-icon-02.png\" alt=\"\" />        \n        <h3>\n            Elementor        </h3>\n        By Elementor, the developers can find the easy way to work on theme.\n            <img width=\"115\" height=\"56\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/feature-icon-03.png\" alt=\"\" />        \n        <h3>\n            Redux Framework        </h3>\n        Redux is a simple, truly extensible options framework for WordPress Theme. \n            <img width=\"82\" height=\"56\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/feature-icon-04.png\" alt=\"\" />        \n        <h3>\n            Contact Form 7         </h3>\n        The extension can be of great help to embrace fast online payment facility. \n            <img width=\"49\" height=\"56\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/feature-icon-05.png\" alt=\"\" />        \n        <h3>\n            Slider Revolution        </h3>\n        It includes Revolution Slider for easy slide building. $49 value FREE! \n            <img width=\"55\" height=\"56\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/feature-icon-06.png\" alt=\"\" />        \n        <h3>\n            SEO Friendly         </h3>\n        Theme perfectly supports search engine algorithms. Fully SEO Friendly. \n            <img width=\"59\" height=\"56\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/feature-icon-07.png\" alt=\"\" />        \n        <h3>\n            Great Support!         </h3>\n        Get a high quality support service with us, Submit a ticket to our form. \n            <img width=\"65\" height=\"56\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/feature-icon-08.png\" alt=\"\" />        \n        <h3>\n            Fully Responsive         </h3>\n        Fully responsive, retina ready created for all types of devices.\n										<img width=\"1921\" height=\"573\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/landing-footer.png\" alt=\"\" srcset=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/landing-footer.png 1921w, https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/landing-footer-300x89.png 300w, https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/landing-footer-1024x305.png 1024w, https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/landing-footer-768x229.png 768w, https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/landing-footer-1536x458.png 1536w, https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/landing-footer-600x179.png 600w\" sizes=\"(max-width: 1921px) 100vw, 1921px\" />											\n			<h2>Thanks a lot!</h2>','Landing','','publish','closed','closed','','landing','','','2019-11-12 02:30:38','2019-11-12 02:30:38','',0,'https://demo.casethemes.net/consultio-tax/?page_id=483',0,'page','',0),(748,1,'2019-11-15 04:08:59','2019-11-15 04:08:59','','Shop','','publish','closed','closed','','shop','','','2019-11-15 04:08:59','2019-11-15 04:08:59','',0,'https://demo.casethemes.net/consultio-tax/shop/',0,'page','',0),(749,1,'2019-11-15 04:08:59','2019-11-15 04:08:59','<!-- wp:shortcode -->[woocommerce_cart]<!-- /wp:shortcode -->','Cart','','publish','closed','closed','','cart','','','2019-11-15 04:08:59','2019-11-15 04:08:59','',0,'https://demo.casethemes.net/consultio-tax/cart/',0,'page','',0),(750,1,'2019-11-15 04:08:59','2019-11-15 04:08:59','<!-- wp:shortcode -->[woocommerce_checkout]<!-- /wp:shortcode -->','Checkout','','publish','closed','closed','','checkout','','','2019-11-15 04:08:59','2019-11-15 04:08:59','',0,'https://demo.casethemes.net/consultio-tax/checkout/',0,'page','',0),(751,1,'2019-11-15 04:08:59','2019-11-15 04:08:59','<!-- wp:shortcode -->[woocommerce_my_account]<!-- /wp:shortcode -->','My account','','publish','closed','closed','','my-account','','','2019-11-15 04:08:59','2019-11-15 04:08:59','',0,'https://demo.casethemes.net/consultio-tax/my-account/',0,'page','',0),(783,1,'2019-11-15 07:35:57','2019-11-15 07:35:57','[yith_wcwl_wishlist]','Shop Wishlist','','publish','closed','closed','','shop-wishlist','','','2019-11-15 07:35:57','2019-11-15 07:35:57','',0,'https://demo.casethemes.net/consultio-tax/?page_id=783',0,'page','',0),(1972,1,'2019-12-05 08:34:53','2019-12-05 08:34:53','Career\n	    <h3>\n                From startups to Fortune 500s, WayUp offers the best internships and jobs.    </h3>\n		Easily apply to multiple jobs with one click! Quick Apply shows you recommended jobs based off your most recent search and allows you to apply to 25+ jobs in a matter of seconds!		\n                                    <a href=\"#\"><img width=\"39\" height=\"40\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/icon-google.png\" alt=\"\" /></a>\n                                <h3>    \n                                    Digital Designer                                </h3>\n                                <ul>\n                                                                                <li>Jam Sports Productions LLC</li>\n                                                                                    <li>Admin</li>\n                                                                                    <li>Newyork, SCT</li>\n                                                                                    <li>Remote</li>\n                                                                        </ul>\n                        We would love to share a similar experience and how I learned some valuable lessons. \n                                <a href=\"#\">Apply now fds</a>\n                                    <a href=\"#\"><img width=\"44\" height=\"44\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/icon-envato.png\" alt=\"\" /></a>\n                                <h3>    \n                                    Graphic Artist                                </h3>\n                                <ul>\n                                                                                <li>Jam Sports Productions LLC</li>\n                                                                                    <li>Admin</li>\n                                                                                    <li>Newyork, SCT</li>\n                                                                                    <li>Remote</li>\n                                                                        </ul>\n                        We would love to share a similar experience and how I learned some valuable lessons. \n                                <a href=\"#\">Apply now</a>\n                                    <a href=\"#\"><img width=\"41\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/icon-themeforest.png\" alt=\"\" /></a>\n                                <h3>    \n                                    Sales Reporter                                </h3>\n                                <ul>\n                                                                                <li>Jam Sports Productions LLC</li>\n                                                                                    <li>Admin</li>\n                                                                                    <li>Newyork, SCT</li>\n                                                                                    <li>Remote</li>\n                                                                        </ul>\n                        We would love to share a similar experience and how I learned some valuable lessons. \n                                <a href=\"#\">Apply now</a>\n                                    <a href=\"#\"><img width=\"53\" height=\"47\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/icon-codecanyon.png\" alt=\"\" /></a>\n                                <h3>    \n                                    Digital Marketer                                </h3>\n                                <ul>\n                                                                                <li>Jam Sports Productions LLC</li>\n                                                                                    <li>Admin</li>\n                                                                                    <li>Newyork, SCT</li>\n                                                                                    <li>Remote</li>\n                                                                        </ul>\n                        We would love to share a similar experience and how I learned some valuable lessons. \n                                <a href=\"#\">Apply now</a>\n                                    <a href=\"#\"><img width=\"39\" height=\"40\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/icon-google.png\" alt=\"\" /></a>\n                                <h3>    \n                                    Web Designer                                </h3>\n                                <ul>\n                                                                                <li>Jam Sports Productions LLC</li>\n                                                                                    <li>Admin</li>\n                                                                                    <li>Newyork, SCT</li>\n                                                                                    <li>Remote</li>\n                                                                        </ul>\n                        We would love to share a similar experience and how I learned some valuable lessons. \n                                <a href=\"#\">Apply now</a>\n                                    <a href=\"#\"><img width=\"41\" height=\"41\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/icon-career.png\" alt=\"\" /></a>\n                                <h3>    \n                                    Web Developer                                </h3>\n                                <ul>\n                                                                                <li>Jam Sports Productions LLC</li>\n                                                                                    <li>Admin</li>\n                                                                                    <li>Newyork, SCT</li>\n                                                                                    <li>Remote</li>\n                                                                        </ul>\n                        We would love to share a similar experience and how I learned some valuable lessons. \n                                <a href=\"#\">Apply now</a>\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Careers','','publish','closed','closed','','careers','','','2019-12-05 08:34:53','2019-12-05 08:34:53','',0,'https://demo.casethemes.net/consultio-tax/?page_id=1972',0,'page','',0),(2269,1,'2019-12-12 03:13:06','2019-12-12 03:13:06','<canvas id=\"ct-line-chart\" width=\"800\" height=\"450\" data-datasets=\"{&quot;labels&quot;:[&quot;2020&quot;,&quot;2019&quot;,&quot;2018&quot;,&quot;2017&quot;,&quot;2016&quot;,&quot;2015&quot;],&quot;datasets&quot;:[{&quot;label&quot;:&quot;Business&quot;,&quot;data&quot;:[&quot;5000&quot;,&quot;7500&quot;,&quot;4000&quot;,&quot;14000&quot;,&quot;9000&quot;,&quot;24000&quot;],&quot;backgroundColor&quot;:&quot;rgba(0, 173, 239, 0.3)&quot;,&quot;borderColor&quot;:&quot;#00ADEF&quot;,&quot;fill&quot;:true,&quot;borderWidth&quot;:4,&quot;lineTension&quot;:0,&quot;pointRadius&quot;:7,&quot;pointBorderColor&quot;:&quot;#fff&quot;,&quot;pointBackgroundColor&quot;:&quot;#00ADEF&quot;,&quot;pointBorderWidth&quot;:2},{&quot;label&quot;:&quot;Finance&quot;,&quot;data&quot;:[&quot;12500&quot;,&quot;11000&quot;,&quot;22000&quot;,&quot;17000&quot;,&quot;27000&quot;,&quot;26500&quot;],&quot;backgroundColor&quot;:&quot;rgba(100, 144, 237, 0.3)&quot;,&quot;borderColor&quot;:&quot;#5080FC&quot;,&quot;fill&quot;:true,&quot;borderWidth&quot;:4,&quot;lineTension&quot;:0,&quot;pointRadius&quot;:7,&quot;pointBorderColor&quot;:&quot;#fff&quot;,&quot;pointBackgroundColor&quot;:&quot;#5080FC&quot;,&quot;pointBorderWidth&quot;:2},{&quot;label&quot;:&quot;Consulting&quot;,&quot;data&quot;:[&quot;16000&quot;,&quot;19000&quot;,&quot;28000&quot;,&quot;24000&quot;,&quot;32000&quot;,&quot;36500&quot;],&quot;backgroundColor&quot;:&quot;rgba(0, 27, 231, 0.2)&quot;,&quot;borderColor&quot;:&quot;#001BE7&quot;,&quot;fill&quot;:true,&quot;borderWidth&quot;:4,&quot;lineTension&quot;:0,&quot;pointRadius&quot;:7,&quot;pointBorderColor&quot;:&quot;#fff&quot;,&quot;pointBackgroundColor&quot;:&quot;#001BE7&quot;,&quot;pointBorderWidth&quot;:2}]}\"></canvas>','Shortcode','','publish','closed','closed','','shortcode','','','2019-12-12 03:13:06','2019-12-12 03:13:06','',0,'https://demo.casethemes.net/consultio-tax/?page_id=2269',0,'page','',0),(3193,1,'2020-01-30 03:44:13','2020-01-30 03:44:13','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        Entertainment Solutions for Every Business!                    \n            </h3>\n		<p style=\"text-align: center;\">System Amusement is your partner in providing top of the line entertainment and activities to your customers. We provide complete Keep-filled services and provide a Fully maintained solution for your business. Provide the very best entertainment and activities at a fraction of the cost!</p>[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Pinball Machines                    \n            </h3>\n		<p>Pinball is a type of arcade game in which a player uses paddles (called flippers) to manipulate one or more balls inside a pinball machine. A pinball machine is a glass-covered cabinet containing a play field populated with lights, targets, bumpers, ramps, and various other objects depending on its design. The primary objective of the game is to score as many points as possible by hitting targets and making various shots with the flippers, before all balls &#8220;drain&#8221; at an exit usually situated at the bottom of the play field.</p>		\n															<img width=\"640\" height=\"428\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-1024x684.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-1024x684.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-300x200.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-768x513.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-1536x1025.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-2048x1367.jpeg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-600x401.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n															<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n															<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our 50+ Years of Dedication to our Clients!                    \n            </h3>\n		<p>Your success is our success!</p>		\n                1\n                %\n                            Quality Equipment\n                1\n                %\n                            Attention to Detail\n                1\n                %\n                            Reliable Support\n                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n															<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n															<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n															<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n            Do you play pool?                                \n	    <h3>\n                        Learn About Our Pool League, and Get Signed Up Today!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','publish','closed','closed','','home','','','2021-04-28 20:10:53','2021-04-28 20:10:53','',0,'https://demo.casethemes.net/consultio-tax/?page_id=3193',0,'page','',0),(4104,1,'2021-03-26 20:59:00','2021-03-26 20:59:00','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n            Services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Testimonial                                \n	    <h3>\n                            <i></i>\n                        We have appreciated by our clients!                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/author-02.jpg\" width=\"92\" height=\"92\" alt=\"author-02\" title=\"author-02\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Maria Silverii                                    </h3>\n                                    CEO of Blue Illusion\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/author-01.jpg\" width=\"92\" height=\"92\" alt=\"author-01\" title=\"author-01\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Rebecca Leo                                     </h3>\n                                    Web Designer\n										<img width=\"800\" height=\"632\" src=\"https://sa7717.dev34.info/wp-content/uploads/2020/02/h6-tax.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2020/02/h6-tax.png 800w, https://sa7717.dev34.info/wp-content/uploads/2020/02/h6-tax-300x237.png 300w, https://sa7717.dev34.info/wp-content/uploads/2020/02/h6-tax-768x607.png 768w, https://sa7717.dev34.info/wp-content/uploads/2020/02/h6-tax-600x474.png 600w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n            Blog                                \n	    <h3>\n                            <i></i>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-26 20:59:00','2021-03-26 20:59:00','',3193,'https://sa7717.dev34.info/?p=4104',0,'revision','',0),(4116,1,'2021-03-27 06:07:10','2021-03-27 06:07:10','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Testimonial                                \n	    <h3>\n                            <i></i>\n                        We have appreciated by our clients!                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/author-02.jpg\" width=\"92\" height=\"92\" alt=\"author-02\" title=\"author-02\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Maria Silverii                                    </h3>\n                                    CEO of Blue Illusion\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/author-01.jpg\" width=\"92\" height=\"92\" alt=\"author-01\" title=\"author-01\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Rebecca Leo                                     </h3>\n                                    Web Designer\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Blog                                \n	    <h3>\n                            <i></i>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 06:07:10','2021-03-27 06:07:10','',3193,'https://sa7717.dev34.info/?p=4116',0,'revision','',0),(3491,1,'2020-02-07 02:16:32','2020-02-07 02:16:32','Is Your Pinball Machine Broken?\n<h3>\n                        We Offer Top Notch Pinball Machine Service and Repairs</h3>\nSystem Amusement is happy to offer pinball machine repair and service to customers located throughout Eastern Washington and Western Idaho. Contact our support team today to setup an appointment.\n\n<img width=\"1000\" height=\"667\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home-.jpeg 1000w, https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home--300x200.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home--768x512.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home--600x400.jpeg 600w\" sizes=\"(max-width: 1000px) 100vw, 1000px\">\n<h3>\n                        Complete The Form Below or Call or Email us Today</h3>\n<img width=\"640\" height=\"428\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-1024x684.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-1024x684.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-300x200.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-768x513.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-1536x1025.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-2048x1367.jpeg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-600x401.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\">\nContact our support team today!\nClick to call\n<a href=\"te:509-326-1551\">\n509-326-1551            </a>\nWhat Makes System Amusement Different?\n<h3>\n                        Our 50+ Years of Dedication to our Clients!</h3>\nYour success is our success!\n\n1\n%\nQuality Equipment\n1\n%\nAttention to Detail\n1\n%\nReliable Support\n1\n%\nClient Dedication\nCustomer Reviews\n<h3>\n                            <i></i>\nWhat Our Clients Are Saying</h3>\n<img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\">\n\"These guys will bend over backwards for your bar or place of business. Thanks guys\"\n<h3>\n                                        Logan</h3>\nBar Owner\n<img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\">\n\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\"\n<h3>\n                                        Rebecca</h3>\nBar Owner\n<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\">','Pinball Repairs and Service','','publish','closed','closed','','pinball-repairs-and-service','','','2021-04-15 01:13:22','2021-04-15 01:13:22','',0,'https://demo.casethemes.net/consultio-tax/?page_id=3491',0,'page','',0),(4387,1,'2021-04-14 23:32:07','2021-04-14 23:32:07','Is Your Pinball Machine Broken?                                \n	    <h3>\n                        We Offer Top Notch Pinball Machine Service and Repairs                    \n            </h3>\n		<p>System Amusement is happy to offer pinball machine repair and service to customers located throughout Eastern Washington and Western Idaho. Contact our support team today to setup an appointment.</p>		\n										<img width=\"1000\" height=\"667\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home-.jpeg 1000w, https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home--300x200.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home--768x512.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home--600x400.jpeg 600w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n            Contact our support team today!\n            Click to call\n            <a href=\"te:509-326-1551\">\n                                                                    509-326-1551            </a>','About v.2','','inherit','closed','closed','','3491-revision-v1','','','2021-04-14 23:32:07','2021-04-14 23:32:07','',3491,'https://sa7717.dev34.info/?p=4387',0,'revision','',0),(4388,1,'2021-04-14 23:33:17','2021-04-14 23:33:17','What Makes System Amusement Different?                                \n	    <h3>\n                        Our 50+ Years of Dedication to our Clients!                    \n            </h3>\n		<p>Your success is our success!</p>		\n                1\n                %\n                            Quality Equipment\n                1\n                %\n                            Attention to Detail\n                1\n                %\n                            Reliable Support\n                1\n                %\n                            Client Dedication','4 bullet list','','publish','closed','closed','','4-bullet-list','','','2021-04-14 23:33:17','2021-04-14 23:33:17','',0,'https://sa7717.dev34.info/?elementor_library=4-bullet-list',0,'elementor_library','',0),(4389,1,'2021-04-14 23:33:17','2021-04-14 23:33:17','','4 bullet list','','inherit','closed','closed','','4388-revision-v1','','','2021-04-14 23:33:17','2021-04-14 23:33:17','',4388,'https://sa7717.dev34.info/?p=4389',0,'revision','',0),(4390,1,'2021-04-14 23:33:17','2021-04-14 23:33:17','What Makes System Amusement Different?                                \n	    <h3>\n                        Our 50+ Years of Dedication to our Clients!                    \n            </h3>\n		<p>Your success is our success!</p>		\n                1\n                %\n                            Quality Equipment\n                1\n                %\n                            Attention to Detail\n                1\n                %\n                            Reliable Support\n                1\n                %\n                            Client Dedication','4 bullet list','','inherit','closed','closed','','4388-revision-v1','','','2021-04-14 23:33:17','2021-04-14 23:33:17','',4388,'https://sa7717.dev34.info/?p=4390',0,'revision','',0),(4391,1,'2021-04-14 23:33:37','2021-04-14 23:33:37','Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />','testimonials 77707','','publish','closed','closed','','testimonials-77707','','','2021-04-14 23:33:37','2021-04-14 23:33:37','',0,'https://sa7717.dev34.info/?elementor_library=testimonials-77707',0,'elementor_library','',0),(4392,1,'2021-04-14 23:33:37','2021-04-14 23:33:37','','testimonials 77707','','inherit','closed','closed','','4391-revision-v1','','','2021-04-14 23:33:37','2021-04-14 23:33:37','',4391,'https://sa7717.dev34.info/?p=4392',0,'revision','',0),(4393,1,'2021-04-14 23:33:37','2021-04-14 23:33:37','Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />','testimonials 77707','','inherit','closed','closed','','4391-revision-v1','','','2021-04-14 23:33:37','2021-04-14 23:33:37','',4391,'https://sa7717.dev34.info/?p=4393',0,'revision','',0),(4394,1,'2021-04-14 23:37:07','2021-04-14 23:37:07','Is Your Pinball Machine Broken?                                \n	    <h3>\n                        We Offer Top Notch Pinball Machine Service and Repairs                    \n            </h3>\n		<p>System Amusement is happy to offer pinball machine repair and service to customers located throughout Eastern Washington and Western Idaho. Contact our support team today to setup an appointment.</p>		\n										<img width=\"1000\" height=\"667\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home-.jpeg 1000w, https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home--300x200.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home--768x512.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home--600x400.jpeg 600w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n            Contact our support team today!\n            Click to call\n            <a href=\"te:509-326-1551\">\n                                                                    509-326-1551            </a>','About v.2','','inherit','closed','closed','','3491-revision-v1','','','2021-04-14 23:37:07','2021-04-14 23:37:07','',3491,'https://sa7717.dev34.info/?p=4394',0,'revision','',0),(3493,1,'2020-02-07 02:16:44','2020-02-07 02:16:44','League Information\n<h3>\n                        Please use the information below to sign up for the Dart and Pool Leagues</h3>\n<h5>Dart League registration and info</h5>\n<strong>Inland Empire Dart League</strong>&nbsp;<a href=\"tel:509-389-6518\"><strong>509-389-6518</strong></a>&nbsp; &nbsp;<em>Ask For Tammy (secretary)</em>&nbsp;<strong><a href=\"mailto:info@dartleague.com\">info@dartleague.com</a></strong>&nbsp;<strong>The dart league is associated with the National Dart Association&nbsp;</strong>\n<img width=\"300\" height=\"83\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/05/nda-300x83.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/05/nda-300x83.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/05/nda-1024x283.png 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/05/nda-768x212.png 768w, https://sa7717.dev34.info/wp-content/uploads/2021/05/nda-600x166.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/05/nda.png 1425w\" sizes=\"(max-width: 300px) 100vw, 300px\">\n<h5>Pool League registration and info</h5>\n<strong>APA of Spokane</strong>&nbsp;<a href=\"tel:509-327-2591\"><strong>509-327-2591</strong></a>&nbsp;<a href=\"http://poolplayers.com\"><strong>poolplayers.com</strong></a>&nbsp;<strong>The pool league is associated with the American Pool Players Association&nbsp;</strong>\n<img width=\"471\" height=\"90\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/05/apa.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/05/apa.png 471w, https://sa7717.dev34.info/wp-content/uploads/2021/05/apa-300x57.png 300w\" sizes=\"(max-width: 471px) 100vw, 471px\">','League Information','','publish','closed','closed','','league-information','','','2021-05-21 17:50:39','2021-05-21 17:50:39','',0,'https://demo.casethemes.net/consultio-tax/?page_id=3493',0,'page','',0),(4501,1,'2021-05-20 00:22:26','2021-05-20 00:22:26','League Information\n<h3>\n                        Please use the information below to sign up for the Dart and Pool Leagues</h3>\nFor Dart League registration please use the following information below:&nbsp;info@dartleague.comFor Dart League registration please use the following information below:&nbsp;info@dartleague.com','About v.3','','inherit','closed','closed','','3493-revision-v1','','','2021-05-20 00:22:26','2021-05-20 00:22:26','',3493,'https://sa7717.dev34.info/?p=4501',0,'revision','',0),(4497,1,'2021-05-20 00:21:47','2021-05-20 00:21:47','League Information                                \n	    <h3>\n                        Please use the information belowto sign up for the Dart and Pool Leagues                    \n            </h3>\n		For Dart League registration please use the following information below: info@dartleague.comFor Dart League registration please use the following information below: info@dartleague.com','About v.3','','inherit','closed','closed','','3493-revision-v1','','','2021-05-20 00:21:47','2021-05-20 00:21:47','',3493,'https://sa7717.dev34.info/?p=4497',0,'revision','',0),(4498,1,'2021-05-20 00:21:57','2021-05-20 00:21:57','League Information                                \n	    <h3>\n                        Please use the information belowto sign up for the Dart and Pool Leagues                    \n            </h3>\n		For Dart League registration please use the following information below: info@dartleague.comFor Dart League registration please use the following information below: info@dartleague.com','About v.3','','inherit','closed','closed','','3493-revision-v1','','','2021-05-20 00:21:57','2021-05-20 00:21:57','',3493,'https://sa7717.dev34.info/?p=4498',0,'revision','',0),(4499,1,'2021-05-20 00:21:58','2021-05-20 00:21:58','League Information                                \n	    <h3>\n                        Please use the information belowto sign up for the Dart and Pool Leagues                    \n            </h3>\n		For Dart League registration please use the following information below: info@dartleague.comFor Dart League registration please use the following information below: info@dartleague.com','About v.3','','inherit','closed','closed','','3493-revision-v1','','','2021-05-20 00:21:58','2021-05-20 00:21:58','',3493,'https://sa7717.dev34.info/?p=4499',0,'revision','',0),(4500,1,'2021-05-20 00:21:58','2021-05-20 00:21:58','League Information                                \n	    <h3>\n                        Please use the information below to sign up for the Dart and Pool Leagues                    \n            </h3>\n		For Dart League registration please use the following information below: info@dartleague.comFor Dart League registration please use the following information below: info@dartleague.com','About v.3','','inherit','closed','closed','','3493-revision-v1','','','2021-05-20 00:21:58','2021-05-20 00:21:58','',3493,'https://sa7717.dev34.info/?p=4500',0,'revision','',0),(4502,1,'2021-05-20 00:23:56','2021-05-20 00:23:56','League Information\n<h3>\n                        Please use the information below to sign up for the Dart and Pool Leagues</h3>\nFor Dart League registration please use the following information below:&nbsp;info@dartleague.comFor Dart League registration please use the following information below:&nbsp;info@dartleague.com','League Information','','inherit','closed','closed','','3493-revision-v1','','','2021-05-20 00:23:56','2021-05-20 00:23:56','',3493,'https://sa7717.dev34.info/?p=4502',0,'revision','',0),(4504,1,'2021-05-21 17:37:45','2021-05-21 17:37:45','','nda','','inherit','open','closed','','nda','','','2021-05-21 17:37:45','2021-05-21 17:37:45','',3493,'https://sa7717.dev34.info/wp-content/uploads/2021/05/nda.png',0,'attachment','image/png',0),(4505,1,'2021-05-21 17:41:47','2021-05-21 17:41:47','','apa','','inherit','open','closed','','apa','','','2021-05-21 17:41:47','2021-05-21 17:41:47','',3493,'https://sa7717.dev34.info/wp-content/uploads/2021/05/apa.png',0,'attachment','image/png',0),(4506,1,'2021-05-21 17:48:00','2021-05-21 17:48:00','League Information\n<h3>\n                        Please use the information below to sign up for the Dart and Pool Leagues</h3>\nFor Dart League registration please use the following information below:&nbsp;info@dartleague.comFor Dart League registration please use the following information below:&nbsp;info@dartleague.com','League Information','','inherit','closed','closed','','3493-revision-v1','','','2021-05-21 17:48:00','2021-05-21 17:48:00','',3493,'https://sa7717.dev34.info/?p=4506',0,'revision','',0),(4507,1,'2021-05-21 17:48:01','2021-05-21 17:48:01','League Information\n<h3>\n                        Please use the information below to sign up for the Dart and Pool Leagues</h3>\nFor Dart League registration please use the following information below:&nbsp;info@dartleague.comFor Dart League registration please use the following information below:&nbsp;info@dartleague.com','League Information','','inherit','closed','closed','','3493-revision-v1','','','2021-05-21 17:48:01','2021-05-21 17:48:01','',3493,'https://sa7717.dev34.info/?p=4507',0,'revision','',0),(4510,1,'2021-05-21 17:50:37','2021-05-21 17:50:37','League Information\n<h3>\n                        Please use the information below to sign up for the Dart and Pool Leagues</h3>\n<h5>Dart League registration and info</h5>\n<strong>Inland Empire Dart League</strong>&nbsp;<a href=\"tel:509-389-6518\"><strong>509-389-6518</strong></a>&nbsp; &nbsp;<em>Ask For Tammy (secretary)</em>&nbsp;<strong><a href=\"mailto:info@dartleague.com\">info@dartleague.com</a></strong>&nbsp;<strong>The dart league is associated with the National Dart Association&nbsp;</strong>\n<img width=\"300\" height=\"83\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/05/nda-300x83.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/05/nda-300x83.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/05/nda-1024x283.png 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/05/nda-768x212.png 768w, https://sa7717.dev34.info/wp-content/uploads/2021/05/nda-600x166.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/05/nda.png 1425w\" sizes=\"(max-width: 300px) 100vw, 300px\">\n<h5>Pool League registration and info</h5>\n<strong>APA of Spokane</strong>&nbsp;<a href=\"tel:509-327-2591\"><strong>509-327-2591</strong></a>&nbsp;<a href=\"http://poolplayers.com\"><strong>poolplayers.com</strong></a>&nbsp;<strong>The pool league is associated with the American Pool Players Association&nbsp;</strong>\n<img width=\"471\" height=\"90\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/05/apa.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/05/apa.png 471w, https://sa7717.dev34.info/wp-content/uploads/2021/05/apa-300x57.png 300w\" sizes=\"(max-width: 471px) 100vw, 471px\">','League Information','','inherit','closed','closed','','3493-revision-v1','','','2021-05-21 17:50:37','2021-05-21 17:50:37','',3493,'https://sa7717.dev34.info/?p=4510',0,'revision','',0),(4508,1,'2021-05-21 17:48:01','2021-05-21 17:48:01','League Information                                \n	    <h3>\n                        Please use the information below to sign up for the Dart and Pool Leagues                    \n            </h3>\n		<h5>Dart League registration and info</h5><strong>Inland Empire Dart League</strong> <a href=\"tel:509-389-6518\"><strong>509-389-6518</strong></a>   <em>Ask For Tammy (secretary)</em> <strong><a href=\"mailto:info@dartleague.com\">info@dartleague.com</a></strong> <strong>The dart league is associated with the National Dart Association </strong>		\n															<img width=\"300\" height=\"83\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/05/nda-300x83.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/05/nda-300x83.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/05/nda-1024x283.png 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/05/nda-768x212.png 768w, https://sa7717.dev34.info/wp-content/uploads/2021/05/nda-600x166.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/05/nda.png 1425w\" sizes=\"(max-width: 300px) 100vw, 300px\" />															\n		<h5>Pool League registration and info</h5><strong>APA of Spokane</strong> <a href=\"tel:509-327-2591\"><strong>509-327-2591</strong></a> <a href=\"http://poolplayers.com\"><strong>poolplayers.com</strong></a> <strong>The pool league is associated with the American Pool Players Association </strong>		\n															<img width=\"471\" height=\"90\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/05/apa.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/05/apa.png 471w, https://sa7717.dev34.info/wp-content/uploads/2021/05/apa-300x57.png 300w\" sizes=\"(max-width: 471px) 100vw, 471px\" />','League Information','','inherit','closed','closed','','3493-revision-v1','','','2021-05-21 17:48:01','2021-05-21 17:48:01','',3493,'https://sa7717.dev34.info/?p=4508',0,'revision','',0),(4509,1,'2021-05-21 17:50:33','2021-05-21 17:50:33','','image (1)','','inherit','open','closed','','image-1','','','2021-05-21 17:50:33','2021-05-21 17:50:33','',3493,'https://sa7717.dev34.info/wp-content/uploads/2021/05/image-1.png',0,'attachment','image/png',0),(569,1,'2019-11-13 04:03:18','2019-11-13 04:03:18','Portfolio\n	    <h3>\n        Look how wonderful work we have done!    </h3>\n		At vero eos et accusamus et iusto odio digni goiku\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. 		\n										<img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/elementor/thumbs/theme-12-ohk31sjwzwsdgcc2vcv9c5o32gogew8m8ksnyax7ie.jpg\" title=\"theme-12\" alt=\"theme-12\" />											\n	    <h3>\n        Fund Management    </h3>\n		Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.Eveniet in vulputate velit esse molestie cons to\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\nsim. Temporibus autem.		\n			    <ul>\n                    <li>\n                                    <label>Category:</label>\n                                    Strategy\n                            </li>\n                    <li>\n                                    <label>Client:</label>\n                                    Real Madrid C.F\n                            </li>\n                    <li>\n                                    <label>Date:</label>\n                                    24/11/2017\n                            </li>\n                    <li>\n                                    <label>Website:</label>\n                                    www.giorf.esp\n                            </li>\n            </ul>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-01-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-01\" title=\"theme-01\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/business-growth/\">Business Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/business-growth/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-02-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-02\" title=\"theme-02\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/digital-analysis/\">Digital Analysis</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/digital-analysis/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-03-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-03\" title=\"theme-03\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/chan-agency/\">Chan Agency</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/chan-agency/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-04-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-04\" title=\"theme-04\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/data-analytics/\">Data Analytics</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/data-analytics/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-05-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-05\" title=\"theme-05\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/court-imperial/\">Court Imperial</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/court-imperial/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-06-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-06\" title=\"theme-06\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/revenue-growth/\">Revenue Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/stakeholder-relations/\" rel=\"tag\">Stakeholder relations</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/revenue-growth/\">+</a>','Fund Management','','publish','closed','closed','','fund-management','','','2019-11-13 04:03:18','2019-11-13 04:03:18','',0,'https://demo.casethemes.net/consultio-tax/?post_type=portfolio&amp;p=569',0,'portfolio','',0),(571,1,'2019-11-13 04:03:41','2019-11-13 04:03:41','Portfolio\n	    <h3>\n        Look how wonderful work we have done!    </h3>\n		At vero eos et accusamus et iusto odio digni goiku\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. 		\n										<img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/elementor/thumbs/theme-09-ohk3077rf0lvs4nd6630m24ytyj2dcwzop01ofa81y.jpg\" title=\"theme-09\" alt=\"theme-09\" />											\n	    <h3>\n        Financial Analysis    </h3>\n		Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.Eveniet in vulputate velit esse molestie cons to\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\nsim. Temporibus autem.		\n			    <ul>\n                    <li>\n                                    <label>Category:</label>\n                                    Strategy\n                            </li>\n                    <li>\n                                    <label>Client:</label>\n                                    Real Madrid C.F\n                            </li>\n                    <li>\n                                    <label>Date:</label>\n                                    24/11/2017\n                            </li>\n                    <li>\n                                    <label>Website:</label>\n                                    www.giorf.esp\n                            </li>\n            </ul>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-01-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-01\" title=\"theme-01\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/business-growth/\">Business Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/business-growth/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-02-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-02\" title=\"theme-02\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/digital-analysis/\">Digital Analysis</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/digital-analysis/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-03-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-03\" title=\"theme-03\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/chan-agency/\">Chan Agency</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/chan-agency/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-04-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-04\" title=\"theme-04\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/data-analytics/\">Data Analytics</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/data-analytics/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-05-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-05\" title=\"theme-05\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/court-imperial/\">Court Imperial</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/court-imperial/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-06-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-06\" title=\"theme-06\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/revenue-growth/\">Revenue Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/stakeholder-relations/\" rel=\"tag\">Stakeholder relations</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/revenue-growth/\">+</a>','Financial Analysis','','publish','closed','closed','','financial-analysis','','','2019-11-13 04:03:41','2019-11-13 04:03:41','',0,'https://demo.casethemes.net/consultio-tax/?post_type=portfolio&amp;p=571',0,'portfolio','',0),(573,1,'2019-11-13 04:04:03','2019-11-13 04:04:03','Portfolio\n	    <h3>\n        Look how wonderful work we have done!    </h3>\n		At vero eos et accusamus et iusto odio digni goiku\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. 		\n										<img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/elementor/thumbs/theme-07-ohk318tb0e1coj4r2mc3dsnelddqx9295v3gvhqh52.jpg\" title=\"theme-07\" alt=\"theme-07\" />											\n	    <h3>\n        Market Expansion    </h3>\n		Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.Eveniet in vulputate velit esse molestie cons to\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\nsim. Temporibus autem.		\n			    <ul>\n                    <li>\n                                    <label>Category:</label>\n                                    Strategy\n                            </li>\n                    <li>\n                                    <label>Client:</label>\n                                    Real Madrid C.F\n                            </li>\n                    <li>\n                                    <label>Date:</label>\n                                    24/11/2017\n                            </li>\n                    <li>\n                                    <label>Website:</label>\n                                    www.giorf.esp\n                            </li>\n            </ul>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-01-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-01\" title=\"theme-01\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/business-growth/\">Business Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/business-growth/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-02-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-02\" title=\"theme-02\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/digital-analysis/\">Digital Analysis</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/digital-analysis/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-03-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-03\" title=\"theme-03\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/chan-agency/\">Chan Agency</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/chan-agency/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-04-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-04\" title=\"theme-04\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/data-analytics/\">Data Analytics</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/data-analytics/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-05-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-05\" title=\"theme-05\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/court-imperial/\">Court Imperial</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/court-imperial/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-06-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-06\" title=\"theme-06\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/revenue-growth/\">Revenue Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/stakeholder-relations/\" rel=\"tag\">Stakeholder relations</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/revenue-growth/\">+</a>','Market Expansion','','publish','closed','closed','','market-expansion','','','2019-11-13 04:04:03','2019-11-13 04:04:03','',0,'https://demo.casethemes.net/consultio-tax/?post_type=portfolio&amp;p=573',0,'portfolio','',0),(1738,1,'2019-10-03 06:46:11','2019-10-03 06:46:11','Portfolio\n	    <h3>\n        Look how wonderful work we have done!    </h3>\n		At vero eos et accusamus et iusto odio digni goiku\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. 		\n										<img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/elementor/thumbs/theme-14-ohk322w5336j01x26zc5ll25lp9hrkdnxzz08chvly.jpg\" title=\"theme-14\" alt=\"theme-14\" />											\n	    <h3>\n        Consumer Products    </h3>\n		Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.Eveniet in vulputate velit esse molestie cons to\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\nsim. Temporibus autem.		\n			    <ul>\n                    <li>\n                                    <label>Category:</label>\n                                    Strategy\n                            </li>\n                    <li>\n                                    <label>Client:</label>\n                                    Real Madrid C.F\n                            </li>\n                    <li>\n                                    <label>Date:</label>\n                                    24/11/2017\n                            </li>\n                    <li>\n                                    <label>Website:</label>\n                                    www.giorf.esp\n                            </li>\n            </ul>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-01-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-01\" title=\"theme-01\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/business-growth/\">Business Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/business-growth/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-02-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-02\" title=\"theme-02\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/digital-analysis/\">Digital Analysis</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/digital-analysis/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-03-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-03\" title=\"theme-03\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/chan-agency/\">Chan Agency</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/chan-agency/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-04-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-04\" title=\"theme-04\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/data-analytics/\">Data Analytics</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/data-analytics/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-05-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-05\" title=\"theme-05\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/court-imperial/\">Court Imperial</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/court-imperial/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-06-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-06\" title=\"theme-06\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/revenue-growth/\">Revenue Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/stakeholder-relations/\" rel=\"tag\">Stakeholder relations</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/revenue-growth/\">+</a>','Consumer Products','','publish','closed','closed','','consumer-products','','','2019-10-03 06:46:11','2019-10-03 06:46:11','',0,'https://demo.casethemes.net/consultio-tax/?post_type=portfolio&amp;p=1738',0,'portfolio','',0),(1740,1,'2019-11-03 06:46:31','2019-11-03 06:46:31','Portfolio\n	    <h3>\n        Look how wonderful work we have done!    </h3>\n		At vero eos et accusamus et iusto odio digni goiku\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. 		\n										<img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/elementor/thumbs/theme-13-ohk31y6y4x03e03vyfb0r48umrwnp2v09cpktyouh2.jpg\" title=\"theme-13\" alt=\"theme-13\" />											\n	    <h3>\n        Business Management    </h3>\n		Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.Eveniet in vulputate velit esse molestie cons to\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\nsim. Temporibus autem.		\n			    <ul>\n                    <li>\n                                    <label>Category:</label>\n                                    Strategy\n                            </li>\n                    <li>\n                                    <label>Client:</label>\n                                    Real Madrid C.F\n                            </li>\n                    <li>\n                                    <label>Date:</label>\n                                    24/11/2017\n                            </li>\n                    <li>\n                                    <label>Website:</label>\n                                    www.giorf.esp\n                            </li>\n            </ul>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-01-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-01\" title=\"theme-01\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/business-growth/\">Business Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/business-growth/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-02-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-02\" title=\"theme-02\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/digital-analysis/\">Digital Analysis</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/digital-analysis/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-03-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-03\" title=\"theme-03\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/chan-agency/\">Chan Agency</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/chan-agency/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-04-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-04\" title=\"theme-04\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/data-analytics/\">Data Analytics</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/data-analytics/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-05-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-05\" title=\"theme-05\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/court-imperial/\">Court Imperial</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/court-imperial/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-06-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-06\" title=\"theme-06\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/revenue-growth/\">Revenue Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/stakeholder-relations/\" rel=\"tag\">Stakeholder relations</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/revenue-growth/\">+</a>','Business Management','','publish','closed','closed','','business-management','','','2019-11-03 06:46:31','2019-11-03 06:46:31','',0,'https://demo.casethemes.net/consultio-tax/?post_type=portfolio&amp;p=1740',0,'portfolio','',0),(1766,1,'2019-10-03 09:08:01','2019-10-03 09:08:01','Portfolio\n	    <h3>\n        Look how wonderful work we have done!    </h3>\n		At vero eos et accusamus et iusto odio digni goiku\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. 		\n										<img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/elementor/thumbs/theme-08-ohk3069x86klgioqbnoe1kdi8knp5nt9ckck75bm86.jpg\" title=\"theme-08\" alt=\"theme-08\" />											\n	    <h3>\n        StartUp Business    </h3>\n		Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.Eveniet in vulputate velit esse molestie cons to\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\nsim. Temporibus autem.		\n			    <ul>\n                    <li>\n                                    <label>Category:</label>\n                                    Strategy\n                            </li>\n                    <li>\n                                    <label>Client:</label>\n                                    Real Madrid C.F\n                            </li>\n                    <li>\n                                    <label>Date:</label>\n                                    24/11/2017\n                            </li>\n                    <li>\n                                    <label>Website:</label>\n                                    www.giorf.esp\n                            </li>\n            </ul>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-01-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-01\" title=\"theme-01\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/business-growth/\">Business Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/business-growth/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-02-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-02\" title=\"theme-02\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/digital-analysis/\">Digital Analysis</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/digital-analysis/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-03-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-03\" title=\"theme-03\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/chan-agency/\">Chan Agency</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/chan-agency/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-04-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-04\" title=\"theme-04\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/data-analytics/\">Data Analytics</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/data-analytics/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-05-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-05\" title=\"theme-05\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/court-imperial/\">Court Imperial</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/court-imperial/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-06-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-06\" title=\"theme-06\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/revenue-growth/\">Revenue Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/stakeholder-relations/\" rel=\"tag\">Stakeholder relations</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/revenue-growth/\">+</a>','StartUp Business','','publish','closed','closed','','startup-business','','','2019-10-03 09:08:01','2019-10-03 09:08:01','',0,'https://demo.casethemes.net/consultio-tax/?post_type=portfolio&amp;p=1766',0,'portfolio','',0),(3495,1,'2020-02-07 02:16:59','2020-02-07 02:16:59','<img width=\"48\" height=\"43\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/about4-icon1.png\" alt=\"\" />        \n        <h3>\n            Business Growth        </h3>\n        The argument in favor of using filler text goes some labore et dolore magna aliqua consectetur.\n            <a href=\"https://demo.casethemes.net/consultio-tax/service/business-consulting/\"></a>\n            <img width=\"44\" height=\"48\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/about4-icon2.png\" alt=\"\" />        \n        <h3>\n            Strategy Process        </h3>\n        The argument in favor of using filler text goes some labore et dolore magna aliqua consectetur.\n            <a href=\"https://demo.casethemes.net/consultio-tax/service/business-consulting/\"></a>\n            <img width=\"50\" height=\"46\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/about4-icon3.png\" alt=\"\" />        \n        <h3>\n            Finance Manage        </h3>\n        The argument in favor of using filler text goes some labore et dolore magna aliqua consectetur.\n            <a href=\"https://demo.casethemes.net/consultio-tax/service/business-consulting/\"></a>\n			about us\n	    <h3>\n                        We are here to manage your finance with <i>experience</i>                    \n    </h3>\n		    	<img width=\"165\" height=\"278\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/about4-shape1.png\" alt=\"\" />		\n										<img width=\"545\" height=\"464\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h4-about1.png\" alt=\"\" srcset=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h4-about1.png 545w, https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h4-about1-300x255.png 300w\" sizes=\"(max-width: 545px) 100vw, 545px\" />											\n                                            Finance\n                        95%\n                                            Business\n                        90%\n                                            Investment\n                        93%\n	The argument in favor of using filler text goes something like this: If you use real content in the <b><u>design process</u></b>, anytime you reach a review point you’ll end up reviewing and negotiating the content itself and not the design.\nAenean tincidunt id mauris id auctor. Donec at ligula lacus. Nulla dignissim mi quis neque interdum, quis porta sem finibus.\n			Video\n	    <h3>\n                        See how we work with\ntouch of <i>experience</i>                    \n    </h3>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n			Why choose us\n	    <h3>\n                        There are many companies\nbut why <i>choose us</i>                    \n    </h3>\n	The argument in favor of using filler text goes something like this: If you use real content in the design process, anytime you reach a review point you’ll end up reviewing and negotiating the content itself.\n                    <h4>Expert team</h4>\n                    <p>The argument in favorite of using filler to text goes some thing like this top</p>\n                    <h4>Best Finance Brand</h4>\n                    <p>The argument in favorite of using filler to text goes some thing like this top</p>\n                    <h4>Best Leadership Ideas</h4>\n                    <p>The argument in favorite of using filler to text goes some thing like this top</p>\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','About v.4','','publish','closed','closed','','about-v-4','','','2020-02-07 02:16:59','2020-02-07 02:16:59','',0,'https://demo.casethemes.net/consultio-tax/?page_id=3495',0,'page','',0),(3497,1,'2020-02-07 02:17:36','2020-02-07 02:17:36','Testimonial\n	    <h3>\n                        It’s always a joy to hear that the work we do, has positively reviews.                    \n    </h3>\n		We have spent 9 years working for one of Australia’s most\nrecognised and successful retailers so we have many good\nreview of works.		\n                        I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24/24.\n                                    <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/testimonial-04.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-04\" title=\"testimonial-04\" />                                \n                                <h3>    \n                                    Maria Silverii                                </h3>\n                                CEO of Blue Illusion\n                        I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24/24.\n                                    <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/testimonial-05.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-05\" title=\"testimonial-05\" />                                \n                                <h3>    \n                                    Phillip Macintyre                                </h3>\n                                CEO of Blue Illusion\n                        I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24/24.\n                                    <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/testimonial-06.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-06\" title=\"testimonial-06\" />                                \n                                <h3>    \n                                    Amy Harrison                                </h3>\n                                Contiki Holidays\n                        I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24/24.\n                                    <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/testimonial-04.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-04\" title=\"testimonial-04\" />                                \n                                <h3>    \n                                    Maria Silverii                                </h3>\n                                CEO of Blue Illusion\n                        I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24/24.\n                                    <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/testimonial-05.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-05\" title=\"testimonial-05\" />                                \n                                <h3>    \n                                    Phillip Macintyre                                </h3>\n                                CEO of Blue Illusion\n                        I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24/24.\n                                    <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/testimonial-06.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-06\" title=\"testimonial-06\" />                                \n                                <h3>    \n                                    Amy Harrison                                </h3>\n                                Contiki Holidays\n    <a href=\"https://demo.casethemes.net/consultio-tax/testimonials/\">\n                View more \n    </a>\n	Like What We Offer\n	    <h3>\n                        DO BUSINESS<br />\nWITH US!                    \n    </h3>\n	In order to acquire our services please kindly send us your inquiry of interest. We shall revert back\nimmediately.\n    <a href=\"https://demo.casethemes.net/consultio-tax/contact/\">\n                Contact us\n    </a>\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Testimonials v.2','','publish','closed','closed','','testimonials-v-2','','','2020-02-07 02:17:36','2020-02-07 02:17:36','',0,'https://demo.casethemes.net/consultio-tax/?page_id=3497',0,'page','',0),(3500,1,'2020-02-07 02:17:53','2020-02-07 02:17:53','Testimonial\n	    <h3>\n                        It’s always a joy to hear that the work we do, has positively reviews.                    \n    </h3>\n		We have spent 9 years working for one of Australia’s most\nrecognised and successful retailers so we have many good\nreview of works.		\n                                    <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/testimonial-07.jpg\" width=\"130\" height=\"130\" alt=\"testimonial-07\" title=\"testimonial-07\" />                                    \n                                                                                        <a href=\"#\"></a>\n                                <h3>    \n                                    Donald Johnson                                </h3>\n                                Executive Manager\n                        I had the pleasure of working with Consultio as part of a \n6 month ‘Regional Retail Leadership Program’. Her passion for leadership development is evident to help others.\n                        “\n                                    <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/testimonial-01.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-01\" title=\"testimonial-01\" />                                    \n                                                                                        <a href=\"\"></a>\n                                <h3>    \n                                    Kathleen Smith                                </h3>\n                                SEO Manager\n                        I had the pleasure of working with Consultio as part of a \n6 month ‘Regional Retail Leadership Program’. Her passion for leadership development is evident to help others.\n                        “\n                                    <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/testimonial-09.jpg\" width=\"130\" height=\"130\" alt=\"testimonial-09\" title=\"testimonial-09\" />                                    \n                                                                                        <a href=\"\"></a>\n                                <h3>    \n                                    Jewel D Smith                                </h3>\n                                Executive Manager\n                        I had the pleasure of working with Consultio as part of a \n6 month ‘Regional Retail Leadership Program’. Her passion for leadership development is evident to help others.\n                        “\n                                    <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/testimonial-04.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-04\" title=\"testimonial-04\" />                                    \n                                                                                        <a href=\"\"></a>\n                                <h3>    \n                                    Brad Smith                                </h3>\n                                SEO Manager\n                        I had the pleasure of working with Consultio as part of a \n6 month ‘Regional Retail Leadership Program’. Her passion for leadership development is evident to help others.\n                        “\n    <a href=\"https://demo.casethemes.net/consultio-tax/testimonials/\">\n                View more \n    </a>\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Testimonials v.3','','publish','closed','closed','','testimonials-v-3','','','2020-02-07 02:17:53','2020-02-07 02:17:53','',0,'https://demo.casethemes.net/consultio-tax/?page_id=3500',0,'page','',0),(3502,1,'2020-02-07 02:18:13','2020-02-07 02:18:13','Testimonial\n	    <h3>\n                        It’s always a joy to hear that the work we do, has positively reviews.                    \n    </h3>\n		We have spent 9 years working for one of Australia’s most\nrecognised and successful retailers so we have many good\nreview of works.		\n                                    <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/testimonial-07.jpg\" width=\"130\" height=\"130\" alt=\"testimonial-07\" title=\"testimonial-07\" />                                    \n                                                                                        <a href=\"#\"></a>\n                                <h3>    \n                                    Donald Johnson                                </h3>\n                                Executive Manager\n                            “\n                            I had the pleasure of working with Consultio as part of a \n6 month ‘Regional Retail Leadership Program’. Her passion for leadership development is evident to help others.\n                                    <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/testimonial-01.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-01\" title=\"testimonial-01\" />                                    \n                                                                                        <a href=\"\"></a>\n                                <h3>    \n                                    Kathleen Smith                                </h3>\n                                SEO Manager\n                            “\n                            I had the pleasure of working with Consultio as part of a \n6 month ‘Regional Retail Leadership Program’. Her passion for leadership development is evident to help others.\n                                    <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/testimonial-09.jpg\" width=\"130\" height=\"130\" alt=\"testimonial-09\" title=\"testimonial-09\" />                                    \n                                                                                        <a href=\"\"></a>\n                                <h3>    \n                                    Jewel D Smith                                </h3>\n                                Executive Manager\n                            “\n                            I had the pleasure of working with Consultio as part of a \n6 month ‘Regional Retail Leadership Program’. Her passion for leadership development is evident to help others.\n                                    <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/testimonial-04.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-04\" title=\"testimonial-04\" />                                    \n                                                                                        <a href=\"\"></a>\n                                <h3>    \n                                    Brad Smith                                </h3>\n                                SEO Manager\n                            “\n                            I had the pleasure of working with Consultio as part of a \n6 month ‘Regional Retail Leadership Program’. Her passion for leadership development is evident to help others.\n    <a href=\"https://demo.casethemes.net/consultio-tax/testimonials/\">\n                View more \n    </a>\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Testimonials v.4','','publish','closed','closed','','testimonials-v-4','','','2020-02-07 02:18:13','2020-02-07 02:18:13','',0,'https://demo.casethemes.net/consultio-tax/?page_id=3502',0,'page','',0),(3504,1,'2020-02-07 02:18:35','2020-02-07 02:18:35','Pricing\n	    <h3>\n                        We offer the best price for you!                            <i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                </i>\n    </h3>\n		Pricing is the process whereby a business sets the price at which it will sell its products and services, and may be part of the\nbusiness\'s marketing plan.		\n                        Monthly\n                        Yearly Save 20%\n                            <style>.elementor-3876 .elementor-element.elementor-element-33a40038{margin-top:0px;margin-bottom:0px;}.elementor-3876 .elementor-element.elementor-element-5f276f89 > .elementor-element-populated{margin:0px 0px 40px 0px;}.elementor-3876 .elementor-element.elementor-element-8a7b665 > .elementor-element-populated{margin:0px 0px 40px 0px;}.elementor-3876 .elementor-element.elementor-element-4d68f4b4 .ct-pricing-layout2{background-color:#000000;}.elementor-3876 .elementor-element.elementor-element-4d68f4b4 .ct-pricing-layout2 .pricing-title{color:#FFFFFF;}.elementor-3876 .elementor-element.elementor-element-4d68f4b4 .ct-pricing-layout2 .pricing-description{color:#FFFFFF;}.elementor-3876 .elementor-element.elementor-element-4d68f4b4 .ct-pricing-layout2 .pricing-price{color:#FFFFFF;}.elementor-3876 .elementor-element.elementor-element-4d68f4b4 .ct-pricing-layout2 .pricing-feature{color:#FFFFFF;}.elementor-3876 .elementor-element.elementor-element-f582dc4 > .elementor-element-populated{margin:0px 0px 40px 0px;}.elementor-3876 .elementor-element.elementor-element-4b28e043 > .elementor-element-populated{margin:0px 0px 40px 0px;}@media(max-width:767px){.elementor-3876 .elementor-element.elementor-element-5f276f89 > .elementor-element-populated{margin:0px 0px 0px 0px;}.elementor-3876 .elementor-element.elementor-element-8a7b665 > .elementor-element-populated{margin:0px 0px 0px 0px;}.elementor-3876 .elementor-element.elementor-element-f582dc4 > .elementor-element-populated{margin:39px 0px 0px 0px;}}@media(max-width:1024px) and (min-width:768px){.elementor-3876 .elementor-element.elementor-element-5f276f89{width:50%;}.elementor-3876 .elementor-element.elementor-element-8a7b665{width:50%;}.elementor-3876 .elementor-element.elementor-element-f582dc4{width:50%;}.elementor-3876 .elementor-element.elementor-element-4b28e043{width:50%;}}</style>		\n							<section data-id=\"33a40038\" data-element_type=\"section\">\n    <h3>New Business</h3>\n    1-4 Employees\n    $99\n        Plus One-Time Bambee In-Depth HR Audit For: <cite>$500</cite>    \n            <a href=\"#\">Try now</a>\n    Best choice\n    <h3>Small Business</h3>\n    5-19 Employees\n    $199\n        Plus One-Time Bambee In-Depth HR Audit For: <cite>$500</cite>    \n            <a href=\"#\">Try now</a>\n    <h3>Growing Business</h3>\n    20-39 Employees\n    $299\n        Plus One-Time Bambee In-Depth HR Audit For: <cite>$1000</cite>    \n            <a href=\"#\">Try now</a>\n    <h3>Large Business</h3>\n    Unlimited Employees\n    $399\n        Plus One-Time Bambee In-Depth HR Audit For: <cite>$1500</cite>    \n            <a href=\"#\">Try now</a>\n		</section>\n                            <style>.elementor-3872 .elementor-element.elementor-element-7f5cbd63{margin-top:0px;margin-bottom:0px;}.elementor-3872 .elementor-element.elementor-element-43484ebe > .elementor-element-populated{margin:0px 0px 40px 0px;}.elementor-3872 .elementor-element.elementor-element-5ae0ebee > .elementor-element-populated{margin:0px 0px 40px 0px;}.elementor-3872 .elementor-element.elementor-element-2a9c5d45 .ct-pricing-layout2{background-color:#000000;}.elementor-3872 .elementor-element.elementor-element-2a9c5d45 .ct-pricing-layout2 .pricing-title{color:#FFFFFF;}.elementor-3872 .elementor-element.elementor-element-2a9c5d45 .ct-pricing-layout2 .pricing-description{color:#FFFFFF;}.elementor-3872 .elementor-element.elementor-element-2a9c5d45 .ct-pricing-layout2 .pricing-price{color:#FFFFFF;}.elementor-3872 .elementor-element.elementor-element-2a9c5d45 .ct-pricing-layout2 .pricing-feature{color:#FFFFFF;}.elementor-3872 .elementor-element.elementor-element-609a9e8e > .elementor-element-populated{margin:0px 0px 40px 0px;}.elementor-3872 .elementor-element.elementor-element-12576590 > .elementor-element-populated{margin:0px 0px 40px 0px;}@media(max-width:767px){.elementor-3872 .elementor-element.elementor-element-43484ebe > .elementor-element-populated{margin:0px 0px 0px 0px;}.elementor-3872 .elementor-element.elementor-element-5ae0ebee > .elementor-element-populated{margin:0px 0px 0px 0px;}.elementor-3872 .elementor-element.elementor-element-609a9e8e > .elementor-element-populated{margin:39px 0px 0px 0px;}}@media(max-width:1024px) and (min-width:768px){.elementor-3872 .elementor-element.elementor-element-43484ebe{width:50%;}.elementor-3872 .elementor-element.elementor-element-5ae0ebee{width:50%;}.elementor-3872 .elementor-element.elementor-element-609a9e8e{width:50%;}.elementor-3872 .elementor-element.elementor-element-12576590{width:50%;}}</style>		\n							<section data-id=\"7f5cbd63\" data-element_type=\"section\">\n    <h3>New Business</h3>\n    1-4 Employees\n    $499\n        Plus One-Time Bambee In-Depth HR Audit For: <cite>$500</cite>    \n            <a href=\"#\">Try now</a>\n    Best choice\n    <h3>Small Business</h3>\n    5-19 Employees\n    $599\n        Plus One-Time Bambee In-Depth HR Audit For: <cite>$500</cite>    \n            <a href=\"#\">Try now</a>\n    <h3>Growing Business</h3>\n    20-39 Employees\n    $599\n        Plus One-Time Bambee In-Depth HR Audit For: <cite>$1000</cite>    \n            <a href=\"#\">Try now</a>\n    <h3>Large Business</h3>\n    Unlimited Employees\n    $699\n        Plus One-Time Bambee In-Depth HR Audit For: <cite>$1500</cite>    \n            <a href=\"#\">Try now</a>\n		</section>\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>','Pricing v.2','','publish','closed','closed','','pricing-v-2','','','2020-02-07 02:18:35','2020-02-07 02:18:35','',0,'https://demo.casethemes.net/consultio-tax/?page_id=3504',0,'page','',0),(3506,1,'2020-02-07 02:18:47','2020-02-07 02:18:47','','Pricing v.3','','publish','closed','closed','','pricing-v-3','','','2020-02-07 02:18:47','2020-02-07 02:18:47','',0,'https://demo.casethemes.net/consultio-tax/?page_id=3506',0,'page','',0),(3508,1,'2020-02-07 02:19:01','2020-02-07 02:19:01','','Pricing v.4','','publish','closed','closed','','pricing-v-4','','','2020-02-07 02:19:01','2020-02-07 02:19:01','',0,'https://demo.casethemes.net/consultio-tax/?page_id=3508',0,'page','',0),(3510,1,'2020-02-07 02:19:20','2020-02-07 02:19:20','<h3>\n                            <i></i>\n                        Get in touch for any kind of help and informations                    \n    </h3>\n		We’re glad to discuss your organisation’s situation. So please contact us via the details below, or enter your request.		\n        <h3>\n            Our head office address:        </h3>\n        3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia.\n        <h3>\n            Call for help:        </h3>\n        (734) 697-2907<br/>\n(843) 971-1906\n        <h3>\n            Mail us for information        </h3>\n        noreply@envato.com<br/>\nnoreply@consultio.com\n<form action=\"/ctthemes/csuti/wp-admin/admin-ajax.php#wpcf7-f2166-o1\" method=\"post\" novalidate=\"novalidate\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"2166\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.1.6\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f2166-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<input type=\"text\" name=\"your-web-address\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Web address *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>        \n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"London Eye, London, United Kingdom\"></iframe>','Contact v.2','','publish','closed','closed','','contact-v-2','','','2020-02-07 02:19:20','2020-02-07 02:19:20','',0,'https://demo.casethemes.net/consultio-tax/?page_id=3510',0,'page','',0),(3512,1,'2020-02-07 02:19:39','2020-02-07 02:19:39','Contact us\n	    <h3>\n                        If need any info please contact <b>us!</b>                    \n    </h3>\n        <h3>\n            Head office address:        </h3>\n        3556 Hartford Way Vlg, Mount\nPleasant, SC, 29466, Australia.\n        <h3>\n            Mail for information:        </h3>\n        noreply@envato.com<br/>\nnoreply@consultio.com\n        <h3>\n            Call for help:        </h3>\n        (734) 697-2907<br/>\n(843) 971-1906\n	For any inquiries relating to my  Retail and Leadership Programs*\n<form action=\"/ctthemes/csuti/wp-admin/admin-ajax.php#wpcf7-f3823-o1\" method=\"post\" novalidate=\"novalidate\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"3823\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.1.6\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f3823-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<label>Name (required)</label><input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\" />\n<label>Email adress (required)</label><input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Mail*\" />\n<label>Phone (optional)</label><input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone*\" />\n<label>Subject (required)</label><select name=\"your-subject\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Subject*\">Subject*</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<label>Your message</label><textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Type message*\"></textarea>\n<button type=\"submit\">Send message</button>\n</form>        \n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Contact v.3','','publish','closed','closed','','contact-v-3','','','2020-02-07 02:19:39','2020-02-07 02:19:39','',0,'https://demo.casethemes.net/consultio-tax/?page_id=3512',0,'page','',0),(3514,1,'2020-02-07 02:19:55','2020-02-07 02:19:55','Contact us\n	    <h3>\n                        If need any info please contact <b>us!</b>                    \n    </h3>\n	We’re glad to discuss your organisation’s situation. So please contact us via the details below, or enter your request.\n										<img width=\"538\" height=\"368\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/contact-v4.png\" alt=\"\" srcset=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/contact-v4.png 538w, https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/contact-v4-300x205.png 300w\" sizes=\"(max-width: 538px) 100vw, 538px\" />											\n<form action=\"/ctthemes/csuti/wp-admin/admin-ajax.php#wpcf7-f3851-o1\" method=\"post\" novalidate=\"novalidate\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"3851\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.1.6\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f3851-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>        \n				<h3>\n					Our office address:\n				</h3>\n								<p>3556 Hartford Way Vlg, Mount of\nPleasant, SC, 29466, Australia.</p>\n				<h3>\n					Mail us:\n				</h3>\n								<p>noreply@envato.com<br/>\nnoreply@company.com</p>\n				<h3>\n					Call for help:\n				</h3>\n								<p>(734) 697-2907<br/>\n(843) 971-1906</p>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"London Eye, London, United Kingdom\"></iframe>		\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Contact v.4','','publish','closed','closed','','contact-v-4','','','2020-02-07 02:19:55','2020-02-07 02:19:55','',0,'https://demo.casethemes.net/consultio-tax/?page_id=3514',0,'page','',0),(3516,1,'2020-02-07 02:20:53','2020-02-07 02:20:53','Team member\n	    <h3>\n                            <i></i>\n                        Our expert team members        \n    </h3>\n                                                                        <a href=\"#\"></a>\n                                                                            <a href=\"#\"></a>\n                                                                            <a href=\"#\"></a>\n                            <h3>    \n                                Iven Rocky                            </h3>\n                            Senior Web Developer\n                                                                                                    WordPress\n                                                90%\n                                                                                                    Java\n                                                50%\n                                                                                                    Css\n                                                70%\n                                <a href=\"https://demo.casethemes.net/consultio-tax/team-details/\"></a>\n                                                                        <a href=\"#\"></a>\n                                                                            <a href=\"#\"></a>\n                                                                            <a href=\"#\"></a>\n                            <h3>    \n                                Rebecca Leo                            </h3>\n                            Web Designer\n                                                                                                    Photoshop\n                                                90%\n                                                                                                    Sketch\n                                                80%\n                                                                                                    Css\n                                                70%\n                                <a href=\"https://demo.casethemes.net/consultio-tax/team-details/\"></a>\n                                                                        <a href=\"#\"></a>\n                                                                            <a href=\"#\"></a>\n                            <h3>    \n                                Adam Ivan                            </h3>\n                            Chef Advisor\n                                                                                                    Business Sense\n                                                90%\n                                                                                                    Cleanliness\n                                                80%\n                                                                                                    Creativity\n                                                70%\n                                <a href=\"https://demo.casethemes.net/consultio-tax/team-details/\"></a>\n                                                                        <a href=\"#\"></a>\n                                                                            <a href=\"#\"></a>\n                                                                            <a href=\"#\"></a>\n                            <h3>    \n                                Obira Franc                            </h3>\n                            Tax Consultant\n                                                                                                    Negotiation\n                                                90%\n                                                                                                    Tax law\n                                                50%\n                                                                                                    Organisation\n                                                70%\n                                <a href=\"https://demo.casethemes.net/consultio-tax/team-details/\"></a>\n    <a href=\"https://demo.casethemes.net/consultio-tax/team/\">\n                View more\n    </a>\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Team v.2','','publish','closed','closed','','team-v-2','','','2020-02-07 02:20:53','2020-02-07 02:20:53','',0,'https://demo.casethemes.net/consultio-tax/?page_id=3516',0,'page','',0),(3518,1,'2020-02-07 02:21:09','2020-02-07 02:21:09','Team member\n	    <h3>\n                        We always work with a great team.                            <i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                </i>\n    </h3>\n                                He has extensive experience in\norganizational design, business process reengineering.\n                                <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/team-single-360x360.jpg\" width=\"360\" height=\"360\" alt=\"team-single\" title=\"team-single\" />                                <a href=\"https://demo.casethemes.net/consultio-tax/team-details/\"></a>\n                                                <h3>    \n                            Fran Bostick                        </h3>\n                                                                        <a href=\"#\"></a>\n                                                                            <a href=\"#\"></a>\n                                                                            <a href=\"#\"></a>\n                                                                            <a href=\"#\"></a>\n                            Founder &amp; CEO\n                                He has extensive experience in\norganizational design, business process reengineering.\n                                <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-team2-360x360.jpg\" width=\"360\" height=\"360\" alt=\"h6-team2\" title=\"h6-team2\" />                                <a href=\"https://demo.casethemes.net/consultio-tax/team-details/\"></a>\n                                                <h3>    \n                            Tina Holt                        </h3>\n                                                                        <a href=\"#\"></a>\n                                                                            <a href=\"#\"></a>\n                                                                            <a href=\"#\"></a>\n                                                                            <a href=\"\"></a>\n                            Federal Contractor\n                                He has extensive experience in\norganizational design, business process reengineering.\n                                <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-team3-360x360.jpg\" width=\"360\" height=\"360\" alt=\"h6-team3\" title=\"h6-team3\" />                                <a href=\"https://demo.casethemes.net/consultio-tax/team-details/\"></a>\n                                                <h3>    \n                            Charles Wilkinson                        </h3>\n                                                                        <a href=\"#\"></a>\n                                                                            <a href=\"#\"></a>\n                                                                            <a href=\"#\"></a>\n                                                                            <a href=\"#\"></a>\n                            Founder &amp; CEO\n                                He has extensive experience in\norganizational design, business process reengineering.\n                                <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-team4-360x360.jpg\" width=\"360\" height=\"360\" alt=\"h6-team4\" title=\"h6-team4\" />                                <a href=\"https://demo.casethemes.net/consultio-tax/team-details/\"></a>\n                                                <h3>    \n                            Michael Alan Tate                        </h3>\n                                                                        <a href=\"#\"></a>\n                                                                            <a href=\"#\"></a>\n                                                                            <a href=\"#\"></a>\n                                                                            <a href=\"\"></a>\n                            Vice President\n                                He has extensive experience in\norganizational design, business process reengineering.\n                                <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-team1.jpg\" width=\"350\" height=\"350\" alt=\"h6-team1\" title=\"h6-team1\" />                                <a href=\"https://demo.casethemes.net/consultio-tax/team-details/\"></a>\n                                                <h3>    \n                            Suzanne Higgins                        </h3>\n                                                                        <a href=\"#\"></a>\n                                                                            <a href=\"#\"></a>\n                                                                            <a href=\"#\"></a>\n                                                                            <a href=\"\"></a>\n                            Senior Consultant\n    <a href=\"https://demo.casethemes.net/consultio-tax/team/\">\n                View more\n    </a>\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Team v.3','','publish','closed','closed','','team-v-3','','','2020-02-07 02:21:09','2020-02-07 02:21:09','',0,'https://demo.casethemes.net/consultio-tax/?page_id=3518',0,'page','',0),(3520,1,'2020-02-07 02:21:23','2020-02-07 02:21:23','<h3>\n                            <i></i>\n                        Many organizations realize the benefits of forming work teams.                    \n    </h3>\n	Employees need to realize the importance of working well with their teammates when coming into a new job or an existing one. A team player is more valuable.\n                                <a ><img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/home-team-01.jpg\" width=\"267\" height=\"352\" alt=\"home-team-01\" title=\"home-team-01\" /></a>\n                                <h3>    \n                                    <a >Gwen Johnson</a>\n                                </h3>\n                                Founder &amp; CEO\n                                <ul>\n                                                                                <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                                    <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                                    <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                                    <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                        </ul>\n                                <a ><img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/home-team-02.jpg\" width=\"267\" height=\"352\" alt=\"home-team-02\" title=\"home-team-02\" /></a>\n                                <h3>    \n                                    <a >Thomas Olsen</a>\n                                </h3>\n                                Regional Leader\n                                <ul>\n                                                                                <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                                    <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                                    <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                                    <li>\n                                                <a href=\"\"></a>\n                                            </li>\n                                                                        </ul>\n                                <a ><img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/home-team-03.jpg\" width=\"267\" height=\"352\" alt=\"home-team-03\" title=\"home-team-03\" /></a>\n                                <h3>    \n                                    <a >Manny Maceda</a>\n                                </h3>\n                                Managing Partner\n                                <ul>\n                                                                                <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                                    <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                                    <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                                    <li>\n                                                <a href=\"\"></a>\n                                            </li>\n                                                                        </ul>\n                                <a ><img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/home-team-04.jpg\" width=\"267\" height=\"352\" alt=\"home-team-04\" title=\"home-team-04\" /></a>\n                                <h3>    \n                                    <a >James Allen</a>\n                                </h3>\n                                Chief Executive\n                                <ul>\n                                                                                <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                                    <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                                    <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                                    <li>\n                                                <a href=\"\"></a>\n                                            </li>\n                                                                        </ul>\n                                <a ><img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-team1-267x350.jpg\" width=\"267\" height=\"350\" alt=\"h6-team1\" title=\"h6-team1\" /></a>\n                                <h3>    \n                                    <a >Manny Maceda</a>\n                                </h3>\n                                Managing Partner\n                                <ul>\n                                                                                <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                                    <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                                    <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                                    <li>\n                                                <a href=\"\"></a>\n                                            </li>\n                                                                        </ul>\n                                <a ><img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-team2-267x352.jpg\" width=\"267\" height=\"352\" alt=\"h6-team2\" title=\"h6-team2\" /></a>\n                                <h3>    \n                                    <a >Gwen Johnson</a>\n                                </h3>\n                                Founder &amp; CEO\n                                <ul>\n                                                                                <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                                    <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                                    <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                                    <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                        </ul>\n                                <a ><img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-team3-267x352.jpg\" width=\"267\" height=\"352\" alt=\"h6-team3\" title=\"h6-team3\" /></a>\n                                <h3>    \n                                    <a >Thomas Olsen</a>\n                                </h3>\n                                Regional Leader\n                                <ul>\n                                                                                <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                                    <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                                    <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                                    <li>\n                                                <a href=\"\"></a>\n                                            </li>\n                                                                        </ul>\n                                <a ><img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-team4-267x352.jpg\" width=\"267\" height=\"352\" alt=\"h6-team4\" title=\"h6-team4\" /></a>\n                                <h3>    \n                                    <a >James Allen</a>\n                                </h3>\n                                Chief Executive\n                                <ul>\n                                                                                <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                                    <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                                    <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                                    <li>\n                                                <a href=\"\"></a>\n                                            </li>\n                                                                        </ul>\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Team v.4','','publish','closed','closed','','team-v-4','','','2020-02-07 02:21:23','2020-02-07 02:21:23','',0,'https://demo.casethemes.net/consultio-tax/?page_id=3520',0,'page','',0),(3984,1,'2020-07-25 10:51:50','2020-07-25 10:51:50','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n			Featured services\n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n                                        <img width=\"61\" height=\"60\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/01/h6-icon-service1.png\" alt=\"\" />                                    \n                                    <h3>    \n                                        Business Planning                                    </h3>\n                                    We develop the relationships that under the next phase in your organisation.\n                                        <a href=\"https://demo.casethemes.net/consultio-tax/service/seo-optimization/\">Read more</a>\n                                        <img width=\"49\" height=\"60\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/01/h6-icon-service2.png\" alt=\"\" />                                    \n                                    <h3>    \n                                        Stakeholder relations                                    </h3>\n                                    Developing a program to improve the best sanitation and alleviate poverty.\n                                        <a href=\"https://demo.casethemes.net/consultio-tax/service/seo-optimization/\">Read more</a>\n                                        <img width=\"50\" height=\"60\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/01/h6-icon-service3.png\" alt=\"\" />                                    \n                                    <h3>    \n                                        Risk management                                    </h3>\n                                    Through nuanced stakeholder relations and astute partnership building.\n                                        <a href=\"https://demo.casethemes.net/consultio-tax/service/seo-optimization/\">Read more</a>\n                                        <img width=\"61\" height=\"60\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/01/h6-icon-service1.png\" alt=\"\" />                                    \n                                    <h3>    \n                                        Business Planning                                    </h3>\n                                    We develop the relationships that under the next phase in your organisation.\n                                        <a href=\"https://demo.casethemes.net/consultio-tax/service/seo-optimization/\">Read more</a>\n                                        <img width=\"49\" height=\"60\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/01/h6-icon-service2.png\" alt=\"\" />                                    \n                                    <h3>    \n                                        Stakeholder relations                                    </h3>\n                                    Developing a program to improve the best sanitation and alleviate poverty.\n                                        <a href=\"https://demo.casethemes.net/consultio-tax/service/seo-optimization/\">Read more</a>\n                                        <img width=\"50\" height=\"60\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/01/h6-icon-service3.png\" alt=\"\" />                                    \n                                    <h3>    \n                                        Risk management                                    </h3>\n                                    Through nuanced stakeholder relations and astute partnership building.\n                                        <a href=\"https://demo.casethemes.net/consultio-tax/service/seo-optimization/\">Read more</a>\n		You can also find our <a href=\"#\">Consultant Service</a> to contact for the consulting		\n        <h3>Strategic vision</h3>\n        A client once told us that where the others focus on one star one issue we see the whole sky. \n        <h3>Interpersonal skills</h3>\n        Forging relationships between\nmulti-national corporations, govern ments and global NGOs begins.\n        <h3>Networks that span</h3>\n        Over more than 20 years, we’ve \nfostered trusted relationships across government.\n        <h3>Flexible delivery</h3>\n        We adapt our delivery to the way your work, whether as an external provider or by providing senior.\n		    	<img width=\"19\" height=\"19\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-shape-6.png\" alt=\"\" />		\n		    	<img width=\"19\" height=\"18\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-shape-7.png\" alt=\"\" />		\n		    	<img width=\"30\" height=\"27\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-shape-5.png\" alt=\"\" />		\n			Why Choose us?\n	    <h3>\n                            <i></i>\n                        Don’t misread here we have random &amp; interesting facts will inspire you.\n            </h3>\n                    <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n                <img width=\"54\" height=\"45\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-counter-icon1.png\" alt=\"\" />            \n                1\n                +\n                            Team <br/> Members\n                <img width=\"54\" height=\"45\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-counter-icon2.png\" alt=\"\" />            \n                1\n                +\n                            Winning <br/> Awards\n                <img width=\"54\" height=\"45\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-counter-icon3.png\" alt=\"\" />            \n                1\n                +\n                            Completed <br/> Works\n                <img width=\"54\" height=\"41\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-counter-icon4.png\" alt=\"\" />            \n                1\n                +\n                            Client’s <br/> Feedback\n			Why Choose us?\n	    <h3>\n                            <i></i>\n                        Don’t misread here we have random &amp; interesting facts will inspire you.\n            </h3>\n        <h3>Strategic vision</h3>\n        A client once told us that where the others focus on one star one issue we see the whole sky. \n        <h3>Interpersonal skills</h3>\n        Forging relationships between\nmulti-national corporations, govern ments and global NGOs begins.\n        <h3>Networks that span</h3>\n        Over more than 20 years, we’ve \nfostered trusted relationships across government.\n        <h3>Flexible delivery</h3>\n        We adapt our delivery to the way your work, whether as an external provider or by providing senior.\n                    <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n                <img width=\"54\" height=\"45\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-counter-icon1.png\" alt=\"\" />            \n                1\n                +\n                            Team <br/> Members\n                <img width=\"54\" height=\"45\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-counter-icon2.png\" alt=\"\" />            \n                1\n                +\n                            Winning <br/> Awards\n                <img width=\"54\" height=\"45\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-counter-icon3.png\" alt=\"\" />            \n                1\n                +\n                            Completed <br/> Works\n                <img width=\"54\" height=\"41\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-counter-icon4.png\" alt=\"\" />            \n                1\n                +\n                            Client’s <br/> Feedback\n		    	<img width=\"19\" height=\"19\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-shape-6.png\" alt=\"\" />		\n		    	<img width=\"19\" height=\"18\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-shape-7.png\" alt=\"\" />		\n		    	<img width=\"30\" height=\"27\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-shape-5.png\" alt=\"\" />		\n			Services\n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n                                <img width=\"60\" height=\"65\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-service-icon4.png\" alt=\"\" />                            \n                        <h3>    \n                            Tax Consultancy                        </h3>\n                        This is one of many areas of\nprofessional services where our firm is well ahead of the competition.\n                                                    <a href=\"https://demo.casethemes.net/consultio-tax/service/business-strategy/\"></a>\n                                <img width=\"74\" height=\"65\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-service-icon5.png\" alt=\"\" />                            \n                        <h3>    \n                            Audit & assurance                        </h3>\n                        People are only as good as the tools they possess. So, to consistently deliver high-quality auditing services.\n                                                    <a href=\"https://demo.casethemes.net/consultio-tax/service/business-strategy/\"></a>\n                                <img width=\"51\" height=\"65\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-service-icon6.png\" alt=\"\" />                            \n                        <h3>    \n                            Value Added Tax                        </h3>\n                        We are providing and dealing with all sorts of legal and professional services and matters to operate.\n                                                    <a href=\"https://demo.casethemes.net/consultio-tax/service/business-strategy/\"></a>\n                                <img width=\"57\" height=\"65\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-service-icon7.png\" alt=\"\" />                            \n                        <h3>    \n                            Accounting Services                        </h3>\n                        Our professionals provide a range of accounting and assurance services of the highest standards.\n                                                    <a href=\"https://demo.casethemes.net/consultio-tax/service/business-strategy/\"></a>\n                                <img width=\"58\" height=\"65\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-service-icon8.png\" alt=\"\" />                            \n                        <h3>    \n                            Tax Outsourcing                        </h3>\n                        Unlike our competitors we have in house qualified lawyers and accountants who can help you.\n                                                    <a href=\"https://demo.casethemes.net/consultio-tax/service/business-strategy/\"></a>\n                                <img width=\"63\" height=\"65\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-service-icon9.png\" alt=\"\" />                            \n                        <h3>    \n                            Amazing Strategy                        </h3>\n                        Operates an atmosphere that promote creative approach for clients needs.\n                                                    <a href=\"https://demo.casethemes.net/consultio-tax/service/business-strategy/\"></a>\n			Team member \n	    <h3>\n                            <i></i>\n                        We have expert team members                    \n            </h3>\n		Learn about the skills that are most useful in helping you to work effectively as part of a team, and how this fits with Belbin&#8217;s Team Roles.		\n		For any Emergency <b>Call:</b>		\n		<i>icon phone</i>(210) 123-451		\n        <a href=\"https://demo.casethemes.net/consultio-tax/team-details/\" data-wow-delay=\"ms\">\n                Team details\n    </a>\n                                                                        <a href=\"#\"></a>\n                                                                            <a href=\"#\"></a>\n                                                                            <a href=\"#\"></a>\n                            <h3>    \n                                Iven Rocky                            </h3>\n                            Senior Web Developer\n                                                                                                    WordPress\n                                                90%\n                                                                                                    Java\n                                                50%\n                                                                                                    Css\n                                                70%\n                                <a href=\"https://demo.casethemes.net/consultio-tax/team-details/\"></a>\n                                                                        <a href=\"#\"></a>\n                                                                            <a href=\"#\"></a>\n                                                                            <a href=\"#\"></a>\n                            <h3>    \n                                Rebecca Leo                            </h3>\n                            Web Designer\n                                                                                                    Photoshop\n                                                90%\n                                                                                                    Sketch\n                                                80%\n                                                                                                    Css\n                                                70%\n                                <a href=\"https://demo.casethemes.net/consultio-tax/team-details/\"></a>\n                                                                        <a href=\"#\"></a>\n                                                                            <a href=\"#\"></a>\n                            <h3>    \n                                Adam Ivan                            </h3>\n                            Chef Advisor\n                                                                                                    Business Sense\n                                                90%\n                                                                                                    Cleanliness\n                                                80%\n                                                                                                    Creativity\n                                                70%\n                                <a href=\"https://demo.casethemes.net/consultio-tax/team-details/\"></a>\n                                                                        <a href=\"#\"></a>\n                                                                            <a href=\"#\"></a>\n                                                                            <a href=\"#\"></a>\n                            <h3>    \n                                Obira Franc                            </h3>\n                            Tax Consultant\n                                                                                                    Negotiation\n                                                90%\n                                                                                                    Tax law\n                                                50%\n                                                                                                    Organisation\n                                                70%\n                                <a href=\"https://demo.casethemes.net/consultio-tax/team-details/\"></a>\n			Case Studies\n	    <h3>\n                            <i></i>\n                        We are very happy for our awesome case studies!                    \n            </h3>\n		Like what you see? Contact us to see what type of solutions we can deploy for your business!		\n                            <a href=\"https://demo.casethemes.net/consultio-tax/case-study/international-business-development-relationships/\"><img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-12-570x345.jpg\" width=\"570\" height=\"345\" alt=\"theme-12\" title=\"theme-12\" /></a>\n                        <h3><a href=\"https://demo.casethemes.net/consultio-tax/case-study/international-business-development-relationships/\">International business development relationships</a></h3>\n                             <label>Category:</label> <a href=\"https://demo.casethemes.net/consultio-tax/case-study-category/financial/\" rel=\"tag\">Financial</a>                        \n                            <a href=\"https://demo.casethemes.net/consultio-tax/case-study/international-business-development-relationships/\">Read more</a>\n                            <a href=\"https://demo.casethemes.net/consultio-tax/case-study/supporting-a-unique-global-public-private-partnership/\"><img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-08-570x345.jpg\" width=\"570\" height=\"345\" alt=\"theme-08\" title=\"theme-08\" /></a>\n                        <h3><a href=\"https://demo.casethemes.net/consultio-tax/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h3>\n                             <label>Category:</label> <a href=\"https://demo.casethemes.net/consultio-tax/case-study-category/tax-management/\" rel=\"tag\">Tax Management</a>                        \n                            <a href=\"https://demo.casethemes.net/consultio-tax/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"https://demo.casethemes.net/consultio-tax/case-study/developing-a-program-to-be-alleviate-poverty/\"><img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-07-570x345.jpg\" width=\"570\" height=\"345\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"https://demo.casethemes.net/consultio-tax/case-study/developing-a-program-to-be-alleviate-poverty/\">Developing a program to be alleviate poverty.</a></h3>\n                             <label>Category:</label> <a href=\"https://demo.casethemes.net/consultio-tax/case-study-category/business/\" rel=\"tag\">Business</a>                        \n                            <a href=\"https://demo.casethemes.net/consultio-tax/case-study/developing-a-program-to-be-alleviate-poverty/\">Read more</a>\n                            <a href=\"https://demo.casethemes.net/consultio-tax/case-study/on-behalf-of-world-bank-an-advocom-group/\"><img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-11-570x345.jpg\" width=\"570\" height=\"345\" alt=\"theme-11\" title=\"theme-11\" /></a>\n                        <h3><a href=\"https://demo.casethemes.net/consultio-tax/case-study/on-behalf-of-world-bank-an-advocom-group/\">On behalf of World Bank, an Advocom Group.</a></h3>\n                             <label>Category:</label> <a href=\"https://demo.casethemes.net/consultio-tax/case-study-category/strategy/\" rel=\"tag\">Strategy</a>                        \n                            <a href=\"https://demo.casethemes.net/consultio-tax/case-study/on-behalf-of-world-bank-an-advocom-group/\">Read more</a>\n			Testimonials\n	    <h3>\n                            <i></i>\n                        We have appreciated by our clients!                    \n            </h3>\n                                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/author-02.jpg\" width=\"92\" height=\"92\" alt=\"author-02\" title=\"author-02\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Maria Silverii                                    </h3>\n                                    CEO of Blue Illusion\n                                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/author-01.jpg\" width=\"92\" height=\"92\" alt=\"author-01\" title=\"author-01\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Rebecca Leo                                     </h3>\n                                    Web Designer\n										<img width=\"800\" height=\"632\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-tax.png\" alt=\"\" srcset=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-tax.png 800w, https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-tax-300x237.png 300w, https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-tax-768x607.png 768w, https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-tax-600x474.png 600w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n			Blog\n	    <h3>\n                            <i></i>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://demo.casethemes.net/consultio-tax/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://demo.casethemes.net/consultio-tax/author/admin/\">admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://demo.casethemes.net/consultio-tax/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://demo.casethemes.net/consultio-tax/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://demo.casethemes.net/consultio-tax/author/admin/\">admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://demo.casethemes.net/consultio-tax/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://demo.casethemes.net/consultio-tax/food-industry-leaders-often-change-their-profound/\"><img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://demo.casethemes.net/consultio-tax/author/admin/\">admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://demo.casethemes.net/consultio-tax/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://demo.casethemes.net/consultio-tax/how-to-go-about-intiating-an-start-up/\"><img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://demo.casethemes.net/consultio-tax/author/admin/\">admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://demo.casethemes.net/consultio-tax/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','Home Onepage','','publish','closed','closed','','home-onepage','','','2020-07-25 10:51:50','2020-07-25 10:51:50','',0,'https://demo.casethemes.net/consultio-tax/?page_id=3970',0,'page','',0),(156,1,'2019-11-05 02:30:46','2019-11-05 02:30:46','It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum The man, who is in a stable condition in hospital, has \"potentially life-changing injuries\" after the overnight attack in Garvagh, County Lono donderry. He was shot in the arms and legs.\"What sort of men would think it is accepttable to sub ject a young girl to this level of brutality and violence?\n\n\"Every child has the right to feel safe and protected in their own home - how is this poor child going to sleep tonight or in coming nights? What are the long term effects on her going to be?\"\n<h3 class=\"single-title\">Content without backward-compatible data.</h3>\nTheir community. I wonder how they wou if their own child witnessed such a level of violence?\n\n\"There is absolutely no justification for an attack like this in our communities and we must all work together to bring those responsible to justice and to stop this from happening to another child.\"\n\nEarlier this month, <u>the PSNI launched a hard-hitting advertisement campaign aimed at changing</u> public attitudes to paramilitary attacks.\n\n[gallery size=\"constrio-medium\" columns=\"2\" link=\"file\" ids=\"149,184\"]\n<h3 class=\"single-title\">A Kentucky woman who was accused last year.</h3>\nThe intruders chased the girl in the house and threatened her when she hid from them, according to the PSNI Limavady Facebook page.\n\n\"She came out petrified with her Piggy Bank, HER PIGGY BANK! hoping that the men would take it and leave her dad alone,\" one outraged officer wrote.\n<blockquote>“What sort of men would think it is acceptable to subject a girl to this level of brutality and violence? an attack like thiop.”<cite>Neil Borton</cite></blockquote>\nThe intruders chased the girl in the house and threatened her when she hid from them, according to the PSNI Limavady Facebook page.\n\n\"She came out petrified with her Piggy Bank, HER PIGGY BANK! hoping that the men would take it and leave her dad alone,\" one outraged officer wrote. especially in capital projects and the suppliers and consultants that work for you know the value of a customer like that. As a consultant executing two projects for a large multinational, I realise how very difficult it sometimes can be on the receiving.','Reasons to explan fast business builder.','At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum. ','publish','open','open','','reasons-to-explan-fast-business-builder','','','2019-11-05 02:30:46','2019-11-05 02:30:46','',0,'https://demo.casethemes.net/consultio-tax/?p=156',0,'post','',2),(159,1,'2019-11-05 02:32:05','2019-11-05 02:32:05','It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum The man, who is in a stable condition in hospital, has \"potentially life-changing injuries\" after the overnight attack in Garvagh, County Lono donderry. He was shot in the arms and legs.\"What sort of men would think it is accepttable to sub ject a young girl to this level of brutality and violence?\n\n\"Every child has the right to feel safe and protected in their own home - how is this poor child going to sleep tonight or in coming nights? What are the long term effects on her going to be?\"\n<h3 class=\"single-title\">Content without backward-compatible data.</h3>\nTheir community. I wonder how they wou if their own child witnessed such a level of violence?\n\n\"There is absolutely no justification for an attack like this in our communities and we must all work together to bring those responsible to justice and to stop this from happening to another child.\"\n\nEarlier this month, <u>the PSNI launched a hard-hitting advertisement campaign aimed at changing</u> public attitudes to paramilitary attacks.\n\n[gallery size=\"constrio-medium\" columns=\"2\" link=\"file\" ids=\"149,184\"]\n<h3 class=\"single-title\">A Kentucky woman who was accused last year.</h3>\nThe intruders chased the girl in the house and threatened her when she hid from them, according to the PSNI Limavady Facebook page.\n\n\"She came out petrified with her Piggy Bank, HER PIGGY BANK! hoping that the men would take it and leave her dad alone,\" one outraged officer wrote.\n<blockquote>“What sort of men would think it is acceptable to subject a girl to this level of brutality and violence? an attack like thiop.”<cite>Neil Borton</cite></blockquote>\nThe intruders chased the girl in the house and threatened her when she hid from them, according to the PSNI Limavady Facebook page.\n\n\"She came out petrified with her Piggy Bank, HER PIGGY BANK! hoping that the men would take it and leave her dad alone,\" one outraged officer wrote. especially in capital projects and the suppliers and consultants that work for you know the value of a customer like that. As a consultant executing two projects for a large multinational, I realise how very difficult it sometimes can be on the receiving.','How to go about intiating an start-up.','At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum. ','publish','open','open','','how-to-go-about-intiating-an-start-up','','','2019-11-05 02:32:05','2019-11-05 02:32:05','',0,'https://demo.casethemes.net/consultio-tax/?p=159',0,'post','',2),(161,1,'2019-11-05 02:32:39','2019-11-05 02:32:39','It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum The man, who is in a stable condition in hospital, has \"potentially life-changing injuries\" after the overnight attack in Garvagh, County Lono donderry. He was shot in the arms and legs.\"What sort of men would think it is accepttable to sub ject a young girl to this level of brutality and violence?\n\n\"Every child has the right to feel safe and protected in their own home - how is this poor child going to sleep tonight or in coming nights? What are the long term effects on her going to be?\"\n<h3 class=\"single-title\">Content without backward-compatible data.</h3>\nTheir community. I wonder how they wou if their own child witnessed such a level of violence?\n\n\"There is absolutely no justification for an attack like this in our communities and we must all work together to bring those responsible to justice and to stop this from happening to another child.\"\n\nEarlier this month, <u>the PSNI launched a hard-hitting advertisement campaign aimed at changing</u> public attitudes to paramilitary attacks.\n\n[gallery columns=\"2\" link=\"file\" size=\"full\" ids=\"1557,1556\"]\n<h3 class=\"single-title\">A Kentucky woman who was accused last year.</h3>\nThe intruders chased the girl in the house and threatened her when she hid from them, according to the PSNI Limavady Facebook page.\n\n\"She came out petrified with her Piggy Bank, HER PIGGY BANK! hoping that the men would take it and leave her dad alone,\" one outraged officer wrote.\n<blockquote>“What sort of men would think it is acceptable to subject a girl to this level of brutality and violence? an attack like thiop.”<cite>Neil Borton</cite></blockquote>\nThe intruders chased the girl in the house and threatened her when she hid from them, according to the PSNI Limavady Facebook page.\n\n\"She came out petrified with her Piggy Bank, HER PIGGY BANK! hoping that the men would take it and leave her dad alone,\" one outraged officer wrote. especially in capital projects and the suppliers and consultants that work for you know the value of a customer like that. As a consultant executing two projects for a large multinational, I realise how very difficult it sometimes can be on the receiving.','Food industry leaders often change their.','At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum. ','publish','open','open','','food-industry-leaders-often-change-their-profound','','','2019-11-05 02:32:39','2019-11-05 02:32:39','',0,'https://demo.casethemes.net/consultio-tax/?p=161',0,'post','',3),(164,1,'2019-11-05 02:33:27','2019-11-05 02:33:27','It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum The man, who is in a stable condition in hospital, has \"potentially life-changing injuries\" after the overnight attack in Garvagh, County Lono donderry. He was shot in the arms and legs.\"What sort of men would think it is accepttable to sub ject a young girl to this level of brutality and violence?\n\n\"Every child has the right to feel safe and protected in their own home - how is this poor child going to sleep tonight or in coming nights? What are the long term effects on her going to be?\"\n<h3 class=\"single-title\">Content without backward-compatible data.</h3>\nTheir community. I wonder how they wou if their own child witnessed such a level of violence?\n\n\"There is absolutely no justification for an attack like this in our communities and we must all work together to bring those responsible to justice and to stop this from happening to another child.\"\n\nEarlier this month, <u>the PSNI launched a hard-hitting advertisement campaign aimed at changing</u> public attitudes to paramilitary attacks.\n\n[gallery size=\"constrio-medium\" columns=\"2\" link=\"file\" ids=\"149,184\"]\n<h3 class=\"single-title\">A Kentucky woman who was accused last year.</h3>\nThe intruders chased the girl in the house and threatened her when she hid from them, according to the PSNI Limavady Facebook page.\n\n\"She came out petrified with her Piggy Bank, HER PIGGY BANK! hoping that the men would take it and leave her dad alone,\" one outraged officer wrote.\n<blockquote>“What sort of men would think it is acceptable to subject a girl to this level of brutality and violence? an attack like thiop.”<cite>Neil Borton</cite></blockquote>\nThe intruders chased the girl in the house and threatened her when she hid from them, according to the PSNI Limavady Facebook page.\n\n\"She came out petrified with her Piggy Bank, HER PIGGY BANK! hoping that the men would take it and leave her dad alone,\" one outraged officer wrote. especially in capital projects and the suppliers and consultants that work for you know the value of a customer like that. As a consultant executing two projects for a large multinational, I realise how very difficult it sometimes can be on the receiving.','What we are capable to usually discovered.','At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum. ','publish','open','open','','what-we-are-capable-to-beo-usually-discovered','','','2019-11-05 02:33:27','2019-11-05 02:33:27','',0,'https://demo.casethemes.net/consultio-tax/?p=164',0,'post','',2),(166,1,'2019-11-05 02:33:58','2019-11-05 02:33:58','It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum The man, who is in a stable condition in hospital, has \"potentially life-changing injuries\" after the overnight attack in Garvagh, County Lono donderry. He was shot in the arms and legs.\"What sort of men would think it is accepttable to sub ject a young girl to this level of brutality and violence?\n\n\"Every child has the right to feel safe and protected in their own home - how is this poor child going to sleep tonight or in coming nights? What are the long term effects on her going to be?\"\n<h3 class=\"single-title\">Content without backward-compatible data.</h3>\nTheir community. I wonder how they wou if their own child witnessed such a level of violence?\n\n\"There is absolutely no justification for an attack like this in our communities and we must all work together to bring those responsible to justice and to stop this from happening to another child.\"\n\nEarlier this month, <u>the PSNI launched a hard-hitting advertisement campaign aimed at changing</u> public attitudes to paramilitary attacks.\n\n[gallery size=\"constrio-medium\" columns=\"2\" link=\"file\" ids=\"149,184\"]\n<h3 class=\"single-title\">A Kentucky woman who was accused last year.</h3>\nThe intruders chased the girl in the house and threatened her when she hid from them, according to the PSNI Limavady Facebook page.\n\n\"She came out petrified with her Piggy Bank, HER PIGGY BANK! hoping that the men would take it and leave her dad alone,\" one outraged officer wrote.\n<blockquote>“What sort of men would think it is acceptable to subject a girl to this level of brutality and violence? an attack like thiop.”<cite>Neil Borton</cite></blockquote>\nThe intruders chased the girl in the house and threatened her when she hid from them, according to the PSNI Limavady Facebook page.\n\n\"She came out petrified with her Piggy Bank, HER PIGGY BANK! hoping that the men would take it and leave her dad alone,\" one outraged officer wrote. especially in capital projects and the suppliers and consultants that work for you know the value of a customer like that. As a consultant executing two projects for a large multinational, I realise how very difficult it sometimes can be on the receiving.','Strategy for Norway\'s Peion to Fund Global.','At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum. ','publish','open','open','','strategy-for-norways-peion-to-fund-global','','','2019-11-05 02:33:58','2019-11-05 02:33:58','',0,'https://demo.casethemes.net/consultio-tax/?p=166',0,'post','',2),(169,1,'2018-11-04 02:43:57','2018-11-04 02:43:57','It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum The man, who is in a stable condition in hospital, has \"potentially life-changing injuries\" after the overnight attack in Garvagh, County Lono donderry. He was shot in the arms and legs.\"What sort of men would think it is accepttable to sub ject a young girl to this level of brutality and violence?\n\n\"Every child has the right to feel safe and protected in their own home - how is this poor child going to sleep tonight or in coming nights? What are the long term effects on her going to be?\"\n<h3 class=\"single-title\">Content without backward-compatible data.</h3>\nTheir community. I wonder how they wou if their own child witnessed such a level of violence?\n\n\"There is absolutely no justification for an attack like this in our communities and we must all work together to bring those responsible to justice and to stop this from happening to another child.\"\n\nEarlier this month, <u>the PSNI launched a hard-hitting advertisement campaign aimed at changing</u> public attitudes to paramilitary attacks.\n\n[gallery size=\"constrio-medium\" columns=\"2\" link=\"file\" ids=\"149,184\"]\n<h3 class=\"single-title\">A Kentucky woman who was accused last year.</h3>\nThe intruders chased the girl in the house and threatened her when she hid from them, according to the PSNI Limavady Facebook page.\n\n\"She came out petrified with her Piggy Bank, HER PIGGY BANK! hoping that the men would take it and leave her dad alone,\" one outraged officer wrote.\n<blockquote>“What sort of men would think it is acceptable to subject a girl to this level of brutality and violence? an attack like thiop.”<cite>Neil Borton</cite></blockquote>\nThe intruders chased the girl in the house and threatened her when she hid from them, according to the PSNI Limavady Facebook page.\n\n\"She came out petrified with her Piggy Bank, HER PIGGY BANK! hoping that the men would take it and leave her dad alone,\" one outraged officer wrote. especially in capital projects and the suppliers and consultants that work for you know the value of a customer like that. As a consultant executing two projects for a large multinational, I realise how very difficult it sometimes can be on the receiving.','Blackpool polices hunt for David Schwimmer','At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum. ','publish','open','open','','many-types-of-construction-equipment-are-designed','','','2018-11-04 02:43:57','2018-11-04 02:43:57','',0,'https://demo.casethemes.net/consultio-tax/?p=169',0,'post','',2),(575,1,'2019-11-13 04:04:21','2019-11-13 04:04:21','Portfolio\n	    <h3>\n        Look how wonderful work we have done!    </h3>\n		At vero eos et accusamus et iusto odio digni goiku\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. 		\n										<img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/elementor/thumbs/theme-06-ohk3144427ux2hbku2ayjbu3mg0wurjlh7u1h3xg06.jpg\" title=\"theme-06\" alt=\"theme-06\" />											\n	    <h3>\n        Revenue Growth    </h3>\n		Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.Eveniet in vulputate velit esse molestie cons to\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\nsim. Temporibus autem.		\n			    <ul>\n                    <li>\n                                    <label>Category:</label>\n                                    Strategy\n                            </li>\n                    <li>\n                                    <label>Client:</label>\n                                    Real Madrid C.F\n                            </li>\n                    <li>\n                                    <label>Date:</label>\n                                    24/11/2017\n                            </li>\n                    <li>\n                                    <label>Website:</label>\n                                    www.giorf.esp\n                            </li>\n            </ul>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-01-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-01\" title=\"theme-01\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/business-growth/\">Business Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/business-growth/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-02-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-02\" title=\"theme-02\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/digital-analysis/\">Digital Analysis</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/digital-analysis/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-03-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-03\" title=\"theme-03\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/chan-agency/\">Chan Agency</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/chan-agency/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-04-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-04\" title=\"theme-04\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/data-analytics/\">Data Analytics</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/data-analytics/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-05-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-05\" title=\"theme-05\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/court-imperial/\">Court Imperial</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/court-imperial/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-06-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-06\" title=\"theme-06\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/revenue-growth/\">Revenue Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/stakeholder-relations/\" rel=\"tag\">Stakeholder relations</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/revenue-growth/\">+</a>','Revenue Growth','','publish','closed','closed','','revenue-growth','','','2019-11-13 04:04:21','2019-11-13 04:04:21','',0,'https://demo.casethemes.net/consultio-tax/?post_type=portfolio&amp;p=575',0,'portfolio','',0),(577,1,'2019-11-13 04:04:45','2019-11-13 04:04:45','Portfolio\n	    <h3>\n        Look how wonderful work we have done!    </h3>\n		At vero eos et accusamus et iusto odio digni goiku\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. 		\n										<img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/elementor/thumbs/theme-05-ohk2zwvjbu7q8f2dujm4cmqwapy10orxz9tpedpjye.jpg\" title=\"theme-05\" alt=\"theme-05\" />											\n	    <h3>\n        Court Imperial    </h3>\n		Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.Eveniet in vulputate velit esse molestie cons to\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\nsim. Temporibus autem.		\n			    <ul>\n                    <li>\n                                    <label>Category:</label>\n                                    Strategy\n                            </li>\n                    <li>\n                                    <label>Client:</label>\n                                    Real Madrid C.F\n                            </li>\n                    <li>\n                                    <label>Date:</label>\n                                    24/11/2017\n                            </li>\n                    <li>\n                                    <label>Website:</label>\n                                    www.giorf.esp\n                            </li>\n            </ul>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-01-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-01\" title=\"theme-01\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/business-growth/\">Business Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/business-growth/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-02-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-02\" title=\"theme-02\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/digital-analysis/\">Digital Analysis</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/digital-analysis/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-03-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-03\" title=\"theme-03\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/chan-agency/\">Chan Agency</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/chan-agency/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-04-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-04\" title=\"theme-04\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/data-analytics/\">Data Analytics</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/data-analytics/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-05-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-05\" title=\"theme-05\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/court-imperial/\">Court Imperial</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/court-imperial/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-06-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-06\" title=\"theme-06\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/revenue-growth/\">Revenue Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/stakeholder-relations/\" rel=\"tag\">Stakeholder relations</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/revenue-growth/\">+</a>','Court Imperial','','publish','closed','closed','','court-imperial','','','2019-11-13 04:04:45','2019-11-13 04:04:45','',0,'https://demo.casethemes.net/consultio-tax/?post_type=portfolio&amp;p=577',0,'portfolio','',0),(579,1,'2019-11-13 04:05:06','2019-11-13 04:05:06','Portfolio\n	    <h3>\n        Look how wonderful work we have done!    </h3>\n		At vero eos et accusamus et iusto odio digni goiku\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. 		\n										<img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/elementor/thumbs/theme-04-ohk2zu20rc3v9l6hb0e8n5giikbxdlgqyvv8yjtqh2.jpg\" title=\"theme-04\" alt=\"theme-04\" />											\n	    <h3>\n        Data Analytics    </h3>\n		Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.Eveniet in vulputate velit esse molestie cons to\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\nsim. Temporibus autem.		\n			    <ul>\n                    <li>\n                                    <label>Category:</label>\n                                    Strategy\n                            </li>\n                    <li>\n                                    <label>Client:</label>\n                                    Real Madrid C.F\n                            </li>\n                    <li>\n                                    <label>Date:</label>\n                                    24/11/2020\n                            </li>\n                    <li>\n                                    <label>Website:</label>\n                                    www.consultio.com\n                            </li>\n            </ul>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-01-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-01\" title=\"theme-01\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/business-growth/\">Business Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/business-growth/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-02-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-02\" title=\"theme-02\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/digital-analysis/\">Digital Analysis</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/digital-analysis/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-03-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-03\" title=\"theme-03\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/chan-agency/\">Chan Agency</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/chan-agency/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-04-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-04\" title=\"theme-04\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/data-analytics/\">Data Analytics</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/data-analytics/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-05-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-05\" title=\"theme-05\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/court-imperial/\">Court Imperial</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/court-imperial/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-06-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-06\" title=\"theme-06\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/revenue-growth/\">Revenue Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/stakeholder-relations/\" rel=\"tag\">Stakeholder relations</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/revenue-growth/\">+</a>','Data Analytics','','publish','closed','closed','','data-analytics','','','2019-11-13 04:05:06','2019-11-13 04:05:06','',0,'https://demo.casethemes.net/consultio-tax/?post_type=portfolio&amp;p=579',0,'portfolio','',0),(581,1,'2019-11-13 04:05:24','2019-11-13 04:05:24','Portfolio\n	    <h3>\n        Look how wonderful work we have done!    </h3>\n		At vero eos et accusamus et iusto odio digni goiku\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. 		\n										<img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/elementor/thumbs/theme-03-ohk2zyr7piaavmznjkfdhm9thhorg2zenj4ocxmrly.jpg\" title=\"theme-03\" alt=\"theme-03\" />											\n	    <h3>\n        Chan Agency    </h3>\n		Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.Eveniet in vulputate velit esse molestie cons to\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\nsim. Temporibus autem.		\n			    <ul>\n                    <li>\n                                    <label>Category:</label>\n                                    Strategy\n                            </li>\n                    <li>\n                                    <label>Client:</label>\n                                    Real Madrid C.F\n                            </li>\n                    <li>\n                                    <label>Date:</label>\n                                    24/11/2017\n                            </li>\n                    <li>\n                                    <label>Website:</label>\n                                    www.giorf.esp\n                            </li>\n            </ul>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-01-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-01\" title=\"theme-01\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/business-growth/\">Business Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/business-growth/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-02-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-02\" title=\"theme-02\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/digital-analysis/\">Digital Analysis</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/digital-analysis/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-03-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-03\" title=\"theme-03\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/chan-agency/\">Chan Agency</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/chan-agency/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-04-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-04\" title=\"theme-04\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/data-analytics/\">Data Analytics</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/data-analytics/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-05-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-05\" title=\"theme-05\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/court-imperial/\">Court Imperial</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/court-imperial/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-06-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-06\" title=\"theme-06\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/revenue-growth/\">Revenue Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/stakeholder-relations/\" rel=\"tag\">Stakeholder relations</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/revenue-growth/\">+</a>','Chan Agency','','publish','closed','closed','','chan-agency','','','2019-11-13 04:05:24','2019-11-13 04:05:24','',0,'https://demo.casethemes.net/consultio-tax/?post_type=portfolio&amp;p=581',0,'portfolio','',0),(583,1,'2019-11-13 04:05:46','2019-11-13 04:05:46','Portfolio\n	    <h3>\n        Look how wonderful work we have done!    </h3>\n		At vero eos et accusamus et iusto odio digni goiku\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. 		\n										<img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/elementor/thumbs/theme-01-ohk2ziryhbofe9mv4vipt8azdxvit87yxc1f78agjq.jpg\" title=\"theme-01\" alt=\"theme-01\" />											\n	    <h3>\n        Digital Analysis    </h3>\n		Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.Eveniet in vulputate velit esse molestie cons to\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\nsim. Temporibus autem.		\n			    <ul>\n                    <li>\n                                    <label>Category:</label>\n                                    Strategy\n                            </li>\n                    <li>\n                                    <label>Client:</label>\n                                    Real Madrid C.F\n                            </li>\n                    <li>\n                                    <label>Date:</label>\n                                    24/11/2017\n                            </li>\n                    <li>\n                                    <label>Website:</label>\n                                    www.giorf.esp\n                            </li>\n            </ul>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-01-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-01\" title=\"theme-01\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/business-growth/\">Business Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/business-growth/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-02-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-02\" title=\"theme-02\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/digital-analysis/\">Digital Analysis</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/digital-analysis/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-03-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-03\" title=\"theme-03\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/chan-agency/\">Chan Agency</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/chan-agency/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-04-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-04\" title=\"theme-04\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/data-analytics/\">Data Analytics</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/data-analytics/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-05-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-05\" title=\"theme-05\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/court-imperial/\">Court Imperial</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/court-imperial/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-06-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-06\" title=\"theme-06\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/revenue-growth/\">Revenue Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/stakeholder-relations/\" rel=\"tag\">Stakeholder relations</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-tax/portfolio/revenue-growth/\">+</a>','Digital Analysis','','publish','closed','closed','','digital-analysis','','','2019-11-13 04:05:46','2019-11-13 04:05:46','',0,'https://demo.casethemes.net/consultio-tax/?post_type=portfolio&amp;p=583',0,'portfolio','',0),(758,1,'2019-11-15 07:21:52','2019-11-15 07:21:52','Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem.','White Tailored Blazer','A collection of textile samples lay spread out on the table - Samsa was travelling salesman - and above it there hung a picture that he had recently cut out of an illustrated magazine and housed in a nice, gilded frame. It showed a lady fitted out with a fur hat and fur boa who sat upright, raising a heavy.','publish','open','closed','','white-tailored-blazer','','','2021-03-26 19:43:17','2021-03-26 19:43:17','',0,'https://demo.casethemes.net/consultio-tax/?post_type=product&amp;p=758',0,'product','',0),(771,1,'2019-11-15 07:24:28','2019-11-15 07:24:28','Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem.','Light Blue Shirt','A collection of textile samples lay spread out on the table - Samsa was travelling salesman - and above it there hung a picture that he had recently cut out of an illustrated magazine and housed in a nice, gilded frame. It showed a lady fitted out with a fur hat and fur boa who sat upright, raising a heavy.','publish','open','closed','','light-blue-shirt','','','2021-03-26 19:43:17','2021-03-26 19:43:17','',0,'https://demo.casethemes.net/consultio-tax/?post_type=product&amp;p=771',0,'product','',0),(772,1,'2019-11-15 07:24:52','2019-11-15 07:24:52','Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem.','Pure Silk Black Tie','A collection of textile samples lay spread out on the table - Samsa was travelling salesman - and above it there hung a picture that he had recently cut out of an illustrated magazine and housed in a nice, gilded frame. It showed a lady fitted out with a fur hat and fur boa who sat upright, raising a heavy.','publish','open','closed','','pure-silk-black-tie','','','2021-03-26 19:43:17','2021-03-26 19:43:17','',0,'https://demo.casethemes.net/consultio-tax/?post_type=product&amp;p=772',0,'product','',0),(773,1,'2019-11-15 07:25:28','2019-11-15 07:25:28','Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem.','Slim Fit Bright Blue','A collection of textile samples lay spread out on the table - Samsa was travelling salesman - and above it there hung a picture that he had recently cut out of an illustrated magazine and housed in a nice, gilded frame. It showed a lady fitted out with a fur hat and fur boa who sat upright, raising a heavy.','publish','open','closed','','slim-fit-bright-blue','','','2021-03-26 19:43:17','2021-03-26 19:43:17','',0,'https://demo.casethemes.net/consultio-tax/?post_type=product&amp;p=773',0,'product','',0),(774,1,'2019-11-15 07:29:26','2019-11-15 07:29:26','Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem.','Flat Shoes','A collection of textile samples lay spread out on the table - Samsa was travelling salesman - and above it there hung a picture that he had recently cut out of an illustrated magazine and housed in a nice, gilded frame. It showed a lady fitted out with a fur hat and fur boa who sat upright, raising a heavy.','publish','open','closed','','flat-shoes','','','2021-03-26 19:43:17','2021-03-26 19:43:17','',0,'https://demo.casethemes.net/consultio-tax/?post_type=product&amp;p=774',0,'product','',0),(775,1,'2019-11-15 07:29:51','2019-11-15 07:29:51','Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem.','Monochrome Cami','A collection of textile samples lay spread out on the table - Samsa was travelling salesman - and above it there hung a picture that he had recently cut out of an illustrated magazine and housed in a nice, gilded frame. It showed a lady fitted out with a fur hat and fur boa who sat upright, raising a heavy.','publish','open','closed','','monochrome-cami','','','2021-03-26 19:43:17','2021-03-26 19:43:17','',0,'https://demo.casethemes.net/consultio-tax/?post_type=product&amp;p=775',0,'product','',0),(776,1,'2019-11-15 07:30:48','2019-11-15 07:30:48','Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem.','Chelsea Boots','A collection of textile samples lay spread out on the table - Samsa was travelling salesman - and above it there hung a picture that he had recently cut out of an illustrated magazine and housed in a nice, gilded frame. It showed a lady fitted out with a fur hat and fur boa who sat upright, raising a heavy.','publish','open','closed','','chelsea-boots','','','2021-03-26 19:43:17','2021-03-26 19:43:17','',0,'https://demo.casethemes.net/consultio-tax/?post_type=product&amp;p=776',0,'product','',0),(777,1,'2019-11-15 07:31:15','2019-11-15 07:31:15','Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem.','Cami Skater Front','A collection of textile samples lay spread out on the table - Samsa was travelling salesman - and above it there hung a picture that he had recently cut out of an illustrated magazine and housed in a nice, gilded frame. It showed a lady fitted out with a fur hat and fur boa who sat upright, raising a heavy.','publish','open','closed','','cami-skater-front','','','2021-03-26 19:43:17','2021-03-26 19:43:17','',0,'https://demo.casethemes.net/consultio-tax/?post_type=product&amp;p=777',0,'product','',0),(1742,1,'2019-12-03 06:47:59','2019-12-03 06:47:59','Portfolio\n<h3>Look how wonderful work we have done!</h3>\nAt vero eos et accusamus et iusto odio digni goiku\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos.\n<img title=\"theme-01\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/elementor/thumbs/theme-01-ohk2ziryhbofe9mv4vipt8azdxvit87yxc1f78agjq.jpg\" alt=\"theme-01\" />\n<h3>Business Growth</h3>\nDut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.Eveniet in vulputate velit esse molestie cons to\nequat, vel illum dolore eu feugiat nulla facilisis seds eros sed et accumsan et iusto odio dignis\nsim. Temporibus autem.\n<ul>\n 	<li><label>Category:</label>\nStrategy</li>\n 	<li><label>Client:</label>\nReal Madrid C.F</li>\n 	<li><label>Date:</label>\n24/11/2017</li>\n 	<li><label>Website:</label>\nwww.giorf.esp</li>\n</ul>\n<img title=\"theme-01\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-01-600x589.jpg\" alt=\"theme-01\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/business-growth/\">Business Growth</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>\n<a href=\"https://demo.casethemes.net/consultio-tax/portfolio/business-growth/\">+</a>\n<img title=\"theme-02\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-02-600x589.jpg\" alt=\"theme-02\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/digital-analysis/\">Digital Analysis</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>\n<a href=\"https://demo.casethemes.net/consultio-tax/portfolio/digital-analysis/\">+</a>\n<img title=\"theme-03\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-03-600x589.jpg\" alt=\"theme-03\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/chan-agency/\">Chan Agency</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>\n<a href=\"https://demo.casethemes.net/consultio-tax/portfolio/chan-agency/\">+</a>\n<img title=\"theme-04\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-04-600x589.jpg\" alt=\"theme-04\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/data-analytics/\">Data Analytics</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>\n<a href=\"https://demo.casethemes.net/consultio-tax/portfolio/data-analytics/\">+</a>\n<img title=\"theme-05\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-05-600x589.jpg\" alt=\"theme-05\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/court-imperial/\">Court Imperial</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>\n<a href=\"https://demo.casethemes.net/consultio-tax/portfolio/court-imperial/\">+</a>\n<img title=\"theme-06\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-06-600x589.jpg\" alt=\"theme-06\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-tax/portfolio/revenue-growth/\">Revenue Growth</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-tax/portfolio-category/stakeholder-relations/\" rel=\"tag\">Stakeholder relations</a>\n<a href=\"https://demo.casethemes.net/consultio-tax/portfolio/revenue-growth/\">+</a>','Business Growth','','publish','closed','closed','','business-growth','','','2019-12-03 06:47:59','2019-12-03 06:47:59','',0,'https://demo.casethemes.net/consultio-tax/?post_type=portfolio&amp;p=1742',0,'portfolio','',0),(446,1,'2019-11-11 09:21:33','2019-11-11 09:21:33','<h3>\n        We give the best Services \n        <i></i>\n    </h3>\n		There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.		\n	            		Sed do eiusmod tempor incididunt ut	            	\n	            		Labore et dolore magna aliqua	            	\n	            		Ut enim ad minim veniam quis nostrud	            	\n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-05-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-05\" title=\"theme-05\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-01-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-01\" title=\"theme-01\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-09-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-09\" title=\"theme-09\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-07-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-07\" title=\"theme-07\" />                    \n                Personal Care\n                Super Support\n                Guaranteed\n                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                    <p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br/></p>\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/success-fullfill/\">Success fullfill</a></h3>\n                                A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/startup-business/\">StartUp Business</a></h3>\n                                Photography is the core of everything we do, photography equipment, camera, photography.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/leadership-work/\">Leadership Work</a></h3>\n                                When there is a key element of your organisation that is limiting your people’s to engagement performance.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/business-growth/\">Business Growth</a></h3>\n                                Whatever the scenario, we tap into deep networks and innate understanding of each party’s priorities.                            \n        <ul id=\"menu-menu-services\"><li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-tax/service/seo-optimization/\">SEO Optimization</a></li>\n<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-tax/service/business-planning/\">Business Planning</a></li>\n<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-tax/service/program-management/\">Program management</a></li>\n<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-tax/service/chart-management/\">Chart management</a></li>\n<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-tax/service/market-research/\">Market Research</a></li>\n</ul>    \n	    <h3>\n        Contact    </h3>\n			    <ul>\n                    <li>\n            	   3111 West Allegheny Avenue\nPennsylvania 19132                \n           </li>\n                    <li>\n            	   1-982-782-5297<br />\n1-982-125-6378                \n           </li>\n                    <li>\n            	   support@consultio.com                \n           </li>\n            </ul>\n	    <h3>\n        Brochures    </h3>\n		View our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.		\n                <a href=\"#\">\n            	                                Download Brochure\n            	</a>\n                <a href=\"#\">\n            	                                Characteristics\n            	</a>\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Market Research','','publish','closed','closed','','market-research','','','2019-11-11 09:21:33','2019-11-11 09:21:33','',0,'https://demo.casethemes.net/consultio-tax/?post_type=service&amp;p=446',0,'service','',0),(448,1,'2019-11-11 09:22:21','2019-11-11 09:22:21','<h3>\n        We give the best Services \n        <i></i>\n    </h3>\n		There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.		\n	            		Sed do eiusmod tempor incididunt ut	            	\n	            		Labore et dolore magna aliqua	            	\n	            		Ut enim ad minim veniam quis nostrud	            	\n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-05-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-05\" title=\"theme-05\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-01-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-01\" title=\"theme-01\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-09-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-09\" title=\"theme-09\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-07-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-07\" title=\"theme-07\" />                    \n                Personal Care\n                Super Support\n                Guaranteed\n                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                    <p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br/></p>\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/success-fullfill/\">Success fullfill</a></h3>\n                                A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/startup-business/\">StartUp Business</a></h3>\n                                Photography is the core of everything we do, photography equipment, camera, photography.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/leadership-work/\">Leadership Work</a></h3>\n                                When there is a key element of your organisation that is limiting your people’s to engagement performance.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/business-growth/\">Business Growth</a></h3>\n                                Whatever the scenario, we tap into deep networks and innate understanding of each party’s priorities.                            \n        <ul id=\"menu-menu-services\"><li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-tax/service/seo-optimization/\">SEO Optimization</a></li>\n<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-tax/service/business-planning/\">Business Planning</a></li>\n<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-tax/service/program-management/\">Program management</a></li>\n<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-tax/service/chart-management/\">Chart management</a></li>\n<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-tax/service/market-research/\">Market Research</a></li>\n</ul>    \n	    <h3>\n        Contact    </h3>\n			    <ul>\n                    <li>\n            	   3111 West Allegheny Avenue\nPennsylvania 19132                \n           </li>\n                    <li>\n            	   1-982-782-5297<br />\n1-982-125-6378                \n           </li>\n                    <li>\n            	   support@consultio.com                \n           </li>\n            </ul>\n	    <h3>\n        Brochures    </h3>\n		View our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.		\n                <a href=\"#\">\n            	                                Download Brochure\n            	</a>\n                <a href=\"#\">\n            	                                Characteristics\n            	</a>\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','SEO Optimization','','publish','closed','closed','','seo-optimization','','','2019-11-11 09:22:21','2019-11-11 09:22:21','',0,'https://demo.casethemes.net/consultio-tax/?post_type=service&amp;p=448',0,'service','',0),(645,1,'2019-11-13 07:57:41','2019-11-13 07:57:41','<h3>\n        We give the best Services \n        <i></i>\n    </h3>\n		There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.		\n	            		Sed do eiusmod tempor incididunt ut	            	\n	            		Labore et dolore magna aliqua	            	\n	            		Ut enim ad minim veniam quis nostrud	            	\n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-05-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-05\" title=\"theme-05\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-01-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-01\" title=\"theme-01\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-09-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-09\" title=\"theme-09\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-07-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-07\" title=\"theme-07\" />                    \n                Personal Care\n                Super Support\n                Guaranteed\n                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                    <p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br/></p>\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/success-fullfill/\">Success fullfill</a></h3>\n                                A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/startup-business/\">StartUp Business</a></h3>\n                                Photography is the core of everything we do, photography equipment, camera, photography.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/leadership-work/\">Leadership Work</a></h3>\n                                When there is a key element of your organisation that is limiting your people’s to engagement performance.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/business-growth/\">Business Growth</a></h3>\n                                Whatever the scenario, we tap into deep networks and innate understanding of each party’s priorities.                            \n        <ul id=\"menu-menu-services\"><li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-tax/service/seo-optimization/\">SEO Optimization</a></li>\n<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-tax/service/business-planning/\">Business Planning</a></li>\n<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-tax/service/program-management/\">Program management</a></li>\n<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-tax/service/chart-management/\">Chart management</a></li>\n<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-tax/service/market-research/\">Market Research</a></li>\n</ul>    \n	    <h3>\n        Contact    </h3>\n			    <ul>\n                    <li>\n            	   3111 West Allegheny Avenue\nPennsylvania 19132                \n           </li>\n                    <li>\n            	   1-982-782-5297<br />\n1-982-125-6378                \n           </li>\n                    <li>\n            	   support@consultio.com                \n           </li>\n            </ul>\n	    <h3>\n        Brochures    </h3>\n		View our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.		\n                <a href=\"#\">\n            	                                Download Brochure\n            	</a>\n                <a href=\"#\">\n            	                                Characteristics\n            	</a>\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Chart management','','publish','closed','closed','','chart-management','','','2019-11-13 07:57:41','2019-11-13 07:57:41','',0,'https://demo.casethemes.net/consultio-tax/?post_type=service&amp;p=645',0,'service','',0),(647,1,'2019-11-13 07:58:38','2019-11-13 07:58:38','<h3>\n        We give the best Services \n        <i></i>\n    </h3>\n		There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.		\n	            		Sed do eiusmod tempor incididunt ut	            	\n	            		Labore et dolore magna aliqua	            	\n	            		Ut enim ad minim veniam quis nostrud	            	\n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-05-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-05\" title=\"theme-05\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-01-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-01\" title=\"theme-01\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-09-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-09\" title=\"theme-09\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-07-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-07\" title=\"theme-07\" />                    \n                Personal Care\n                Super Support\n                Guaranteed\n                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                    <p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br/></p>\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/success-fullfill/\">Success fullfill</a></h3>\n                                A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/startup-business/\">StartUp Business</a></h3>\n                                Photography is the core of everything we do, photography equipment, camera, photography.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/leadership-work/\">Leadership Work</a></h3>\n                                When there is a key element of your organisation that is limiting your people’s to engagement performance.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/business-growth/\">Business Growth</a></h3>\n                                Whatever the scenario, we tap into deep networks and innate understanding of each party’s priorities.                            \n        <ul id=\"menu-menu-services\"><li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-tax/service/seo-optimization/\">SEO Optimization</a></li>\n<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-tax/service/business-planning/\">Business Planning</a></li>\n<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-tax/service/program-management/\">Program management</a></li>\n<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-tax/service/chart-management/\">Chart management</a></li>\n<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-tax/service/market-research/\">Market Research</a></li>\n</ul>    \n	    <h3>\n        Contact    </h3>\n			    <ul>\n                    <li>\n            	   3111 West Allegheny Avenue\nPennsylvania 19132                \n           </li>\n                    <li>\n            	   1-982-782-5297<br />\n1-982-125-6378                \n           </li>\n                    <li>\n            	   support@consultio.com                \n           </li>\n            </ul>\n	    <h3>\n        Brochures    </h3>\n		View our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.		\n                <a href=\"#\">\n            	                                Download Brochure\n            	</a>\n                <a href=\"#\">\n            	                                Characteristics\n            	</a>\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Strategy','','publish','closed','closed','','strategy','','','2019-11-13 07:58:38','2019-11-13 07:58:38','',0,'https://demo.casethemes.net/consultio-tax/?post_type=service&amp;p=647',0,'service','',0),(649,1,'2019-11-13 07:59:06','2019-11-13 07:59:06','<h3>\n        We give the best Services \n        <i></i>\n    </h3>\n		There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.		\n	            		Sed do eiusmod tempor incididunt ut	            	\n	            		Labore et dolore magna aliqua	            	\n	            		Ut enim ad minim veniam quis nostrud	            	\n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-05-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-05\" title=\"theme-05\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-01-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-01\" title=\"theme-01\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-09-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-09\" title=\"theme-09\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-07-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-07\" title=\"theme-07\" />                    \n                Personal Care\n                Super Support\n                Guaranteed\n                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                    <p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br/></p>\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/success-fullfill/\">Success fullfill</a></h3>\n                                A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/startup-business/\">StartUp Business</a></h3>\n                                Photography is the core of everything we do, photography equipment, camera, photography.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/leadership-work/\">Leadership Work</a></h3>\n                                When there is a key element of your organisation that is limiting your people’s to engagement performance.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/business-growth/\">Business Growth</a></h3>\n                                Whatever the scenario, we tap into deep networks and innate understanding of each party’s priorities.                            \n        <ul id=\"menu-menu-services\"><li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-tax/service/seo-optimization/\">SEO Optimization</a></li>\n<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-tax/service/business-planning/\">Business Planning</a></li>\n<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-tax/service/program-management/\">Program management</a></li>\n<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-tax/service/chart-management/\">Chart management</a></li>\n<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-tax/service/market-research/\">Market Research</a></li>\n</ul>    \n	    <h3>\n        Contact    </h3>\n			    <ul>\n                    <li>\n            	   3111 West Allegheny Avenue\nPennsylvania 19132                \n           </li>\n                    <li>\n            	   1-982-782-5297<br />\n1-982-125-6378                \n           </li>\n                    <li>\n            	   support@consultio.com                \n           </li>\n            </ul>\n	    <h3>\n        Brochures    </h3>\n		View our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.		\n                <a href=\"#\">\n            	                                Download Brochure\n            	</a>\n                <a href=\"#\">\n            	                                Characteristics\n            	</a>\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Program management','','publish','closed','closed','','program-management','','','2019-11-13 07:59:06','2019-11-13 07:59:06','',0,'https://demo.casethemes.net/consultio-tax/?post_type=service&amp;p=649',0,'service','',0),(651,1,'2019-11-13 08:00:23','2019-11-13 08:00:23','<h3>\n        We give the best Services \n        <i></i>\n    </h3>\n		There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.		\n	            		Sed do eiusmod tempor incididunt ut	            	\n	            		Labore et dolore magna aliqua	            	\n	            		Ut enim ad minim veniam quis nostrud	            	\n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-05-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-05\" title=\"theme-05\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-01-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-01\" title=\"theme-01\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-09-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-09\" title=\"theme-09\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-07-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-07\" title=\"theme-07\" />                    \n                Personal Care\n                Super Support\n                Guaranteed\n                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                    <p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br/></p>\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/success-fullfill/\">Success fullfill</a></h3>\n                                A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/startup-business/\">StartUp Business</a></h3>\n                                Photography is the core of everything we do, photography equipment, camera, photography.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/leadership-work/\">Leadership Work</a></h3>\n                                When there is a key element of your organisation that is limiting your people’s to engagement performance.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/business-growth/\">Business Growth</a></h3>\n                                Whatever the scenario, we tap into deep networks and innate understanding of each party’s priorities.                            \n        <ul id=\"menu-menu-services\"><li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-tax/service/seo-optimization/\">SEO Optimization</a></li>\n<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-tax/service/business-planning/\">Business Planning</a></li>\n<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-tax/service/program-management/\">Program management</a></li>\n<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-tax/service/chart-management/\">Chart management</a></li>\n<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-tax/service/market-research/\">Market Research</a></li>\n</ul>    \n	    <h3>\n        Contact    </h3>\n			    <ul>\n                    <li>\n            	   3111 West Allegheny Avenue\nPennsylvania 19132                \n           </li>\n                    <li>\n            	   1-982-782-5297<br />\n1-982-125-6378                \n           </li>\n                    <li>\n            	   support@consultio.com                \n           </li>\n            </ul>\n	    <h3>\n        Brochures    </h3>\n		View our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.		\n                <a href=\"#\">\n            	                                Download Brochure\n            	</a>\n                <a href=\"#\">\n            	                                Characteristics\n            	</a>\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Business Planning','','publish','closed','closed','','business-planning','','','2019-11-13 08:00:23','2019-11-13 08:00:23','',0,'https://demo.casethemes.net/consultio-tax/?post_type=service&amp;p=651',0,'service','',0),(778,1,'2019-11-15 07:31:40','2019-11-15 07:31:40','Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem.','Black Suit','A collection of textile samples lay spread out on the table - Samsa was travelling salesman - and above it there hung a picture that he had recently cut out of an illustrated magazine and housed in a nice, gilded frame. It showed a lady fitted out with a fur hat and fur boa who sat upright, raising a heavy.','publish','open','closed','','black-suit','','','2021-03-26 19:43:17','2021-03-26 19:43:17','',0,'https://demo.casethemes.net/consultio-tax/?post_type=product&amp;p=778',0,'product','',2),(780,1,'2019-11-15 07:32:14','2019-11-15 07:32:14','Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem.','Black Shoes','A collection of textile samples lay spread out on the table - Samsa was travelling salesman - and above it there hung a picture that he had recently cut out of an illustrated magazine and housed in a nice, gilded frame. It showed a lady fitted out with a fur hat and fur boa who sat upright, raising a heavy.','publish','open','closed','','black-shoes','','','2021-03-26 19:43:17','2021-03-26 19:43:17','',0,'https://demo.casethemes.net/consultio-tax/?post_type=product&amp;p=780',0,'product','',0),(781,1,'2019-11-15 07:32:34','2019-11-15 07:32:34','Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem.','Black Dress','A collection of textile samples lay spread out on the table - Samsa was travelling salesman - and above it there hung a picture that he had recently cut out of an illustrated magazine and housed in a nice, gilded frame. It showed a lady fitted out with a fur hat and fur boa who sat upright, raising a heavy.','publish','open','closed','','black-dress','','','2021-03-26 19:43:17','2021-03-26 19:43:17','',0,'https://demo.casethemes.net/consultio-tax/?post_type=product&amp;p=781',0,'product','',0),(782,1,'2019-11-15 07:32:55','2019-11-15 07:32:55','Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem.','Black Blazer','A collection of textile samples lay spread out on the table - Samsa was travelling salesman - and above it there hung a picture that he had recently cut out of an illustrated magazine and housed in a nice, gilded frame. It showed a lady fitted out with a fur hat and fur boa who sat upright, raising a heavy.','publish','open','closed','','black-blazer','','','2021-03-26 19:43:17','2021-03-26 19:43:17','',0,'https://demo.casethemes.net/consultio-tax/?post_type=product&amp;p=782',0,'product','',0),(1831,1,'2019-12-04 07:26:30','2019-12-04 07:26:30','<h3>\n        We give the best Services \n        <i></i>\n    </h3>\n		There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.		\n	            		Sed do eiusmod tempor incididunt ut	            	\n	            		Labore et dolore magna aliqua	            	\n	            		Ut enim ad minim veniam quis nostrud	            	\n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-05-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-05\" title=\"theme-05\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-01-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-01\" title=\"theme-01\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-09-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-09\" title=\"theme-09\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-07-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-07\" title=\"theme-07\" />                    \n                Personal Care\n                Super Support\n                Guaranteed\n                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                    <p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br/></p>\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/success-fullfill/\">Success fullfill</a></h3>\n                                A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/startup-business/\">StartUp Business</a></h3>\n                                Photography is the core of everything we do, photography equipment, camera, photography.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/leadership-work/\">Leadership Work</a></h3>\n                                When there is a key element of your organisation that is limiting your people’s to engagement performance.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/business-growth/\">Business Growth</a></h3>\n                                Whatever the scenario, we tap into deep networks and innate understanding of each party’s priorities.                            \n        <ul id=\"menu-menu-services\"><li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-tax/service/seo-optimization/\">SEO Optimization</a></li>\n<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-tax/service/business-planning/\">Business Planning</a></li>\n<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-tax/service/program-management/\">Program management</a></li>\n<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-tax/service/chart-management/\">Chart management</a></li>\n<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-tax/service/market-research/\">Market Research</a></li>\n</ul>    \n	    <h3>\n        Contact    </h3>\n			    <ul>\n                    <li>\n            	   3111 West Allegheny Avenue\nPennsylvania 19132                \n           </li>\n                    <li>\n            	   1-982-782-5297<br />\n1-982-125-6378                \n           </li>\n                    <li>\n            	   support@consultio.com                \n           </li>\n            </ul>\n	    <h3>\n        Brochures    </h3>\n		View our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.		\n                <a href=\"#\">\n            	                                Download Brochure\n            	</a>\n                <a href=\"#\">\n            	                                Characteristics\n            	</a>\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Business Growth','','publish','closed','closed','','business-growth','','','2019-12-04 07:26:30','2019-12-04 07:26:30','',0,'https://demo.casethemes.net/consultio-tax/?post_type=service&amp;p=1831',0,'service','',0),(1833,1,'2019-12-04 07:27:00','2019-12-04 07:27:00','<h3>\n        We give the best Services \n        <i></i>\n    </h3>\n		There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.		\n	            		Sed do eiusmod tempor incididunt ut	            	\n	            		Labore et dolore magna aliqua	            	\n	            		Ut enim ad minim veniam quis nostrud	            	\n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-05-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-05\" title=\"theme-05\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-01-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-01\" title=\"theme-01\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-09-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-09\" title=\"theme-09\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-07-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-07\" title=\"theme-07\" />                    \n                Personal Care\n                Super Support\n                Guaranteed\n                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                    <p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br/></p>\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/success-fullfill/\">Success fullfill</a></h3>\n                                A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/startup-business/\">StartUp Business</a></h3>\n                                Photography is the core of everything we do, photography equipment, camera, photography.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/leadership-work/\">Leadership Work</a></h3>\n                                When there is a key element of your organisation that is limiting your people’s to engagement performance.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/business-growth/\">Business Growth</a></h3>\n                                Whatever the scenario, we tap into deep networks and innate understanding of each party’s priorities.                            \n        <ul id=\"menu-menu-services\"><li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-tax/service/seo-optimization/\">SEO Optimization</a></li>\n<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-tax/service/business-planning/\">Business Planning</a></li>\n<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-tax/service/program-management/\">Program management</a></li>\n<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-tax/service/chart-management/\">Chart management</a></li>\n<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-tax/service/market-research/\">Market Research</a></li>\n</ul>    \n	    <h3>\n        Contact    </h3>\n			    <ul>\n                    <li>\n            	   3111 West Allegheny Avenue\nPennsylvania 19132                \n           </li>\n                    <li>\n            	   1-982-782-5297<br />\n1-982-125-6378                \n           </li>\n                    <li>\n            	   support@consultio.com                \n           </li>\n            </ul>\n	    <h3>\n        Brochures    </h3>\n		View our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.		\n                <a href=\"#\">\n            	                                Download Brochure\n            	</a>\n                <a href=\"#\">\n            	                                Characteristics\n            	</a>\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Leadership Work','','publish','closed','closed','','leadership-work','','','2019-12-04 07:27:00','2019-12-04 07:27:00','',0,'https://demo.casethemes.net/consultio-tax/?post_type=service&amp;p=1833',0,'service','',0),(1835,1,'2019-12-04 07:27:42','2019-12-04 07:27:42','<h3>\n        We give the best Services \n        <i></i>\n    </h3>\n		There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.		\n	            		Sed do eiusmod tempor incididunt ut	            	\n	            		Labore et dolore magna aliqua	            	\n	            		Ut enim ad minim veniam quis nostrud	            	\n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-05-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-05\" title=\"theme-05\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-01-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-01\" title=\"theme-01\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-09-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-09\" title=\"theme-09\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-07-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-07\" title=\"theme-07\" />                    \n                Personal Care\n                Super Support\n                Guaranteed\n                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                    <p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br/></p>\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/success-fullfill/\">Success fullfill</a></h3>\n                                A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/startup-business/\">StartUp Business</a></h3>\n                                Photography is the core of everything we do, photography equipment, camera, photography.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/leadership-work/\">Leadership Work</a></h3>\n                                When there is a key element of your organisation that is limiting your people’s to engagement performance.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/business-growth/\">Business Growth</a></h3>\n                                Whatever the scenario, we tap into deep networks and innate understanding of each party’s priorities.                            \n        <ul id=\"menu-menu-services\"><li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-tax/service/seo-optimization/\">SEO Optimization</a></li>\n<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-tax/service/business-planning/\">Business Planning</a></li>\n<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-tax/service/program-management/\">Program management</a></li>\n<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-tax/service/chart-management/\">Chart management</a></li>\n<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-tax/service/market-research/\">Market Research</a></li>\n</ul>    \n	    <h3>\n        Contact    </h3>\n			    <ul>\n                    <li>\n            	   3111 West Allegheny Avenue\nPennsylvania 19132                \n           </li>\n                    <li>\n            	   1-982-782-5297<br />\n1-982-125-6378                \n           </li>\n                    <li>\n            	   support@consultio.com                \n           </li>\n            </ul>\n	    <h3>\n        Brochures    </h3>\n		View our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.		\n                <a href=\"#\">\n            	                                Download Brochure\n            	</a>\n                <a href=\"#\">\n            	                                Characteristics\n            	</a>\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','StartUp Business','','publish','closed','closed','','startup-business','','','2019-12-04 07:27:42','2019-12-04 07:27:42','',0,'https://demo.casethemes.net/consultio-tax/?post_type=service&amp;p=1835',0,'service','',0),(1837,1,'2019-12-04 07:28:57','2019-12-04 07:28:57','<h3>\n        We give the best Services \n        <i></i>\n    </h3>\n		There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.		\n	            		Sed do eiusmod tempor incididunt ut	            	\n	            		Labore et dolore magna aliqua	            	\n	            		Ut enim ad minim veniam quis nostrud	            	\n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-05-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-05\" title=\"theme-05\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-01-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-01\" title=\"theme-01\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-09-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-09\" title=\"theme-09\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-07-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-07\" title=\"theme-07\" />                    \n                Personal Care\n                Super Support\n                Guaranteed\n                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                    <p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br/></p>\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/success-fullfill/\">Success fullfill</a></h3>\n                                A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/startup-business/\">StartUp Business</a></h3>\n                                Photography is the core of everything we do, photography equipment, camera, photography.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/leadership-work/\">Leadership Work</a></h3>\n                                When there is a key element of your organisation that is limiting your people’s to engagement performance.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/business-growth/\">Business Growth</a></h3>\n                                Whatever the scenario, we tap into deep networks and innate understanding of each party’s priorities.                            \n        <ul id=\"menu-menu-services\"><li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-tax/service/seo-optimization/\">SEO Optimization</a></li>\n<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-tax/service/business-planning/\">Business Planning</a></li>\n<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-tax/service/program-management/\">Program management</a></li>\n<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-tax/service/chart-management/\">Chart management</a></li>\n<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-tax/service/market-research/\">Market Research</a></li>\n</ul>    \n	    <h3>\n        Contact    </h3>\n			    <ul>\n                    <li>\n            	   3111 West Allegheny Avenue\nPennsylvania 19132                \n           </li>\n                    <li>\n            	   1-982-782-5297<br />\n1-982-125-6378                \n           </li>\n                    <li>\n            	   support@consultio.com                \n           </li>\n            </ul>\n	    <h3>\n        Brochures    </h3>\n		View our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.		\n                <a href=\"#\">\n            	                                Download Brochure\n            	</a>\n                <a href=\"#\">\n            	                                Characteristics\n            	</a>\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Success fullfill','','publish','closed','closed','','success-fullfill','','','2019-12-04 07:28:57','2019-12-04 07:28:57','',0,'https://demo.casethemes.net/consultio-tax/?post_type=service&amp;p=1837',0,'service','',0),(1947,1,'2019-12-05 07:37:51','2019-12-05 07:37:51','<h3>\n        We give the best Services \n        <i></i>\n    </h3>\n		There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.		\n	            		Sed do eiusmod tempor incididunt ut	            	\n	            		Labore et dolore magna aliqua	            	\n	            		Ut enim ad minim veniam quis nostrud	            	\n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-05-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-05\" title=\"theme-05\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-01-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-01\" title=\"theme-01\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-09-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-09\" title=\"theme-09\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-07-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-07\" title=\"theme-07\" />                    \n                Personal Care\n                Super Support\n                Guaranteed\n                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                    <p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br/></p>\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/success-fullfill/\">Success fullfill</a></h3>\n                                A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/startup-business/\">StartUp Business</a></h3>\n                                Photography is the core of everything we do, photography equipment, camera, photography.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/leadership-work/\">Leadership Work</a></h3>\n                                When there is a key element of your organisation that is limiting your people’s to engagement performance.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/business-growth/\">Business Growth</a></h3>\n                                Whatever the scenario, we tap into deep networks and innate understanding of each party’s priorities.                            \n        <ul id=\"menu-menu-services\"><li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-tax/service/seo-optimization/\">SEO Optimization</a></li>\n<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-tax/service/business-planning/\">Business Planning</a></li>\n<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-tax/service/program-management/\">Program management</a></li>\n<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-tax/service/chart-management/\">Chart management</a></li>\n<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-tax/service/market-research/\">Market Research</a></li>\n</ul>    \n	    <h3>\n        Contact    </h3>\n			    <ul>\n                    <li>\n            	   3111 West Allegheny Avenue\nPennsylvania 19132                \n           </li>\n                    <li>\n            	   1-982-782-5297<br />\n1-982-125-6378                \n           </li>\n                    <li>\n            	   support@consultio.com                \n           </li>\n            </ul>\n	    <h3>\n        Brochures    </h3>\n		View our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.		\n                <a href=\"#\">\n            	                                Download Brochure\n            	</a>\n                <a href=\"#\">\n            	                                Characteristics\n            	</a>\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Succession Planning','','publish','closed','closed','','succession-planning','','','2019-12-05 07:37:51','2019-12-05 07:37:51','',0,'https://demo.casethemes.net/consultio-tax/?post_type=service&amp;p=1947',0,'service','',0),(1949,1,'2019-12-05 07:38:18','2019-12-05 07:38:18','<h3>\n        We give the best Services \n        <i></i>\n    </h3>\n		There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.		\n	            		Sed do eiusmod tempor incididunt ut	            	\n	            		Labore et dolore magna aliqua	            	\n	            		Ut enim ad minim veniam quis nostrud	            	\n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-05-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-05\" title=\"theme-05\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-01-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-01\" title=\"theme-01\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-09-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-09\" title=\"theme-09\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-07-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-07\" title=\"theme-07\" />                    \n                Personal Care\n                Super Support\n                Guaranteed\n                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                    <p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br/></p>\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/success-fullfill/\">Success fullfill</a></h3>\n                                A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/startup-business/\">StartUp Business</a></h3>\n                                Photography is the core of everything we do, photography equipment, camera, photography.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/leadership-work/\">Leadership Work</a></h3>\n                                When there is a key element of your organisation that is limiting your people’s to engagement performance.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/business-growth/\">Business Growth</a></h3>\n                                Whatever the scenario, we tap into deep networks and innate understanding of each party’s priorities.                            \n        <ul id=\"menu-menu-services\"><li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-tax/service/seo-optimization/\">SEO Optimization</a></li>\n<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-tax/service/business-planning/\">Business Planning</a></li>\n<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-tax/service/program-management/\">Program management</a></li>\n<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-tax/service/chart-management/\">Chart management</a></li>\n<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-tax/service/market-research/\">Market Research</a></li>\n</ul>    \n	    <h3>\n        Contact    </h3>\n			    <ul>\n                    <li>\n            	   3111 West Allegheny Avenue\nPennsylvania 19132                \n           </li>\n                    <li>\n            	   1-982-782-5297<br />\n1-982-125-6378                \n           </li>\n                    <li>\n            	   support@consultio.com                \n           </li>\n            </ul>\n	    <h3>\n        Brochures    </h3>\n		View our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.		\n                <a href=\"#\">\n            	                                Download Brochure\n            	</a>\n                <a href=\"#\">\n            	                                Characteristics\n            	</a>\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Commertial Law','','publish','closed','closed','','commertial-law','','','2019-12-05 07:38:18','2019-12-05 07:38:18','',0,'https://demo.casethemes.net/consultio-tax/?post_type=service&amp;p=1949',0,'service','',0),(1951,1,'2019-12-05 07:38:45','2019-12-05 07:38:45','<h3>\n        We give the best Services \n        <i></i>\n    </h3>\n		There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.		\n	            		Sed do eiusmod tempor incididunt ut	            	\n	            		Labore et dolore magna aliqua	            	\n	            		Ut enim ad minim veniam quis nostrud	            	\n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-05-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-05\" title=\"theme-05\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-01-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-01\" title=\"theme-01\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-09-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-09\" title=\"theme-09\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-07-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-07\" title=\"theme-07\" />                    \n                Personal Care\n                Super Support\n                Guaranteed\n                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                    <p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br/></p>\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/success-fullfill/\">Success fullfill</a></h3>\n                                A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/startup-business/\">StartUp Business</a></h3>\n                                Photography is the core of everything we do, photography equipment, camera, photography.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/leadership-work/\">Leadership Work</a></h3>\n                                When there is a key element of your organisation that is limiting your people’s to engagement performance.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/business-growth/\">Business Growth</a></h3>\n                                Whatever the scenario, we tap into deep networks and innate understanding of each party’s priorities.                            \n        <ul id=\"menu-menu-services\"><li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-tax/service/seo-optimization/\">SEO Optimization</a></li>\n<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-tax/service/business-planning/\">Business Planning</a></li>\n<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-tax/service/program-management/\">Program management</a></li>\n<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-tax/service/chart-management/\">Chart management</a></li>\n<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-tax/service/market-research/\">Market Research</a></li>\n</ul>    \n	    <h3>\n        Contact    </h3>\n			    <ul>\n                    <li>\n            	   3111 West Allegheny Avenue\nPennsylvania 19132                \n           </li>\n                    <li>\n            	   1-982-782-5297<br />\n1-982-125-6378                \n           </li>\n                    <li>\n            	   support@consultio.com                \n           </li>\n            </ul>\n	    <h3>\n        Brochures    </h3>\n		View our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.		\n                <a href=\"#\">\n            	                                Download Brochure\n            	</a>\n                <a href=\"#\">\n            	                                Characteristics\n            	</a>\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Securitization Law','','publish','closed','closed','','securitization-law','','','2019-12-05 07:38:45','2019-12-05 07:38:45','',0,'https://demo.casethemes.net/consultio-tax/?post_type=service&amp;p=1951',0,'service','',0),(2625,1,'2019-12-04 01:25:29','2019-12-04 01:25:29','<h3>\n        We give the best Services \n        <i></i>\n    </h3>\n		There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.		\n	            		Sed do eiusmod tempor incididunt ut	            	\n	            		Labore et dolore magna aliqua	            	\n	            		Ut enim ad minim veniam quis nostrud	            	\n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-05-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-05\" title=\"theme-05\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-01-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-01\" title=\"theme-01\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-09-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-09\" title=\"theme-09\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-07-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-07\" title=\"theme-07\" />                    \n                Personal Care\n                Super Support\n                Guaranteed\n                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                    <p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br/></p>\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/success-fullfill/\">Success fullfill</a></h3>\n                                A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/startup-business/\">StartUp Business</a></h3>\n                                Photography is the core of everything we do, photography equipment, camera, photography.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/leadership-work/\">Leadership Work</a></h3>\n                                When there is a key element of your organisation that is limiting your people’s to engagement performance.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/business-growth/\">Business Growth</a></h3>\n                                Whatever the scenario, we tap into deep networks and innate understanding of each party’s priorities.                            \n        <ul id=\"menu-menu-services\"><li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-tax/service/seo-optimization/\">SEO Optimization</a></li>\n<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-tax/service/business-planning/\">Business Planning</a></li>\n<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-tax/service/program-management/\">Program management</a></li>\n<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-tax/service/chart-management/\">Chart management</a></li>\n<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-tax/service/market-research/\">Market Research</a></li>\n</ul>    \n	    <h3>\n                Contact    </h3>\n			    <ul>\n                    <li>\n            	   3111 West Allegheny Avenue\nPennsylvania 19132                \n           </li>\n                    <li>\n            	   1-982-782-5297<br />\n1-982-125-6378                \n           </li>\n                    <li>\n            	   support@consultio.com                \n           </li>\n            </ul>\n	    <h3>\n                Brochures    </h3>\n		View our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.		\n                <a href=\"#\">\n            	                                Download Brochure\n            	</a>\n                <a href=\"#\">\n            	                                Characteristics\n            	</a>\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Setup and Training','','publish','closed','closed','','setup-and-training','','','2019-12-04 01:25:29','2019-12-04 01:25:29','',0,'https://demo.casethemes.net/consultio-tax/?post_type=service&amp;p=2625',0,'service','',0),(2627,1,'2019-12-04 01:26:57','2019-12-04 01:26:57','<h3>\n        We give the best Services \n        <i></i>\n    </h3>\n		There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.		\n	            		Sed do eiusmod tempor incididunt ut	            	\n	            		Labore et dolore magna aliqua	            	\n	            		Ut enim ad minim veniam quis nostrud	            	\n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-05-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-05\" title=\"theme-05\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-01-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-01\" title=\"theme-01\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-09-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-09\" title=\"theme-09\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-07-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-07\" title=\"theme-07\" />                    \n                Personal Care\n                Super Support\n                Guaranteed\n                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                    <p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br/></p>\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/success-fullfill/\">Success fullfill</a></h3>\n                                A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/startup-business/\">StartUp Business</a></h3>\n                                Photography is the core of everything we do, photography equipment, camera, photography.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/leadership-work/\">Leadership Work</a></h3>\n                                When there is a key element of your organisation that is limiting your people’s to engagement performance.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/business-growth/\">Business Growth</a></h3>\n                                Whatever the scenario, we tap into deep networks and innate understanding of each party’s priorities.                            \n        <ul id=\"menu-menu-services\"><li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-tax/service/seo-optimization/\">SEO Optimization</a></li>\n<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-tax/service/business-planning/\">Business Planning</a></li>\n<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-tax/service/program-management/\">Program management</a></li>\n<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-tax/service/chart-management/\">Chart management</a></li>\n<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-tax/service/market-research/\">Market Research</a></li>\n</ul>    \n	    <h3>\n                Contact    </h3>\n			    <ul>\n                    <li>\n            	   3111 West Allegheny Avenue\nPennsylvania 19132                \n           </li>\n                    <li>\n            	   1-982-782-5297<br />\n1-982-125-6378                \n           </li>\n                    <li>\n            	   support@consultio.com                \n           </li>\n            </ul>\n	    <h3>\n                Brochures    </h3>\n		View our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.		\n                <a href=\"#\">\n            	                                Download Brochure\n            	</a>\n                <a href=\"#\">\n            	                                Characteristics\n            	</a>\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Legal Assessment','','publish','closed','closed','','legal-assessment','','','2019-12-04 01:26:57','2019-12-04 01:26:57','',0,'https://demo.casethemes.net/consultio-tax/?post_type=service&amp;p=2627',0,'service','',0),(2629,1,'2019-12-04 01:28:34','2019-12-04 01:28:34','<h3>\n        We give the best Services \n        <i></i>\n    </h3>\n		There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.		\n	            		Sed do eiusmod tempor incididunt ut	            	\n	            		Labore et dolore magna aliqua	            	\n	            		Ut enim ad minim veniam quis nostrud	            	\n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-05-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-05\" title=\"theme-05\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-01-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-01\" title=\"theme-01\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-09-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-09\" title=\"theme-09\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-07-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-07\" title=\"theme-07\" />                    \n                Personal Care\n                Super Support\n                Guaranteed\n                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                    <p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br/></p>\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/success-fullfill/\">Success fullfill</a></h3>\n                                A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/startup-business/\">StartUp Business</a></h3>\n                                Photography is the core of everything we do, photography equipment, camera, photography.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/leadership-work/\">Leadership Work</a></h3>\n                                When there is a key element of your organisation that is limiting your people’s to engagement performance.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/business-growth/\">Business Growth</a></h3>\n                                Whatever the scenario, we tap into deep networks and innate understanding of each party’s priorities.                            \n        <ul id=\"menu-menu-services\"><li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-tax/service/seo-optimization/\">SEO Optimization</a></li>\n<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-tax/service/business-planning/\">Business Planning</a></li>\n<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-tax/service/program-management/\">Program management</a></li>\n<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-tax/service/chart-management/\">Chart management</a></li>\n<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-tax/service/market-research/\">Market Research</a></li>\n</ul>    \n	    <h3>\n                Contact    </h3>\n			    <ul>\n                    <li>\n            	   3111 West Allegheny Avenue\nPennsylvania 19132                \n           </li>\n                    <li>\n            	   1-982-782-5297<br />\n1-982-125-6378                \n           </li>\n                    <li>\n            	   support@consultio.com                \n           </li>\n            </ul>\n	    <h3>\n                Brochures    </h3>\n		View our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.		\n                <a href=\"#\">\n            	                                Download Brochure\n            	</a>\n                <a href=\"#\">\n            	                                Characteristics\n            	</a>\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Legal Analytics','','publish','closed','closed','','legal-analytics','','','2019-12-04 01:28:34','2019-12-04 01:28:34','',0,'https://demo.casethemes.net/consultio-tax/?post_type=service&amp;p=2629',0,'service','',0),(91,1,'2019-11-01 08:53:47','2019-11-01 08:53:47','<div class=\"input-filled\">[text* your-name placeholder \"Your name*\"]</div>\n<div class=\"input-filled\">[email* your-email placeholder \"Your mail*\"]</div>\n<div class=\"input-filled\">[text* your-phone placeholder \"Phone*\"]</div>\n<div class=\"input-filled\">[select* your-subject \"Subject\" \"Success fullfill\" \"StartUp business\" \"Leadership work\" \"Business Growth\"]</div>\n<div class=\"input-filled\"><button type=\"submit\" class=\"wpcf7-submit btn btn-block\"><i class=\"fac fac-check-circle space-right\"></i>Consult today</button></div>\n1\nConsultio \"[your-subject]\"\nConsultio <casethemes.net@gmail.com>\ncasethemes.net@gmail.com\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Consultio (https://demo.casethemes.net/consultio-tax)\nReply-To: [your-email]\n\n\n\n1\nConsultio \"[your-subject]\"\nConsultio <casethemes.net@gmail.com>\n[your-email]\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Consultio (https://demo.casethemes.net/consultio-tax)\nReply-To: casethemes.net@gmail.com\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','Main Contact Form','','publish','closed','closed','','contact-form-1','','','2019-11-01 08:53:47','2019-11-01 08:53:47','',0,'https://demo.casethemes.net/consultio-tax/?post_type=wpcf7_contact_form&amp;p=91',0,'wpcf7_contact_form','',0),(1615,1,'2019-12-02 09:04:21','2019-12-02 09:04:21','<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\"><label>First name*</label>[text* your-name placeholder \"Type your first name\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\"><label>Last name*</label>[text* your-name placeholder \"Type your last name\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\"><label>Select a subject to get help*</label>[select* your-subject \"Select a subject\" \"Success fullfill\" \"StartUp business\" \"Leadership work\" \"Business Growth\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\"><label>Your mail address*</label>[email* your-email placeholder \"Type mail address\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-12\"><label>Message*</label>[textarea* your-message placeholder \"Type message...\"]</div>\n	<div class=\"input-filled col-12\"><button type=\"submit\" class=\"wpcf7-submit btn\"><i class=\"fac fac-cloud-upload-alt space-right\"></i>Submit now</button></div>\n</div>\n1\nCstrio \"[your-subject]\"\nCstrio <casethemes.net@gmail.com>\ncasethemes.net@gmail.com\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Cstrio (https://demo.casethemes.net/consultio-tax)\nReply-To: [your-email]\n\n\n\n1\nCstrio \"[your-subject]\"\nCstrio <casethemes.net@gmail.com>\n[your-email]\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Cstrio (https://demo.casethemes.net/consultio-tax)\nReply-To: casethemes.net@gmail.com\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','FAQ','','publish','closed','closed','','main-contact-form_copy','','','2019-12-02 09:04:21','2019-12-02 09:04:21','',0,'https://demo.casethemes.net/consultio-tax/?post_type=wpcf7_contact_form&amp;p=1615',0,'wpcf7_contact_form','',0),(1953,1,'2019-12-05 07:40:11','2019-12-05 07:40:11','<h3>\n        We give the best Services \n        <i></i>\n    </h3>\n		There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.		\n	            		Sed do eiusmod tempor incididunt ut	            	\n	            		Labore et dolore magna aliqua	            	\n	            		Ut enim ad minim veniam quis nostrud	            	\n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-05-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-05\" title=\"theme-05\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-01-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-01\" title=\"theme-01\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-09-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-09\" title=\"theme-09\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-07-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-07\" title=\"theme-07\" />                    \n                Personal Care\n                Super Support\n                Guaranteed\n                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                    <p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br/></p>\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/success-fullfill/\">Success fullfill</a></h3>\n                                A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/startup-business/\">StartUp Business</a></h3>\n                                Photography is the core of everything we do, photography equipment, camera, photography.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/leadership-work/\">Leadership Work</a></h3>\n                                When there is a key element of your organisation that is limiting your people’s to engagement performance.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/business-growth/\">Business Growth</a></h3>\n                                Whatever the scenario, we tap into deep networks and innate understanding of each party’s priorities.                            \n        <ul id=\"menu-menu-services\"><li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-tax/service/seo-optimization/\">SEO Optimization</a></li>\n<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-tax/service/business-planning/\">Business Planning</a></li>\n<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-tax/service/program-management/\">Program management</a></li>\n<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-tax/service/chart-management/\">Chart management</a></li>\n<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-tax/service/market-research/\">Market Research</a></li>\n</ul>    \n	    <h3>\n        Contact    </h3>\n			    <ul>\n                    <li>\n            	   3111 West Allegheny Avenue\nPennsylvania 19132                \n           </li>\n                    <li>\n            	   1-982-782-5297<br />\n1-982-125-6378                \n           </li>\n                    <li>\n            	   support@consultio.com                \n           </li>\n            </ul>\n	    <h3>\n        Brochures    </h3>\n		View our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.		\n                <a href=\"#\">\n            	                                Download Brochure\n            	</a>\n                <a href=\"#\">\n            	                                Characteristics\n            	</a>\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Counsel Services','','publish','closed','closed','','counsel-services','','','2019-12-05 07:40:11','2019-12-05 07:40:11','',0,'https://demo.casethemes.net/consultio-tax/?post_type=service&amp;p=1953',0,'service','',0),(2166,1,'2019-12-07 14:54:38','2019-12-07 14:54:38','<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\">[text* first-name placeholder \"First name *\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\">[text* last-name placeholder \"Last name *\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\">[email* your-email placeholder \"Your mail *\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\">[text* your-phone placeholder \"Phone number *\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\">[text* your-web-address placeholder \"Web address *\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\">[select* your-service \"Services\" \"Success fullfill\" \"StartUp Business\" \"Business Growth\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-12\">[textarea* your-message placeholder \"Message...\"]</div>\n	<div class=\"input-filled col-12\"><button type=\"submit\" class=\"wpcf7-submit btn btn-block\"><i class=\"fac fac-arrow-circle-right space-right\"></i>Send now</button></div>\n</div>\n1\nConsultio\nConsultio <casethemes.net@gmail.com>\ncasethemes.net@gmail.com\nFrom: [first-name] [last-name] <[your-email]>\nName: [first-name] [last-name]\nPhone: [your-phone]\nService: [your-service]\nWeb Address: [your-web-address]\nMessage Body:\n[your-message]\n\n\n-- \nThis e-mail was sent from a contact form on Consultio (https://demo.casethemes.net/consultio-tax)\nReply-To: [your-email]\n\n\n\n1\nConsultio\nConsultio <casethemes.net@gmail.com>\n[your-email]\nFrom: [first-name] [last-name] <[your-email]>\nName: [first-name] [last-name]\nPhone: [your-phone]\nService: [your-service]\nWeb Address: [your-web-address]\nMessage Body:\n[your-message]\n\n\n-- \nThis e-mail was sent from a contact form on Consultio (https://demo.casethemes.net/consultio-tax)\nReply-To: casethemes.net@gmail.com\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','Home Contact Form 1','','publish','closed','closed','','main-contact-form_copy-2','','','2019-12-07 14:54:38','2019-12-07 14:54:38','',0,'https://demo.casethemes.net/consultio-tax/?post_type=wpcf7_contact_form&amp;p=2166',0,'wpcf7_contact_form','',0),(2758,1,'2019-12-17 09:26:24','2019-12-17 09:26:24','<h3>\n        We give the best Services \n        <i></i>\n    </h3>\n		There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.		\n	            		Sed do eiusmod tempor incididunt ut	            	\n	            		Labore et dolore magna aliqua	            	\n	            		Ut enim ad minim veniam quis nostrud	            	\n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-05-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-05\" title=\"theme-05\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-01-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-01\" title=\"theme-01\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-09-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-09\" title=\"theme-09\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-07-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-07\" title=\"theme-07\" />                    \n                Personal Care\n                Super Support\n                Guaranteed\n                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                    <p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br/></p>\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/success-fullfill/\">Success fullfill</a></h3>\n                                A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/startup-business/\">StartUp Business</a></h3>\n                                Photography is the core of everything we do, photography equipment, camera, photography.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/leadership-work/\">Leadership Work</a></h3>\n                                When there is a key element of your organisation that is limiting your people’s to engagement performance.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/business-growth/\">Business Growth</a></h3>\n                                Whatever the scenario, we tap into deep networks and innate understanding of each party’s priorities.                            \n        <ul id=\"menu-menu-services\"><li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-tax/service/seo-optimization/\">SEO Optimization</a></li>\n<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-tax/service/business-planning/\">Business Planning</a></li>\n<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-tax/service/program-management/\">Program management</a></li>\n<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-tax/service/chart-management/\">Chart management</a></li>\n<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-tax/service/market-research/\">Market Research</a></li>\n</ul>    \n	    <h3>\n                Contact    </h3>\n			    <ul>\n                    <li>\n            	   3111 West Allegheny Avenue\nPennsylvania 19132                \n           </li>\n                    <li>\n            	   1-982-782-5297<br />\n1-982-125-6378                \n           </li>\n                    <li>\n            	   support@consultio.com                \n           </li>\n            </ul>\n	    <h3>\n                Brochures    </h3>\n		View our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.		\n                <a href=\"#\">\n            	                                Download Brochure\n            	</a>\n                <a href=\"#\">\n            	                                Characteristics\n            	</a>\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Business Strategy','','publish','closed','closed','','business-strategy','','','2019-12-17 09:26:24','2019-12-17 09:26:24','',0,'https://demo.casethemes.net/consultio-tax/?post_type=service&amp;p=2758',0,'service','',0),(2763,1,'2019-12-17 09:33:49','2019-12-17 09:33:49','<h3>\n        We give the best Services \n        <i></i>\n    </h3>\n		There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.		\n	            		Sed do eiusmod tempor incididunt ut	            	\n	            		Labore et dolore magna aliqua	            	\n	            		Ut enim ad minim veniam quis nostrud	            	\n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-05-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-05\" title=\"theme-05\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-01-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-01\" title=\"theme-01\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-09-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-09\" title=\"theme-09\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-07-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-07\" title=\"theme-07\" />                    \n                Personal Care\n                Super Support\n                Guaranteed\n                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                    <p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br/></p>\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/success-fullfill/\">Success fullfill</a></h3>\n                                A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/startup-business/\">StartUp Business</a></h3>\n                                Photography is the core of everything we do, photography equipment, camera, photography.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/leadership-work/\">Leadership Work</a></h3>\n                                When there is a key element of your organisation that is limiting your people’s to engagement performance.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/business-growth/\">Business Growth</a></h3>\n                                Whatever the scenario, we tap into deep networks and innate understanding of each party’s priorities.                            \n        <ul id=\"menu-menu-services\"><li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-tax/service/seo-optimization/\">SEO Optimization</a></li>\n<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-tax/service/business-planning/\">Business Planning</a></li>\n<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-tax/service/program-management/\">Program management</a></li>\n<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-tax/service/chart-management/\">Chart management</a></li>\n<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-tax/service/market-research/\">Market Research</a></li>\n</ul>    \n	    <h3>\n                Contact    </h3>\n			    <ul>\n                    <li>\n            	   3111 West Allegheny Avenue\nPennsylvania 19132                \n           </li>\n                    <li>\n            	   1-982-782-5297<br />\n1-982-125-6378                \n           </li>\n                    <li>\n            	   support@consultio.com                \n           </li>\n            </ul>\n	    <h3>\n                Brochures    </h3>\n		View our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.		\n                <a href=\"#\">\n            	                                Download Brochure\n            	</a>\n                <a href=\"#\">\n            	                                Characteristics\n            	</a>\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Brand & Package','','publish','closed','closed','','brand-package','','','2019-12-17 09:33:49','2019-12-17 09:33:49','',0,'https://demo.casethemes.net/consultio-tax/?post_type=service&amp;p=2763',0,'service','',0),(2765,1,'2019-12-17 09:34:21','2019-12-17 09:34:21','<h3>\n        We give the best Services \n        <i></i>\n    </h3>\n		There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.		\n	            		Sed do eiusmod tempor incididunt ut	            	\n	            		Labore et dolore magna aliqua	            	\n	            		Ut enim ad minim veniam quis nostrud	            	\n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-05-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-05\" title=\"theme-05\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-01-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-01\" title=\"theme-01\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-09-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-09\" title=\"theme-09\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-07-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-07\" title=\"theme-07\" />                    \n                Personal Care\n                Super Support\n                Guaranteed\n                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                    <p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br/></p>\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/success-fullfill/\">Success fullfill</a></h3>\n                                A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/startup-business/\">StartUp Business</a></h3>\n                                Photography is the core of everything we do, photography equipment, camera, photography.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/leadership-work/\">Leadership Work</a></h3>\n                                When there is a key element of your organisation that is limiting your people’s to engagement performance.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/business-growth/\">Business Growth</a></h3>\n                                Whatever the scenario, we tap into deep networks and innate understanding of each party’s priorities.                            \n        <ul id=\"menu-menu-services\"><li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-tax/service/seo-optimization/\">SEO Optimization</a></li>\n<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-tax/service/business-planning/\">Business Planning</a></li>\n<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-tax/service/program-management/\">Program management</a></li>\n<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-tax/service/chart-management/\">Chart management</a></li>\n<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-tax/service/market-research/\">Market Research</a></li>\n</ul>    \n	    <h3>\n                Contact    </h3>\n			    <ul>\n                    <li>\n            	   3111 West Allegheny Avenue\nPennsylvania 19132                \n           </li>\n                    <li>\n            	   1-982-782-5297<br />\n1-982-125-6378                \n           </li>\n                    <li>\n            	   support@consultio.com                \n           </li>\n            </ul>\n	    <h3>\n                Brochures    </h3>\n		View our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.		\n                <a href=\"#\">\n            	                                Download Brochure\n            	</a>\n                <a href=\"#\">\n            	                                Characteristics\n            	</a>\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Web Desiging','','publish','closed','closed','','web-desiging','','','2019-12-17 09:34:21','2019-12-17 09:34:21','',0,'https://demo.casethemes.net/consultio-tax/?post_type=service&amp;p=2765',0,'service','',0),(2780,1,'2019-12-14 10:11:54','2019-12-14 10:11:54','<h3>\n        We give the best Services \n        <i></i>\n    </h3>\n		There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.		\n	            		Sed do eiusmod tempor incididunt ut	            	\n	            		Labore et dolore magna aliqua	            	\n	            		Ut enim ad minim veniam quis nostrud	            	\n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-05-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-05\" title=\"theme-05\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-01-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-01\" title=\"theme-01\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-09-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-09\" title=\"theme-09\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-07-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-07\" title=\"theme-07\" />                    \n                Personal Care\n                Super Support\n                Guaranteed\n                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                    <p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br/></p>\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/success-fullfill/\">Success fullfill</a></h3>\n                                A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/startup-business/\">StartUp Business</a></h3>\n                                Photography is the core of everything we do, photography equipment, camera, photography.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/leadership-work/\">Leadership Work</a></h3>\n                                When there is a key element of your organisation that is limiting your people’s to engagement performance.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/business-growth/\">Business Growth</a></h3>\n                                Whatever the scenario, we tap into deep networks and innate understanding of each party’s priorities.                            \n        <ul id=\"menu-menu-services\"><li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-tax/service/seo-optimization/\">SEO Optimization</a></li>\n<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-tax/service/business-planning/\">Business Planning</a></li>\n<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-tax/service/program-management/\">Program management</a></li>\n<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-tax/service/chart-management/\">Chart management</a></li>\n<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-tax/service/market-research/\">Market Research</a></li>\n</ul>    \n	    <h3>\n                Contact    </h3>\n			    <ul>\n                    <li>\n            	   3111 West Allegheny Avenue\nPennsylvania 19132                \n           </li>\n                    <li>\n            	   1-982-782-5297<br />\n1-982-125-6378                \n           </li>\n                    <li>\n            	   support@consultio.com                \n           </li>\n            </ul>\n	    <h3>\n                Brochures    </h3>\n		View our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.		\n                <a href=\"#\">\n            	                                Download Brochure\n            	</a>\n                <a href=\"#\">\n            	                                Characteristics\n            	</a>\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Business Consulting','','publish','closed','closed','','business-consulting','','','2019-12-14 10:11:54','2019-12-14 10:11:54','',0,'https://demo.casethemes.net/consultio-tax/?post_type=service&amp;p=2780',0,'service','',0),(2785,1,'2019-12-15 10:12:40','2019-12-15 10:12:40','<h3>\n        We give the best Services \n        <i></i>\n    </h3>\n		There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.		\n	            		Sed do eiusmod tempor incididunt ut	            	\n	            		Labore et dolore magna aliqua	            	\n	            		Ut enim ad minim veniam quis nostrud	            	\n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-05-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-05\" title=\"theme-05\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-01-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-01\" title=\"theme-01\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-09-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-09\" title=\"theme-09\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-07-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-07\" title=\"theme-07\" />                    \n                Personal Care\n                Super Support\n                Guaranteed\n                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                    <p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br/></p>\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/success-fullfill/\">Success fullfill</a></h3>\n                                A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/startup-business/\">StartUp Business</a></h3>\n                                Photography is the core of everything we do, photography equipment, camera, photography.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/leadership-work/\">Leadership Work</a></h3>\n                                When there is a key element of your organisation that is limiting your people’s to engagement performance.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/business-growth/\">Business Growth</a></h3>\n                                Whatever the scenario, we tap into deep networks and innate understanding of each party’s priorities.                            \n        <ul id=\"menu-menu-services\"><li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-tax/service/seo-optimization/\">SEO Optimization</a></li>\n<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-tax/service/business-planning/\">Business Planning</a></li>\n<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-tax/service/program-management/\">Program management</a></li>\n<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-tax/service/chart-management/\">Chart management</a></li>\n<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-tax/service/market-research/\">Market Research</a></li>\n</ul>    \n	    <h3>\n                Contact    </h3>\n			    <ul>\n                    <li>\n            	   3111 West Allegheny Avenue\nPennsylvania 19132                \n           </li>\n                    <li>\n            	   1-982-782-5297<br />\n1-982-125-6378                \n           </li>\n                    <li>\n            	   support@consultio.com                \n           </li>\n            </ul>\n	    <h3>\n                Brochures    </h3>\n		View our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.		\n                <a href=\"#\">\n            	                                Download Brochure\n            	</a>\n                <a href=\"#\">\n            	                                Characteristics\n            	</a>\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Government policy','','publish','closed','closed','','government-policy','','','2019-12-15 10:12:40','2019-12-15 10:12:40','',0,'https://demo.casethemes.net/consultio-tax/?post_type=service&amp;p=2785',0,'service','',0),(2787,1,'2019-12-16 10:13:23','2019-12-16 10:13:23','<h3>\n        We give the best Services \n        <i></i>\n    </h3>\n		There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.		\n	            		Sed do eiusmod tempor incididunt ut	            	\n	            		Labore et dolore magna aliqua	            	\n	            		Ut enim ad minim veniam quis nostrud	            	\n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-05-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-05\" title=\"theme-05\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-01-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-01\" title=\"theme-01\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-09-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-09\" title=\"theme-09\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-07-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-07\" title=\"theme-07\" />                    \n                Personal Care\n                Super Support\n                Guaranteed\n                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                    <p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br/></p>\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/success-fullfill/\">Success fullfill</a></h3>\n                                A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/startup-business/\">StartUp Business</a></h3>\n                                Photography is the core of everything we do, photography equipment, camera, photography.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/leadership-work/\">Leadership Work</a></h3>\n                                When there is a key element of your organisation that is limiting your people’s to engagement performance.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-tax/service/business-growth/\">Business Growth</a></h3>\n                                Whatever the scenario, we tap into deep networks and innate understanding of each party’s priorities.                            \n        <ul id=\"menu-menu-services\"><li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-tax/service/seo-optimization/\">SEO Optimization</a></li>\n<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-tax/service/business-planning/\">Business Planning</a></li>\n<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-tax/service/program-management/\">Program management</a></li>\n<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-tax/service/chart-management/\">Chart management</a></li>\n<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-tax/service/market-research/\">Market Research</a></li>\n</ul>    \n	    <h3>\n                Contact    </h3>\n			    <ul>\n                    <li>\n            	   3111 West Allegheny Avenue\nPennsylvania 19132                \n           </li>\n                    <li>\n            	   1-982-782-5297<br />\n1-982-125-6378                \n           </li>\n                    <li>\n            	   support@consultio.com                \n           </li>\n            </ul>\n	    <h3>\n                Brochures    </h3>\n		View our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.		\n                <a href=\"#\">\n            	                                Download Brochure\n            	</a>\n                <a href=\"#\">\n            	                                Characteristics\n            	</a>\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Creative idea','','publish','closed','closed','','creative-idea','','','2019-12-16 10:13:23','2019-12-16 10:13:23','',0,'https://demo.casethemes.net/consultio-tax/?post_type=service&amp;p=2787',0,'service','',0),(2840,1,'2019-12-18 02:33:52','2019-12-18 02:33:52','<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\"><label>First name<span>*</span></label>[text* your-name placeholder \"Type your first name\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\"><label>Last name<span>*</span></label>[text* your-name placeholder \"Type your last name\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\"><label>Select a subject to get help<span>*</span></label>[select* your-subject \"Select a subject\" \"Success fullfill\" \"StartUp business\" \"Leadership work\" \"Business Growth\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\"><label>Your mail address<span>*</span></label>[email* your-email placeholder \"Type mail address\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-12\"><label>Message<span>*</span></label>[textarea* your-message placeholder \"Type message...\"]</div>\n	<div class=\"input-filled col-12\"><button type=\"submit\" class=\"wpcf7-submit btn\"><i class=\"fac fac-cloud-upload-alt space-right\"></i>Submit now</button></div>\n</div>\n1\nCstrio \"[your-subject]\"\nCstrio <casethemes.net@gmail.com>\ncasethemes.net@gmail.com\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Cstrio (https://demo.casethemes.net/consultio-tax)\nReply-To: [your-email]\n\n\n\n1\nCstrio \"[your-subject]\"\nCstrio <casethemes.net@gmail.com>\n[your-email]\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Cstrio (https://demo.casethemes.net/consultio-tax)\nReply-To: casethemes.net@gmail.com\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','Home Contact Form 4','','publish','closed','closed','','faq_copy','','','2019-12-18 02:33:52','2019-12-18 02:33:52','',0,'https://demo.casethemes.net/consultio-tax/?post_type=wpcf7_contact_form&amp;p=2840',0,'wpcf7_contact_form','',0),(3167,1,'2020-01-21 17:34:49','2020-01-21 17:34:49','<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\"><label><i class=\"fac fac-user\"></i>First name *</label>[text* your-name placeholder \"Jhon\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\"><label><i class=\"fac fac-user\"></i>Last name *</label>[text* your-name placeholder \"Doe\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\"><label><i class=\"fac fac-envelope\"></i>Your mail *</label>[email* your-email placeholder \"info@gmail.com\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\"><label><i class=\"fac fac-phone-alt\"></i>Phone number *</label>[text* your-phone placeholder \"Your number\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-12\"><label><i class=\"fac fac-pen\"></i>Message...</label>[textarea* your-message placeholder \"Type your message...\"]</div>\n	<div class=\"input-filled col-12\"><button type=\"submit\" class=\"wpcf7-submit btn btn-block\"><i class=\"fac fac-arrow-circle-right space-right\"></i>Make an appionment</button></div>\n</div>\n1\nCstrio \"[your-subject]\"\nCstrio <casethemes.net@gmail.com>\ncasethemes.net@gmail.com\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Cstrio (https://demo.casethemes.net/consultio-tax)\nReply-To: [your-email]\n\n\n\n1\nCstrio \"[your-subject]\"\nCstrio <casethemes.net@gmail.com>\n[your-email]\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Cstrio (https://demo.casethemes.net/consultio-tax)\nReply-To: casethemes.net@gmail.com\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','Home Contact Form 5','','publish','closed','closed','','faq_copy-2','','','2020-01-21 17:34:49','2020-01-21 17:34:49','',0,'https://demo.casethemes.net/consultio-tax/?post_type=wpcf7_contact_form&amp;p=3167',0,'wpcf7_contact_form','',0),(3823,1,'2020-02-08 15:20:31','2020-02-08 15:20:31','<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\"><label>Name (required)</label>[text* your-name placeholder \"Your name*\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\"><label>Email adress (required)</label>[email* your-email placeholder \"Mail*\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\"><label>Phone (optional)</label>[text* your-name placeholder \"Phone*\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\"><label>Subject (required)</label>[select* your-subject \"Subject*\" \"Success fullfill\" \"StartUp business\" \"Leadership work\" \"Business Growth\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-12\"><label>Your message</label>[textarea* your-message placeholder \"Type message*\"]</div>\n	<div class=\"input-filled col-12\"><button type=\"submit\" class=\"wpcf7-submit btn\"><i class=\"fac fac-check-circle space-right\"></i>Send message</button></div>\n</div>\n1\nCstrio \"[your-subject]\"\nCstrio <casethemes.net@gmail.com>\ncasethemes.net@gmail.com\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Cstrio (https://demo.casethemes.net/consultio-tax)\nReply-To: [your-email]\n\n\n\n1\nCstrio \"[your-subject]\"\nCstrio <casethemes.net@gmail.com>\n[your-email]\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Cstrio (https://demo.casethemes.net/consultio-tax)\nReply-To: casethemes.net@gmail.com\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','Contact Version 2','','publish','closed','closed','','faq_copy-3','','','2020-02-08 15:20:31','2020-02-08 15:20:31','',0,'https://demo.casethemes.net/consultio-tax/?post_type=wpcf7_contact_form&amp;p=3823',0,'wpcf7_contact_form','',0),(3851,1,'2020-02-08 16:16:07','2020-02-08 16:16:07','<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\">[text* first-name placeholder \"First name *\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\">[text* last-name placeholder \"Last name *\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\">[email* your-email placeholder \"Your mail *\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\">[text* your-phone placeholder \"Phone number *\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-12\">[textarea* your-message placeholder \"Message...\"]</div>\n	<div class=\"input-filled col-12\"><button type=\"submit\" class=\"wpcf7-submit btn btn-block\"><i class=\"fac fac-arrow-circle-right space-right\"></i>Send now</button></div>\n</div>\n1\nConsultio\nConsultio <casethemes.net@gmail.com>\ncasethemes.net@gmail.com\nFrom: [first-name] [last-name] <[your-email]>\nName: [first-name] [last-name]\nPhone: [your-phone]\nService: [your-service]\nWeb Address: [your-web-address]\nMessage Body:\n[your-message]\n\n\n-- \nThis e-mail was sent from a contact form on Consultio (https://demo.casethemes.net/consultio-tax)\nReply-To: [your-email]\n\n\n\n1\nConsultio\nConsultio <casethemes.net@gmail.com>\n[your-email]\nFrom: [first-name] [last-name] <[your-email]>\nName: [first-name] [last-name]\nPhone: [your-phone]\nService: [your-service]\nWeb Address: [your-web-address]\nMessage Body:\n[your-message]\n\n\n-- \nThis e-mail was sent from a contact form on Consultio (https://demo.casethemes.net/consultio-tax)\nReply-To: casethemes.net@gmail.com\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','Contact Version 4','','publish','closed','closed','','home-contact-form-1_copy','','','2020-02-08 16:16:07','2020-02-08 16:16:07','',0,'https://demo.casethemes.net/consultio-tax/?post_type=wpcf7_contact_form&amp;p=3851',0,'wpcf7_contact_form','',0),(3985,1,'2021-03-26 19:41:39','2021-03-26 19:41:39',' ','','','publish','closed','closed','','3985','','','2021-03-26 19:41:39','2021-03-26 19:41:39','',0,'https://sa7717.dev34.info/2021/03/26/3985/',24,'nav_menu_item','',0),(3986,1,'2021-03-26 19:41:39','2021-03-26 19:41:39','','FAQs','','publish','closed','closed','','faqs','','','2021-03-26 19:41:39','2021-03-26 19:41:39','',0,'https://sa7717.dev34.info/2021/03/26/faqs/',27,'nav_menu_item','',0),(3987,1,'2021-03-26 19:41:39','2021-03-26 19:41:39','','Our Team','','publish','closed','closed','','our-team','','','2021-03-26 19:41:39','2021-03-26 19:41:39','',0,'https://sa7717.dev34.info/2021/03/26/our-team/',12,'nav_menu_item','',0),(3988,1,'2021-03-26 19:41:39','2021-03-26 19:41:39','','About us','','publish','closed','closed','','about-us-2','','','2021-03-26 19:41:39','2021-03-26 19:41:39','',0,'https://sa7717.dev34.info/2021/03/26/about-us-2/',7,'nav_menu_item','',0),(3989,1,'2021-03-26 19:41:39','2021-03-26 19:41:39','','Contact us','','publish','closed','closed','','contact-us','','','2021-03-26 19:41:39','2021-03-26 19:41:39','',0,'https://sa7717.dev34.info/2021/03/26/contact-us/',28,'nav_menu_item','',0),(3990,1,'2021-03-26 19:41:39','2021-03-26 19:41:39',' ','','','publish','closed','closed','','3990','','','2021-03-26 19:41:39','2021-03-26 19:41:39','',0,'https://sa7717.dev34.info/2021/03/26/3990/',2,'nav_menu_item','',0),(3991,1,'2021-03-26 19:41:39','2021-03-26 19:41:39',' ','','','publish','closed','closed','','3991','','','2021-03-26 19:41:39','2021-03-26 19:41:39','',0,'https://sa7717.dev34.info/2021/03/26/3991/',4,'nav_menu_item','',0),(3992,1,'2021-03-26 19:41:39','2021-03-26 19:41:39','','About us','','publish','closed','closed','','about-us-3','','','2021-03-26 19:41:39','2021-03-26 19:41:39','',0,'https://sa7717.dev34.info/2021/03/26/about-us-3/',5,'nav_menu_item','',0),(3993,1,'2021-03-26 19:41:39','2021-03-26 19:41:39',' ','','','publish','closed','closed','','3993','','','2021-03-26 19:41:39','2021-03-26 19:41:39','',0,'https://sa7717.dev34.info/2021/03/26/3993/',8,'nav_menu_item','',0),(3994,1,'2021-03-26 19:41:39','2021-03-26 19:41:39','','Blog','','publish','closed','closed','','blog-2','','','2021-03-26 19:41:39','2021-03-26 19:41:39','',0,'https://sa7717.dev34.info/2021/03/26/blog-2/',43,'nav_menu_item','',0),(3995,1,'2021-03-26 19:41:39','2021-03-26 19:41:39',' ','','','publish','closed','closed','','3995','','','2021-03-26 19:41:39','2021-03-26 19:41:39','',0,'https://sa7717.dev34.info/2021/03/26/3995/',49,'nav_menu_item','',0),(3996,1,'2021-03-26 19:41:39','2021-03-26 19:41:39','','Blog Grid','','publish','closed','closed','','blog-grid','','','2021-03-26 19:41:39','2021-03-26 19:41:39','',0,'https://sa7717.dev34.info/2021/03/26/blog-grid/',45,'nav_menu_item','',0),(3997,1,'2021-03-26 19:41:39','2021-03-26 19:41:39',' ','','','publish','closed','closed','','3997','','','2021-03-26 19:41:39','2021-03-26 19:41:39','',0,'https://sa7717.dev34.info/2021/03/26/3997/',44,'nav_menu_item','',0),(3998,1,'2021-03-26 19:41:39','2021-03-26 19:41:39','','Without Sidebar','','publish','closed','closed','','without-sidebar','','','2021-03-26 19:41:39','2021-03-26 19:41:39','',0,'https://sa7717.dev34.info/2021/03/26/without-sidebar/',47,'nav_menu_item','',0),(3999,1,'2021-03-26 19:41:39','2021-03-26 19:41:39','','Right Sidebar','','publish','closed','closed','','right-sidebar','','','2021-03-26 19:41:39','2021-03-26 19:41:39','',0,'https://sa7717.dev34.info/2021/03/26/right-sidebar/',48,'nav_menu_item','',0),(4000,1,'2021-03-26 19:41:39','2021-03-26 19:41:39','','Left Sidebar','','publish','closed','closed','','left-sidebar','','','2021-03-26 19:41:39','2021-03-26 19:41:39','',0,'https://sa7717.dev34.info/2021/03/26/left-sidebar/',46,'nav_menu_item','',0),(4001,1,'2021-03-26 19:41:39','2021-03-26 19:41:39','','Without Sidebar','','publish','closed','closed','','without-sidebar-2','','','2021-03-26 19:41:39','2021-03-26 19:41:39','',0,'https://sa7717.dev34.info/2021/03/26/without-sidebar-2/',51,'nav_menu_item','',0),(4002,1,'2021-03-26 19:41:40','2021-03-26 19:41:40','','Left Sidebar','','publish','closed','closed','','left-sidebar-2','','','2021-03-26 19:41:40','2021-03-26 19:41:40','',0,'https://sa7717.dev34.info/2021/03/26/left-sidebar-2/',50,'nav_menu_item','',0),(4003,1,'2021-03-26 19:41:40','2021-03-26 19:41:40','','Right Sidebar','','publish','closed','closed','','right-sidebar-2','','','2021-03-26 19:41:40','2021-03-26 19:41:40','',0,'https://sa7717.dev34.info/2021/03/26/right-sidebar-2/',52,'nav_menu_item','',0),(4004,1,'2021-03-26 19:41:40','2021-03-26 19:41:40','','Blog Details','','publish','closed','closed','','blog-details','','','2021-03-26 19:41:40','2021-03-26 19:41:40','',0,'https://sa7717.dev34.info/2021/03/26/blog-details/',53,'nav_menu_item','',0),(4005,1,'2021-03-26 19:41:40','2021-03-26 19:41:40','','Right Sidebar','','publish','closed','closed','','right-sidebar-3','','','2021-03-26 19:41:40','2021-03-26 19:41:40','',0,'https://sa7717.dev34.info/2021/03/26/right-sidebar-3/',56,'nav_menu_item','',0),(4006,1,'2021-03-26 19:41:40','2021-03-26 19:41:40','','Left Sidebar','','publish','closed','closed','','left-sidebar-3','','','2021-03-26 19:41:40','2021-03-26 19:41:40','',0,'https://sa7717.dev34.info/2021/03/26/left-sidebar-3/',54,'nav_menu_item','',0),(4007,1,'2021-03-26 19:41:40','2021-03-26 19:41:40','','Without Sidebar','','publish','closed','closed','','without-sidebar-3','','','2021-03-26 19:41:40','2021-03-26 19:41:40','',0,'https://sa7717.dev34.info/2021/03/26/without-sidebar-3/',55,'nav_menu_item','',0),(4008,1,'2021-03-26 19:41:40','2021-03-26 19:41:40',' ','','','publish','closed','closed','','4008','','','2021-03-26 19:41:40','2021-03-26 19:41:40','',0,'https://sa7717.dev34.info/2021/03/26/4008/',17,'nav_menu_item','',0),(4009,1,'2021-03-26 19:41:40','2021-03-26 19:41:40',' ','','','publish','closed','closed','','4009','','','2021-03-26 19:41:40','2021-03-26 19:41:40','',0,'https://sa7717.dev34.info/2021/03/26/4009/',19,'nav_menu_item','',0),(4010,1,'2021-03-26 19:41:40','2021-03-26 19:41:40',' ','','','publish','closed','closed','','4010','','','2021-03-26 19:41:40','2021-03-26 19:41:40','',0,'https://sa7717.dev34.info/2021/03/26/4010/',4,'nav_menu_item','',0),(4011,1,'2021-03-26 19:41:40','2021-03-26 19:41:40',' ','','','publish','closed','closed','','4011','','','2021-03-26 19:41:40','2021-03-26 19:41:40','',0,'https://sa7717.dev34.info/2021/03/26/4011/',3,'nav_menu_item','',0),(4012,1,'2021-03-26 19:41:40','2021-03-26 19:41:40','','Services','','publish','closed','closed','','services-2','','','2021-03-26 19:41:40','2021-03-26 19:41:40','',0,'https://sa7717.dev34.info/2021/03/26/services-2/',2,'nav_menu_item','',0),(4013,1,'2021-03-26 19:41:40','2021-03-26 19:41:40',' ','','','publish','closed','closed','','4013','','','2021-03-26 19:41:40','2021-03-26 19:41:40','',0,'https://sa7717.dev34.info/2021/03/26/4013/',41,'nav_menu_item','',0),(4014,1,'2021-03-26 19:41:40','2021-03-26 19:41:40',' ','','','publish','closed','closed','','4014','','','2021-03-26 19:41:40','2021-03-26 19:41:40','',0,'https://sa7717.dev34.info/2021/03/26/4014/',40,'nav_menu_item','',0),(4015,1,'2021-03-26 19:41:40','2021-03-26 19:41:40','','Portfolio','','publish','closed','closed','','portfolio','','','2021-03-26 19:41:40','2021-03-26 19:41:40','',0,'https://sa7717.dev34.info/2021/03/26/portfolio/',39,'nav_menu_item','',0),(4016,1,'2021-03-26 19:41:40','2021-03-26 19:41:40','','Service Details','','publish','closed','closed','','service-details','','','2021-03-26 19:41:40','2021-03-26 19:41:40','',0,'https://sa7717.dev34.info/2021/03/26/service-details/',5,'nav_menu_item','',0),(4017,1,'2021-03-26 19:41:40','2021-03-26 19:41:40','','Services','','publish','closed','closed','','services-3','','','2021-03-26 19:41:40','2021-03-26 19:41:40','',0,'https://sa7717.dev34.info/2021/03/26/services-3/',3,'nav_menu_item','',0),(4018,1,'2021-03-26 19:41:40','2021-03-26 19:41:40',' ','','','publish','closed','closed','','4018','','','2021-03-26 19:41:40','2021-03-26 19:41:40','',0,'https://sa7717.dev34.info/2021/03/26/4018/',7,'nav_menu_item','',0),(4019,1,'2021-03-26 19:41:40','2021-03-26 19:41:40','','News','','publish','closed','closed','','news','','','2021-03-26 19:41:40','2021-03-26 19:41:40','',0,'https://sa7717.dev34.info/2021/03/26/news/',9,'nav_menu_item','',0),(4020,1,'2021-03-26 19:41:40','2021-03-26 19:41:40','','Portfolio','','publish','closed','closed','','portfolio-2','','','2021-03-26 19:41:40','2021-03-26 19:41:40','',0,'https://sa7717.dev34.info/2021/03/26/portfolio-2/',10,'nav_menu_item','',0),(4021,1,'2021-03-26 19:41:40','2021-03-26 19:41:40','','Portfolio Details','','publish','closed','closed','','portfolio-details','','','2021-03-26 19:41:40','2021-03-26 19:41:40','',0,'https://sa7717.dev34.info/2021/03/26/portfolio-details/',42,'nav_menu_item','',0),(4022,1,'2021-03-26 19:41:40','2021-03-26 19:41:40',' ','','','publish','closed','closed','','4022','','','2021-03-26 19:41:40','2021-03-26 19:41:40','',0,'https://sa7717.dev34.info/2021/03/26/4022/',38,'nav_menu_item','',0),(4023,1,'2021-03-26 19:41:40','2021-03-26 19:41:40','','Products','','publish','closed','closed','','products','','','2021-03-26 19:41:40','2021-03-26 19:41:40','',0,'https://sa7717.dev34.info/2021/03/26/products/',35,'nav_menu_item','',0),(4024,1,'2021-03-26 19:41:40','2021-03-26 19:41:40',' ','','','publish','closed','closed','','4024','','','2021-03-26 19:41:40','2021-03-26 19:41:40','',0,'https://sa7717.dev34.info/2021/03/26/4024/',34,'nav_menu_item','',0),(4025,1,'2021-03-26 19:41:40','2021-03-26 19:41:40','','Wishlist','','publish','closed','closed','','wishlist','','','2021-03-26 19:41:40','2021-03-26 19:41:40','',0,'https://sa7717.dev34.info/2021/03/26/wishlist/',37,'nav_menu_item','',0),(4026,1,'2021-03-26 19:41:40','2021-03-26 19:41:40','','Product Details','','publish','closed','closed','','product-details','','','2021-03-26 19:41:40','2021-03-26 19:41:40','',0,'https://sa7717.dev34.info/2021/03/26/product-details/',36,'nav_menu_item','',0),(4027,1,'2021-03-26 19:41:40','2021-03-26 19:41:40',' ','','','publish','closed','closed','','4027','','','2021-03-26 19:41:40','2021-03-26 19:41:40','',0,'https://sa7717.dev34.info/2021/03/26/4027/',2,'nav_menu_item','',0),(4028,1,'2021-03-26 19:41:40','2021-03-26 19:41:40',' ','','','publish','closed','closed','','4028','','','2021-03-26 19:41:40','2021-03-26 19:41:40','',0,'https://sa7717.dev34.info/2021/03/26/4028/',3,'nav_menu_item','',0),(4029,1,'2021-03-26 19:41:40','2021-03-26 19:41:40',' ','','','publish','closed','closed','','4029','','','2021-03-26 19:41:40','2021-03-26 19:41:40','',0,'https://sa7717.dev34.info/2021/03/26/4029/',4,'nav_menu_item','',0),(4030,1,'2021-03-26 19:41:40','2021-03-26 19:41:40',' ','','','publish','closed','closed','','4030','','','2021-03-26 19:41:40','2021-03-26 19:41:40','',0,'https://sa7717.dev34.info/2021/03/26/4030/',1,'nav_menu_item','',0),(4031,1,'2021-03-26 19:41:40','2021-03-26 19:41:40',' ','','','publish','closed','closed','','4031','','','2021-03-26 19:41:40','2021-03-26 19:41:40','',0,'https://sa7717.dev34.info/2021/03/26/4031/',5,'nav_menu_item','',0),(4032,1,'2021-03-26 19:41:40','2021-03-26 19:41:40',' ','','','publish','closed','closed','','4032','','','2021-03-26 19:41:40','2021-03-26 19:41:40','',0,'https://sa7717.dev34.info/2021/03/26/4032/',18,'nav_menu_item','',0),(4033,1,'2021-03-26 19:41:40','2021-03-26 19:41:40','','Services','','publish','closed','closed','','services-4','','','2021-03-26 19:41:40','2021-03-26 19:41:40','',0,'https://sa7717.dev34.info/2021/03/26/services-4/',2,'nav_menu_item','',0),(4034,1,'2021-03-26 19:41:40','2021-03-26 19:41:40',' ','','','publish','closed','closed','','4034','','','2021-03-26 19:41:40','2021-03-26 19:41:40','',0,'https://sa7717.dev34.info/2021/03/26/4034/',4,'nav_menu_item','',0),(4035,1,'2021-03-26 19:41:40','2021-03-26 19:41:40','','Service Details','','publish','closed','closed','','service-details-2','','','2021-03-26 19:41:40','2021-03-26 19:41:40','',0,'https://sa7717.dev34.info/2021/03/26/service-details-2/',5,'nav_menu_item','',0),(4036,1,'2021-03-26 19:41:40','2021-03-26 19:41:40',' ','','','publish','closed','closed','','4036','','','2021-03-26 19:41:40','2021-03-26 19:41:40','',0,'https://sa7717.dev34.info/2021/03/26/4036/',3,'nav_menu_item','',0),(4037,1,'2021-03-26 19:41:40','2021-03-26 19:41:40','','About us','','publish','closed','closed','','about-us-4','','','2021-03-26 19:41:40','2021-03-26 19:41:40','',0,'https://sa7717.dev34.info/2021/03/26/about-us-4/',7,'nav_menu_item','',0),(4038,1,'2021-03-26 19:41:40','2021-03-26 19:41:40',' ','','','publish','closed','closed','','4038','','','2021-03-26 19:41:40','2021-03-26 19:41:40','',0,'https://sa7717.dev34.info/2021/03/26/4038/',27,'nav_menu_item','',0),(4039,1,'2021-03-26 19:41:40','2021-03-26 19:41:40',' ','','','publish','closed','closed','','4039','','','2021-03-26 19:41:40','2021-03-26 19:41:40','',0,'https://sa7717.dev34.info/2021/03/26/4039/',24,'nav_menu_item','',0),(4040,1,'2021-03-26 19:41:40','2021-03-26 19:41:40','','Our Team','','publish','closed','closed','','our-team-2','','','2021-03-26 19:41:40','2021-03-26 19:41:40','',0,'https://sa7717.dev34.info/2021/03/26/our-team-2/',12,'nav_menu_item','',0),(4041,1,'2021-03-26 19:41:40','2021-03-26 19:41:40',' ','','','publish','closed','closed','','4041','','','2021-03-26 19:41:40','2021-03-26 19:41:40','',0,'https://sa7717.dev34.info/2021/03/26/4041/',17,'nav_menu_item','',0),(4042,1,'2021-03-26 19:41:40','2021-03-26 19:41:40',' ','','','publish','closed','closed','','4042','','','2021-03-26 19:41:40','2021-03-26 19:41:40','',0,'https://sa7717.dev34.info/2021/03/26/4042/',18,'nav_menu_item','',0),(4043,1,'2021-03-26 19:41:40','2021-03-26 19:41:40',' ','','','publish','closed','closed','','4043','','','2021-03-26 19:41:40','2021-03-26 19:41:40','',0,'https://sa7717.dev34.info/2021/03/26/4043/',23,'nav_menu_item','',0),(4044,1,'2021-03-26 19:41:40','2021-03-26 19:41:40','','Blog','','publish','closed','closed','','blog-3','','','2021-03-26 19:41:40','2021-03-26 19:41:40','',0,'https://sa7717.dev34.info/2021/03/26/blog-3/',1,'nav_menu_item','',0),(4045,1,'2021-03-26 19:41:40','2021-03-26 19:41:40',' ','','','publish','closed','closed','','4045','','','2021-03-26 19:41:40','2021-03-26 19:41:40','',0,'https://sa7717.dev34.info/2021/03/26/4045/',7,'nav_menu_item','',0),(4046,1,'2021-03-26 19:41:40','2021-03-26 19:41:40',' ','','','publish','closed','closed','','4046','','','2021-03-26 19:41:40','2021-03-26 19:41:40','',0,'https://sa7717.dev34.info/2021/03/26/4046/',2,'nav_menu_item','',0),(4047,1,'2021-03-26 19:41:41','2021-03-26 19:41:41','','Left Sidebar','','publish','closed','closed','','left-sidebar-4','','','2021-03-26 19:41:41','2021-03-26 19:41:41','',0,'https://sa7717.dev34.info/2021/03/26/left-sidebar-4/',4,'nav_menu_item','',0),(4048,1,'2021-03-26 19:41:41','2021-03-26 19:41:41','','Right Sidebar','','publish','closed','closed','','right-sidebar-4','','','2021-03-26 19:41:41','2021-03-26 19:41:41','',0,'https://sa7717.dev34.info/2021/03/26/right-sidebar-4/',6,'nav_menu_item','',0),(4049,1,'2021-03-26 19:41:41','2021-03-26 19:41:41','','Blog Grid','','publish','closed','closed','','blog-grid-2','','','2021-03-26 19:41:41','2021-03-26 19:41:41','',0,'https://sa7717.dev34.info/2021/03/26/blog-grid-2/',3,'nav_menu_item','',0),(4050,1,'2021-03-26 19:41:41','2021-03-26 19:41:41','','Left Sidebar','','publish','closed','closed','','left-sidebar-5','','','2021-03-26 19:41:41','2021-03-26 19:41:41','',0,'https://sa7717.dev34.info/2021/03/26/left-sidebar-5/',8,'nav_menu_item','',0),(4051,1,'2021-03-26 19:41:41','2021-03-26 19:41:41','','Without Sidebar','','publish','closed','closed','','without-sidebar-4','','','2021-03-26 19:41:41','2021-03-26 19:41:41','',0,'https://sa7717.dev34.info/2021/03/26/without-sidebar-4/',9,'nav_menu_item','',0),(4052,1,'2021-03-26 19:41:41','2021-03-26 19:41:41','','Right Sidebar','','publish','closed','closed','','right-sidebar-5','','','2021-03-26 19:41:41','2021-03-26 19:41:41','',0,'https://sa7717.dev34.info/2021/03/26/right-sidebar-5/',10,'nav_menu_item','',0),(4053,1,'2021-03-26 19:41:41','2021-03-26 19:41:41','','Without Sidebar','','publish','closed','closed','','without-sidebar-5','','','2021-03-26 19:41:41','2021-03-26 19:41:41','',0,'https://sa7717.dev34.info/2021/03/26/without-sidebar-5/',5,'nav_menu_item','',0),(4054,1,'2021-03-26 19:41:41','2021-03-26 19:41:41','','Blog Details','','publish','closed','closed','','blog-details-2','','','2021-03-26 19:41:41','2021-03-26 19:41:41','',0,'https://sa7717.dev34.info/2021/03/26/blog-details-2/',11,'nav_menu_item','',0),(4055,1,'2021-03-26 19:41:41','2021-03-26 19:41:41','','Right Sidebar','','publish','closed','closed','','right-sidebar-6','','','2021-03-26 19:41:41','2021-03-26 19:41:41','',0,'https://sa7717.dev34.info/2021/03/26/right-sidebar-6/',14,'nav_menu_item','',0),(4056,1,'2021-03-26 19:41:41','2021-03-26 19:41:41','','Without Sidebar','','publish','closed','closed','','without-sidebar-6','','','2021-03-26 19:41:41','2021-03-26 19:41:41','',0,'https://sa7717.dev34.info/2021/03/26/without-sidebar-6/',13,'nav_menu_item','',0),(4057,1,'2021-03-26 19:41:41','2021-03-26 19:41:41','','Left Sidebar','','publish','closed','closed','','left-sidebar-6','','','2021-03-26 19:41:41','2021-03-26 19:41:41','',0,'https://sa7717.dev34.info/2021/03/26/left-sidebar-6/',12,'nav_menu_item','',0),(4058,1,'2021-03-26 19:41:41','2021-03-26 19:41:41',' ','','','publish','closed','closed','','4058','','','2021-03-26 19:41:41','2021-03-26 19:41:41','',0,'https://sa7717.dev34.info/2021/03/26/4058/',15,'nav_menu_item','',0),(4059,1,'2021-03-26 19:41:41','2021-03-26 19:41:41','','Portfolio','','publish','closed','closed','','portfolio-3','','','2021-03-26 19:41:41','2021-03-26 19:41:41','',0,'https://sa7717.dev34.info/2021/03/26/portfolio-3/',30,'nav_menu_item','',0),(4060,1,'2021-03-26 19:41:41','2021-03-26 19:41:41',' ','','','publish','closed','closed','','4060','','','2021-03-26 19:41:41','2021-03-26 19:41:41','',0,'https://sa7717.dev34.info/2021/03/26/4060/',32,'nav_menu_item','',0),(4061,1,'2021-03-26 19:41:41','2021-03-26 19:41:41',' ','','','publish','closed','closed','','4061','','','2021-03-26 19:41:41','2021-03-26 19:41:41','',0,'https://sa7717.dev34.info/2021/03/26/4061/',31,'nav_menu_item','',0),(4062,1,'2021-03-26 19:41:41','2021-03-26 19:41:41','','Portfolio Details','','publish','closed','closed','','portfolio-details-2','','','2021-03-26 19:41:41','2021-03-26 19:41:41','',0,'https://sa7717.dev34.info/2021/03/26/portfolio-details-2/',33,'nav_menu_item','',0),(4063,1,'2021-03-26 19:41:41','2021-03-26 19:41:41',' ','','','publish','closed','closed','','4063','','','2021-03-26 19:41:41','2021-03-26 19:41:41','',0,'https://sa7717.dev34.info/2021/03/26/4063/',16,'nav_menu_item','',0),(4064,1,'2021-03-26 19:41:41','2021-03-26 19:41:41',' ','','','publish','closed','closed','','4064','','','2021-03-26 19:41:41','2021-03-26 19:41:41','',0,'https://sa7717.dev34.info/2021/03/26/4064/',15,'nav_menu_item','',0),(4065,1,'2021-03-26 19:41:41','2021-03-26 19:41:41',' ','','','publish','closed','closed','','4065','','','2021-03-26 19:41:41','2021-03-26 19:41:41','',0,'https://sa7717.dev34.info/2021/03/26/4065/',14,'nav_menu_item','',0),(4066,1,'2021-03-26 19:41:41','2021-03-26 19:41:41',' ','','','publish','closed','closed','','4066','','','2021-03-26 19:41:41','2021-03-26 19:41:41','',0,'https://sa7717.dev34.info/2021/03/26/4066/',26,'nav_menu_item','',0),(4067,1,'2021-03-26 19:41:41','2021-03-26 19:41:41',' ','','','publish','closed','closed','','4067','','','2021-03-26 19:41:41','2021-03-26 19:41:41','',0,'https://sa7717.dev34.info/2021/03/26/4067/',22,'nav_menu_item','',0),(4068,1,'2021-03-26 19:41:41','2021-03-26 19:41:41',' ','','','publish','closed','closed','','4068','','','2021-03-26 19:41:41','2021-03-26 19:41:41','',0,'https://sa7717.dev34.info/2021/03/26/4068/',21,'nav_menu_item','',0),(4069,1,'2021-03-26 19:41:41','2021-03-26 19:41:41',' ','','','publish','closed','closed','','4069','','','2021-03-26 19:41:41','2021-03-26 19:41:41','',0,'https://sa7717.dev34.info/2021/03/26/4069/',20,'nav_menu_item','',0),(4070,1,'2021-03-26 19:41:41','2021-03-26 19:41:41',' ','','','publish','closed','closed','','4070','','','2021-03-26 19:41:41','2021-03-26 19:41:41','',0,'https://sa7717.dev34.info/2021/03/26/4070/',11,'nav_menu_item','',0),(4071,1,'2021-03-26 19:41:41','2021-03-26 19:41:41',' ','','','publish','closed','closed','','4071','','','2021-03-26 19:41:41','2021-03-26 19:41:41','',0,'https://sa7717.dev34.info/2021/03/26/4071/',10,'nav_menu_item','',0),(4072,1,'2021-03-26 19:41:41','2021-03-26 19:41:41',' ','','','publish','closed','closed','','4072','','','2021-03-26 19:41:41','2021-03-26 19:41:41','',0,'https://sa7717.dev34.info/2021/03/26/4072/',9,'nav_menu_item','',0),(4073,1,'2021-03-26 19:41:41','2021-03-26 19:41:41','','About v.1','','publish','closed','closed','','about-v-1','','','2021-03-26 19:41:41','2021-03-26 19:41:41','',0,'https://sa7717.dev34.info/2021/03/26/about-v-1/',8,'nav_menu_item','',0),(4074,1,'2021-03-26 19:41:41','2021-03-26 19:41:41','','Pricing v.1','','publish','closed','closed','','pricing-v-1','','','2021-03-26 19:41:41','2021-03-26 19:41:41','',0,'https://sa7717.dev34.info/2021/03/26/pricing-v-1/',25,'nav_menu_item','',0),(4075,1,'2021-03-26 19:41:41','2021-03-26 19:41:41','','Team v.1','','publish','closed','closed','','team-v-1','','','2021-03-26 19:41:41','2021-03-26 19:41:41','',0,'https://sa7717.dev34.info/2021/03/26/team-v-1/',13,'nav_menu_item','',0),(4076,1,'2021-03-26 19:41:41','2021-03-26 19:41:41','','Testimonials v.1','','publish','closed','closed','','testimonials-v-1','','','2021-03-26 19:41:41','2021-03-26 19:41:41','',0,'https://sa7717.dev34.info/2021/03/26/testimonials-v-1/',19,'nav_menu_item','',0),(4077,1,'2021-03-26 19:41:41','2021-03-26 19:41:41','','Contact v.1','','publish','closed','closed','','contact-v-1','','','2021-03-26 19:41:41','2021-03-26 19:41:41','',0,'https://sa7717.dev34.info/2021/03/26/contact-v-1/',16,'nav_menu_item','',0),(4078,1,'2021-03-26 19:41:41','2021-03-26 19:41:41',' ','','','publish','closed','closed','','4078','','','2021-03-26 19:41:41','2021-03-26 19:41:41','',0,'https://sa7717.dev34.info/2021/03/26/4078/',17,'nav_menu_item','',0),(4079,1,'2021-03-26 19:41:41','2021-03-26 19:41:41',' ','','','publish','closed','closed','','4079','','','2021-03-26 19:41:41','2021-03-26 19:41:41','',0,'https://sa7717.dev34.info/2021/03/26/4079/',18,'nav_menu_item','',0),(4080,1,'2021-03-26 19:41:41','2021-03-26 19:41:41',' ','','','publish','closed','closed','','4080','','','2021-03-26 19:41:41','2021-03-26 19:41:41','',0,'https://sa7717.dev34.info/2021/03/26/4080/',19,'nav_menu_item','',0),(4081,1,'2021-03-26 19:41:41','2021-03-26 19:41:41',' ','','','publish','closed','closed','','4081','','','2021-03-26 19:41:41','2021-03-26 19:41:41','',0,'https://sa7717.dev34.info/2021/03/26/4081/',16,'nav_menu_item','',0),(4082,1,'2021-03-26 19:41:41','2021-03-26 19:41:41',' ','','','publish','closed','closed','','4082','','','2021-03-26 19:41:41','2021-03-26 19:41:41','',0,'https://sa7717.dev34.info/2021/03/26/4082/',15,'nav_menu_item','',0),(4083,1,'2021-03-26 19:41:41','2021-03-26 19:41:41',' ','','','publish','closed','closed','','4083','','','2021-03-26 19:41:41','2021-03-26 19:41:41','',0,'https://sa7717.dev34.info/2021/03/26/4083/',14,'nav_menu_item','',0),(4084,1,'2021-03-26 19:41:41','2021-03-26 19:41:41',' ','','','publish','closed','closed','','4084','','','2021-03-26 19:41:41','2021-03-26 19:41:41','',0,'https://sa7717.dev34.info/2021/03/26/4084/',32,'nav_menu_item','',0),(4085,1,'2021-03-26 19:41:41','2021-03-26 19:41:41',' ','','','publish','closed','closed','','4085','','','2021-03-26 19:41:41','2021-03-26 19:41:41','',0,'https://sa7717.dev34.info/2021/03/26/4085/',31,'nav_menu_item','',0),(4086,1,'2021-03-26 19:41:41','2021-03-26 19:41:41',' ','','','publish','closed','closed','','4086','','','2021-03-26 19:41:41','2021-03-26 19:41:41','',0,'https://sa7717.dev34.info/2021/03/26/4086/',30,'nav_menu_item','',0),(4087,1,'2021-03-26 19:41:42','2021-03-26 19:41:42',' ','','','publish','closed','closed','','4087','','','2021-03-26 19:41:42','2021-03-26 19:41:42','',0,'https://sa7717.dev34.info/2021/03/26/4087/',26,'nav_menu_item','',0),(4088,1,'2021-03-26 19:41:42','2021-03-26 19:41:42',' ','','','publish','closed','closed','','4088','','','2021-03-26 19:41:42','2021-03-26 19:41:42','',0,'https://sa7717.dev34.info/2021/03/26/4088/',23,'nav_menu_item','',0),(4089,1,'2021-03-26 19:41:42','2021-03-26 19:41:42',' ','','','publish','closed','closed','','4089','','','2021-03-26 19:41:42','2021-03-26 19:41:42','',0,'https://sa7717.dev34.info/2021/03/26/4089/',22,'nav_menu_item','',0),(4090,1,'2021-03-26 19:41:42','2021-03-26 19:41:42',' ','','','publish','closed','closed','','4090','','','2021-03-26 19:41:42','2021-03-26 19:41:42','',0,'https://sa7717.dev34.info/2021/03/26/4090/',21,'nav_menu_item','',0),(4091,1,'2021-03-26 19:41:42','2021-03-26 19:41:42',' ','','','publish','closed','closed','','4091','','','2021-03-26 19:41:42','2021-03-26 19:41:42','',0,'https://sa7717.dev34.info/2021/03/26/4091/',11,'nav_menu_item','',0),(4092,1,'2021-03-26 19:41:42','2021-03-26 19:41:42',' ','','','publish','closed','closed','','4092','','','2021-03-26 19:41:42','2021-03-26 19:41:42','',0,'https://sa7717.dev34.info/2021/03/26/4092/',10,'nav_menu_item','',0),(4093,1,'2021-03-26 19:41:42','2021-03-26 19:41:42',' ','','','publish','closed','closed','','4093','','','2021-03-26 19:41:42','2021-03-26 19:41:42','',0,'https://sa7717.dev34.info/2021/03/26/4093/',9,'nav_menu_item','',0),(4094,1,'2021-03-26 19:41:42','2021-03-26 19:41:42','','About v.1','','publish','closed','closed','','about-v-1-2','','','2021-03-26 19:41:42','2021-03-26 19:41:42','',0,'https://sa7717.dev34.info/2021/03/26/about-v-1-2/',8,'nav_menu_item','',0),(4095,1,'2021-03-26 19:41:42','2021-03-26 19:41:42','','Contact v.1','','publish','closed','closed','','contact-v-1-2','','','2021-03-26 19:41:42','2021-03-26 19:41:42','',0,'https://sa7717.dev34.info/2021/03/26/contact-v-1-2/',29,'nav_menu_item','',0),(4096,1,'2021-03-26 19:41:42','2021-03-26 19:41:42','','Pricing v.1','','publish','closed','closed','','pricing-v-1-2','','','2021-03-26 19:41:42','2021-03-26 19:41:42','',0,'https://sa7717.dev34.info/2021/03/26/pricing-v-1-2/',25,'nav_menu_item','',0),(4097,1,'2021-03-26 19:41:42','2021-03-26 19:41:42','','Team v.1','','publish','closed','closed','','team-v-1-2','','','2021-03-26 19:41:42','2021-03-26 19:41:42','',0,'https://sa7717.dev34.info/2021/03/26/team-v-1-2/',13,'nav_menu_item','',0),(4098,1,'2021-03-26 19:41:42','2021-03-26 19:41:42','','Testimonials v.1','','publish','closed','closed','','testimonials-v-1-2','','','2021-03-26 19:41:42','2021-03-26 19:41:42','',0,'https://sa7717.dev34.info/2021/03/26/testimonials-v-1-2/',20,'nav_menu_item','',0),(4099,1,'2021-03-26 19:41:42','2021-03-26 19:41:42',' ','','','publish','closed','closed','','4099','','','2021-03-26 19:41:42','2021-03-26 19:41:42','',0,'https://sa7717.dev34.info/2021/03/26/4099/',29,'nav_menu_item','',0),(4100,1,'2021-03-26 19:47:00','2021-03-26 19:47:00','','Default Kit','','publish','closed','closed','','default-kit-2','','','2021-03-26 19:47:00','2021-03-26 19:47:00','',0,'https://sa7717.dev34.info/?elementor_library=default-kit-2',0,'elementor_library','',0),(4117,1,'2021-03-27 06:07:10','2021-03-27 06:07:10','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Testimonial                                \n	    <h3>\n                            <i></i>\n                        We have appreciated by our clients!                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/author-02.jpg\" width=\"92\" height=\"92\" alt=\"author-02\" title=\"author-02\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Maria Silverii                                    </h3>\n                                    CEO of Blue Illusion\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/author-01.jpg\" width=\"92\" height=\"92\" alt=\"author-01\" title=\"author-01\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Rebecca Leo                                     </h3>\n                                    Web Designer\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Blog                                \n	    <h3>\n                            <i></i>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 06:07:10','2021-03-27 06:07:10','',3193,'https://sa7717.dev34.info/?p=4117',0,'revision','',0),(4118,1,'2021-03-27 06:17:04','2021-03-27 06:17:04','','Screen Shot 2021-03-26 at 1.45.54 PM','','inherit','open','closed','','screen-shot-2021-03-26-at-1-45-54-pm','','','2021-03-27 06:17:04','2021-03-27 06:17:04','',0,'https://sa7717.dev34.info/wp-content/uploads/2021/03/Screen-Shot-2021-03-26-at-1.45.54-PM.png',0,'attachment','image/png',0),(4120,1,'2021-03-27 06:40:05','2021-03-27 06:40:05','','Screen Shot 2021-03-26 at 11.38.59 PM','','inherit','open','closed','','screen-shot-2021-03-26-at-11-38-59-pm','','','2021-03-27 06:40:05','2021-03-27 06:40:05','',0,'https://sa7717.dev34.info/wp-content/uploads/2021/03/Screen-Shot-2021-03-26-at-11.38.59-PM.png',0,'attachment','image/png',0),(4121,1,'2021-03-27 06:49:10','2021-03-27 06:49:10','','golden tee','','inherit','open','closed','','golden-tee','','','2021-03-27 06:49:10','2021-03-27 06:49:10','',0,'https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee.jpeg',0,'attachment','image/jpeg',0),(4122,1,'2021-03-27 06:53:12','2021-03-27 06:53:12','','pantherhighlandmaplefullbody','','inherit','open','closed','','pantherhighlandmaplefullbody','','','2021-03-27 06:53:12','2021-03-27 06:53:12','',0,'https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody.png',0,'attachment','image/png',0),(4123,1,'2021-03-27 06:55:18','2021-03-27 06:55:18','','billiard table','','inherit','open','closed','','billiard-table','','','2021-03-27 06:55:18','2021-03-27 06:55:18','',0,'https://sa7717.dev34.info/wp-content/uploads/2021/03/billiard-table-.jpeg',0,'attachment','image/jpeg',0),(4124,1,'2021-03-27 06:58:31','2021-03-27 06:58:31','','claw machine','','inherit','open','closed','','claw-machine','','','2021-03-27 06:58:31','2021-03-27 06:58:31','',0,'https://sa7717.dev34.info/wp-content/uploads/2021/03/claw-machine.jpeg',0,'attachment','image/jpeg',0),(4125,1,'2021-03-27 07:04:43','2021-03-27 07:04:43','','touch tunes','','inherit','open','closed','','touch-tunes','','','2021-03-27 07:04:43','2021-03-27 07:04:43','',0,'https://sa7717.dev34.info/wp-content/uploads/2021/03/touch-tunes-.jpeg',0,'attachment','image/jpeg',0),(4126,1,'2021-03-27 07:06:49','2021-03-27 07:06:49','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Testimonial                                \n	    <h3>\n                            <i></i>\n                        We have appreciated by our clients!                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/author-02.jpg\" width=\"92\" height=\"92\" alt=\"author-02\" title=\"author-02\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Maria Silverii                                    </h3>\n                                    CEO of Blue Illusion\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/author-01.jpg\" width=\"92\" height=\"92\" alt=\"author-01\" title=\"author-01\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Rebecca Leo                                     </h3>\n                                    Web Designer\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Blog                                \n	    <h3>\n                            <i></i>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 07:06:49','2021-03-27 07:06:49','',3193,'https://sa7717.dev34.info/?p=4126',0,'revision','',0),(4102,1,'2021-03-26 20:58:59','2021-03-26 20:58:59','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n			Featured services\n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n    </h3>\n                                        <img width=\"61\" height=\"60\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/01/h6-icon-service1.png\" alt=\"\" />                                    \n                                    <h3>    \n                                        Business Planning                                    </h3>\n                                    We develop the relationships that under the next phase in your organisation.\n                                        <a href=\"https://demo.casethemes.net/consultio-tax/service/seo-optimization/\">Read more</a>\n                                        <img width=\"49\" height=\"60\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/01/h6-icon-service2.png\" alt=\"\" />                                    \n                                    <h3>    \n                                        Stakeholder relations                                    </h3>\n                                    Developing a program to improve the best sanitation and alleviate poverty.\n                                        <a href=\"https://demo.casethemes.net/consultio-tax/service/seo-optimization/\">Read more</a>\n                                        <img width=\"50\" height=\"60\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/01/h6-icon-service3.png\" alt=\"\" />                                    \n                                    <h3>    \n                                        Risk management                                    </h3>\n                                    Through nuanced stakeholder relations and astute partnership building.\n                                        <a href=\"https://demo.casethemes.net/consultio-tax/service/seo-optimization/\">Read more</a>\n                                        <img width=\"61\" height=\"60\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/01/h6-icon-service1.png\" alt=\"\" />                                    \n                                    <h3>    \n                                        Business Planning                                    </h3>\n                                    We develop the relationships that under the next phase in your organisation.\n                                        <a href=\"https://demo.casethemes.net/consultio-tax/service/seo-optimization/\">Read more</a>\n                                        <img width=\"49\" height=\"60\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/01/h6-icon-service2.png\" alt=\"\" />                                    \n                                    <h3>    \n                                        Stakeholder relations                                    </h3>\n                                    Developing a program to improve the best sanitation and alleviate poverty.\n                                        <a href=\"https://demo.casethemes.net/consultio-tax/service/seo-optimization/\">Read more</a>\n                                        <img width=\"50\" height=\"60\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/01/h6-icon-service3.png\" alt=\"\" />                                    \n                                    <h3>    \n                                        Risk management                                    </h3>\n                                    Through nuanced stakeholder relations and astute partnership building.\n                                        <a href=\"https://demo.casethemes.net/consultio-tax/service/seo-optimization/\">Read more</a>\n	You can also find our <a href=\"#\">Consultant Service</a> to contact for the consulting\n        <h3>Strategic vision</h3>\n        A client once told us that where the others focus on one star one issue we see the whole sky. \n        <h3>Interpersonal skills</h3>\n        Forging relationships between\nmulti-national corporations, govern ments and global NGOs begins.\n        <h3>Networks that span</h3>\n        Over more than 20 years, we’ve \nfostered trusted relationships across government.\n        <h3>Flexible delivery</h3>\n        We adapt our delivery to the way your work, whether as an external provider or by providing senior.\n		    	<img width=\"19\" height=\"19\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-shape-6.png\" alt=\"\" />		\n		    	<img width=\"19\" height=\"18\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-shape-7.png\" alt=\"\" />		\n		    	<img width=\"30\" height=\"27\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-shape-5.png\" alt=\"\" />		\n			Why Choose us?\n	    <h3>\n                            <i></i>\n                        Don’t misread here we have random &amp; interesting facts will inspire you.\n    </h3>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n                <img width=\"54\" height=\"45\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-counter-icon1.png\" alt=\"\" />            \n                1\n                +\n                            Team <br/> Members\n                <img width=\"54\" height=\"45\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-counter-icon2.png\" alt=\"\" />            \n                1\n                +\n                            Winning <br/> Awards\n                <img width=\"54\" height=\"45\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-counter-icon3.png\" alt=\"\" />            \n                1\n                +\n                            Completed <br/> Works\n                <img width=\"54\" height=\"41\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-counter-icon4.png\" alt=\"\" />            \n                1\n                +\n                            Client’s <br/> Feedback\n			Why Choose us?\n	    <h3>\n                            <i></i>\n                        Don’t misread here we have random &amp; interesting facts will inspire you.\n    </h3>\n        <h3>Strategic vision</h3>\n        A client once told us that where the others focus on one star one issue we see the whole sky. \n        <h3>Interpersonal skills</h3>\n        Forging relationships between\nmulti-national corporations, govern ments and global NGOs begins.\n        <h3>Networks that span</h3>\n        Over more than 20 years, we’ve \nfostered trusted relationships across government.\n        <h3>Flexible delivery</h3>\n        We adapt our delivery to the way your work, whether as an external provider or by providing senior.\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n                <img width=\"54\" height=\"45\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-counter-icon1.png\" alt=\"\" />            \n                1\n                +\n                            Team <br/> Members\n                <img width=\"54\" height=\"45\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-counter-icon2.png\" alt=\"\" />            \n                1\n                +\n                            Winning <br/> Awards\n                <img width=\"54\" height=\"45\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-counter-icon3.png\" alt=\"\" />            \n                1\n                +\n                            Completed <br/> Works\n                <img width=\"54\" height=\"41\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-counter-icon4.png\" alt=\"\" />            \n                1\n                +\n                            Client’s <br/> Feedback\n		    	<img width=\"19\" height=\"19\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-shape-6.png\" alt=\"\" />		\n		    	<img width=\"19\" height=\"18\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-shape-7.png\" alt=\"\" />		\n		    	<img width=\"30\" height=\"27\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-shape-5.png\" alt=\"\" />		\n			Services\n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n    </h3>\n	To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\n                                <img width=\"60\" height=\"65\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-service-icon4.png\" alt=\"\" />                            \n                        <h3>    \n                            Tax Consultancy                        </h3>\n                        This is one of many areas of\nprofessional services where our firm is well ahead of the competition.\n                                                    <a href=\"https://demo.casethemes.net/consultio-tax/service/business-strategy/\"></a>\n                                <img width=\"74\" height=\"65\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-service-icon5.png\" alt=\"\" />                            \n                        <h3>    \n                            Audit & assurance                        </h3>\n                        People are only as good as the tools they possess. So, to consistently deliver high-quality auditing services.\n                                                    <a href=\"https://demo.casethemes.net/consultio-tax/service/business-strategy/\"></a>\n                                <img width=\"51\" height=\"65\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-service-icon6.png\" alt=\"\" />                            \n                        <h3>    \n                            Value Added Tax                        </h3>\n                        We are providing and dealing with all sorts of legal and professional services and matters to operate.\n                                                    <a href=\"https://demo.casethemes.net/consultio-tax/service/business-strategy/\"></a>\n                                <img width=\"57\" height=\"65\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-service-icon7.png\" alt=\"\" />                            \n                        <h3>    \n                            Accounting Services                        </h3>\n                        Our professionals provide a range of accounting and assurance services of the highest standards.\n                                                    <a href=\"https://demo.casethemes.net/consultio-tax/service/business-strategy/\"></a>\n                                <img width=\"58\" height=\"65\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-service-icon8.png\" alt=\"\" />                            \n                        <h3>    \n                            Tax Outsourcing                        </h3>\n                        Unlike our competitors we have in house qualified lawyers and accountants who can help you.\n                                                    <a href=\"https://demo.casethemes.net/consultio-tax/service/business-strategy/\"></a>\n                                <img width=\"63\" height=\"65\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-service-icon9.png\" alt=\"\" />                            \n                        <h3>    \n                            Amazing Strategy                        </h3>\n                        Operates an atmosphere that promote creative approach for clients needs.\n                                                    <a href=\"https://demo.casethemes.net/consultio-tax/service/business-strategy/\"></a>\n			Team member \n	    <h3>\n                            <i></i>\n                        We have expert team members                    \n    </h3>\n	Learn about the skills that are most useful in helping you to work effectively as part of a team, and how this fits with Belbin&#8217;s Team Roles.\n	For any Emergency <b>Call:</b>\n	<i>icon phone</i>(210) 123-451\n    <a href=\"https://demo.casethemes.net/consultio-tax/team-details/\">\n                Team details\n    </a>\n                                                                        <a href=\"#\"></a>\n                                                                            <a href=\"#\"></a>\n                                                                            <a href=\"#\"></a>\n                            <h3>    \n                                Iven Rocky                            </h3>\n                            Senior Web Developer\n                                                                                                    WordPress\n                                                90%\n                                                                                                    Java\n                                                50%\n                                                                                                    Css\n                                                70%\n                                <a href=\"https://demo.casethemes.net/consultio-tax/team-details/\"></a>\n                                                                        <a href=\"#\"></a>\n                                                                            <a href=\"#\"></a>\n                                                                            <a href=\"#\"></a>\n                            <h3>    \n                                Rebecca Leo                            </h3>\n                            Web Designer\n                                                                                                    Photoshop\n                                                90%\n                                                                                                    Sketch\n                                                80%\n                                                                                                    Css\n                                                70%\n                                <a href=\"https://demo.casethemes.net/consultio-tax/team-details/\"></a>\n                                                                        <a href=\"#\"></a>\n                                                                            <a href=\"#\"></a>\n                            <h3>    \n                                Adam Ivan                            </h3>\n                            Chef Advisor\n                                                                                                    Business Sense\n                                                90%\n                                                                                                    Cleanliness\n                                                80%\n                                                                                                    Creativity\n                                                70%\n                                <a href=\"https://demo.casethemes.net/consultio-tax/team-details/\"></a>\n                                                                        <a href=\"#\"></a>\n                                                                            <a href=\"#\"></a>\n                                                                            <a href=\"#\"></a>\n                            <h3>    \n                                Obira Franc                            </h3>\n                            Tax Consultant\n                                                                                                    Negotiation\n                                                90%\n                                                                                                    Tax law\n                                                50%\n                                                                                                    Organisation\n                                                70%\n                                <a href=\"https://demo.casethemes.net/consultio-tax/team-details/\"></a>\n			Case Studies\n	    <h3>\n                            <i></i>\n                        We are very happy for our awesome case studies!                    \n    </h3>\n	Like what you see? Contact us to see what type of solutions we can deploy for your business!\n                            <a href=\"https://demo.casethemes.net/consultio-tax/case-study/international-business-development-relationships/\"><img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-12-570x345.jpg\" width=\"570\" height=\"345\" alt=\"theme-12\" title=\"theme-12\" /></a>\n                        <h3><a href=\"https://demo.casethemes.net/consultio-tax/case-study/international-business-development-relationships/\">International business development relationships</a></h3>\n                             <label>Category:</label> <a href=\"https://demo.casethemes.net/consultio-tax/case-study-category/financial/\" rel=\"tag\">Financial</a>                        \n                            <a href=\"https://demo.casethemes.net/consultio-tax/case-study/international-business-development-relationships/\">Read more</a>\n                            <a href=\"https://demo.casethemes.net/consultio-tax/case-study/supporting-a-unique-global-public-private-partnership/\"><img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-08-570x345.jpg\" width=\"570\" height=\"345\" alt=\"theme-08\" title=\"theme-08\" /></a>\n                        <h3><a href=\"https://demo.casethemes.net/consultio-tax/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h3>\n                             <label>Category:</label> <a href=\"https://demo.casethemes.net/consultio-tax/case-study-category/tax-management/\" rel=\"tag\">Tax Management</a>                        \n                            <a href=\"https://demo.casethemes.net/consultio-tax/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"https://demo.casethemes.net/consultio-tax/case-study/developing-a-program-to-be-alleviate-poverty/\"><img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-07-570x345.jpg\" width=\"570\" height=\"345\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"https://demo.casethemes.net/consultio-tax/case-study/developing-a-program-to-be-alleviate-poverty/\">Developing a program to be alleviate poverty.</a></h3>\n                             <label>Category:</label> <a href=\"https://demo.casethemes.net/consultio-tax/case-study-category/business/\" rel=\"tag\">Business</a>                        \n                            <a href=\"https://demo.casethemes.net/consultio-tax/case-study/developing-a-program-to-be-alleviate-poverty/\">Read more</a>\n                            <a href=\"https://demo.casethemes.net/consultio-tax/case-study/on-behalf-of-world-bank-an-advocom-group/\"><img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-11-570x345.jpg\" width=\"570\" height=\"345\" alt=\"theme-11\" title=\"theme-11\" /></a>\n                        <h3><a href=\"https://demo.casethemes.net/consultio-tax/case-study/on-behalf-of-world-bank-an-advocom-group/\">On behalf of World Bank, an Advocom Group.</a></h3>\n                             <label>Category:</label> <a href=\"https://demo.casethemes.net/consultio-tax/case-study-category/strategy/\" rel=\"tag\">Strategy</a>                        \n                            <a href=\"https://demo.casethemes.net/consultio-tax/case-study/on-behalf-of-world-bank-an-advocom-group/\">Read more</a>\n			Testimonial\n	    <h3>\n                            <i></i>\n                        We have appreciated by our clients!                    \n    </h3>\n                                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/author-02.jpg\" width=\"92\" height=\"92\" alt=\"author-02\" title=\"author-02\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Maria Silverii                                    </h3>\n                                    CEO of Blue Illusion\n                                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/author-01.jpg\" width=\"92\" height=\"92\" alt=\"author-01\" title=\"author-01\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Rebecca Leo                                     </h3>\n                                    Web Designer\n										<img width=\"800\" height=\"632\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-tax.png\" alt=\"\" srcset=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-tax.png 800w, https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-tax-300x237.png 300w, https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-tax-768x607.png 768w, https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-tax-600x474.png 600w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n			Blog\n	    <h3>\n                            <i></i>\n                        We’re here to share story &amp; news from resource                    \n    </h3>\n	A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\n                            <a href=\"https://demo.casethemes.net/consultio-tax/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://demo.casethemes.net/consultio-tax/author/admin/\">admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://demo.casethemes.net/consultio-tax/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://demo.casethemes.net/consultio-tax/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://demo.casethemes.net/consultio-tax/author/admin/\">admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://demo.casethemes.net/consultio-tax/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://demo.casethemes.net/consultio-tax/food-industry-leaders-often-change-their-profound/\"><img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://demo.casethemes.net/consultio-tax/author/admin/\">admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://demo.casethemes.net/consultio-tax/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://demo.casethemes.net/consultio-tax/how-to-go-about-intiating-an-start-up/\"><img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://demo.casethemes.net/consultio-tax/author/admin/\">admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://demo.casethemes.net/consultio-tax/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-26 20:58:59','2021-03-26 20:58:59','',3193,'https://sa7717.dev34.info/?p=4102',0,'revision','',0),(4103,1,'2021-03-26 20:59:00','2021-03-26 20:59:00','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n			Featured services\n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n    </h3>\n                                        <img width=\"61\" height=\"60\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/01/h6-icon-service1.png\" alt=\"\" />                                    \n                                    <h3>    \n                                        Business Planning                                    </h3>\n                                    We develop the relationships that under the next phase in your organisation.\n                                        <a href=\"https://demo.casethemes.net/consultio-tax/service/seo-optimization/\">Read more</a>\n                                        <img width=\"49\" height=\"60\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/01/h6-icon-service2.png\" alt=\"\" />                                    \n                                    <h3>    \n                                        Stakeholder relations                                    </h3>\n                                    Developing a program to improve the best sanitation and alleviate poverty.\n                                        <a href=\"https://demo.casethemes.net/consultio-tax/service/seo-optimization/\">Read more</a>\n                                        <img width=\"50\" height=\"60\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/01/h6-icon-service3.png\" alt=\"\" />                                    \n                                    <h3>    \n                                        Risk management                                    </h3>\n                                    Through nuanced stakeholder relations and astute partnership building.\n                                        <a href=\"https://demo.casethemes.net/consultio-tax/service/seo-optimization/\">Read more</a>\n                                        <img width=\"61\" height=\"60\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/01/h6-icon-service1.png\" alt=\"\" />                                    \n                                    <h3>    \n                                        Business Planning                                    </h3>\n                                    We develop the relationships that under the next phase in your organisation.\n                                        <a href=\"https://demo.casethemes.net/consultio-tax/service/seo-optimization/\">Read more</a>\n                                        <img width=\"49\" height=\"60\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/01/h6-icon-service2.png\" alt=\"\" />                                    \n                                    <h3>    \n                                        Stakeholder relations                                    </h3>\n                                    Developing a program to improve the best sanitation and alleviate poverty.\n                                        <a href=\"https://demo.casethemes.net/consultio-tax/service/seo-optimization/\">Read more</a>\n                                        <img width=\"50\" height=\"60\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/01/h6-icon-service3.png\" alt=\"\" />                                    \n                                    <h3>    \n                                        Risk management                                    </h3>\n                                    Through nuanced stakeholder relations and astute partnership building.\n                                        <a href=\"https://demo.casethemes.net/consultio-tax/service/seo-optimization/\">Read more</a>\n	You can also find our <a href=\"#\">Consultant Service</a> to contact for the consulting\n        <h3>Strategic vision</h3>\n        A client once told us that where the others focus on one star one issue we see the whole sky. \n        <h3>Interpersonal skills</h3>\n        Forging relationships between\nmulti-national corporations, govern ments and global NGOs begins.\n        <h3>Networks that span</h3>\n        Over more than 20 years, we’ve \nfostered trusted relationships across government.\n        <h3>Flexible delivery</h3>\n        We adapt our delivery to the way your work, whether as an external provider or by providing senior.\n		    	<img width=\"19\" height=\"19\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-shape-6.png\" alt=\"\" />		\n		    	<img width=\"19\" height=\"18\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-shape-7.png\" alt=\"\" />		\n		    	<img width=\"30\" height=\"27\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-shape-5.png\" alt=\"\" />		\n			Why Choose us?\n	    <h3>\n                            <i></i>\n                        Don’t misread here we have random &amp; interesting facts will inspire you.\n    </h3>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n                <img width=\"54\" height=\"45\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-counter-icon1.png\" alt=\"\" />            \n                1\n                +\n                            Team <br/> Members\n                <img width=\"54\" height=\"45\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-counter-icon2.png\" alt=\"\" />            \n                1\n                +\n                            Winning <br/> Awards\n                <img width=\"54\" height=\"45\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-counter-icon3.png\" alt=\"\" />            \n                1\n                +\n                            Completed <br/> Works\n                <img width=\"54\" height=\"41\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-counter-icon4.png\" alt=\"\" />            \n                1\n                +\n                            Client’s <br/> Feedback\n			Why Choose us?\n	    <h3>\n                            <i></i>\n                        Don’t misread here we have random &amp; interesting facts will inspire you.\n    </h3>\n        <h3>Strategic vision</h3>\n        A client once told us that where the others focus on one star one issue we see the whole sky. \n        <h3>Interpersonal skills</h3>\n        Forging relationships between\nmulti-national corporations, govern ments and global NGOs begins.\n        <h3>Networks that span</h3>\n        Over more than 20 years, we’ve \nfostered trusted relationships across government.\n        <h3>Flexible delivery</h3>\n        We adapt our delivery to the way your work, whether as an external provider or by providing senior.\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n                <img width=\"54\" height=\"45\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-counter-icon1.png\" alt=\"\" />            \n                1\n                +\n                            Team <br/> Members\n                <img width=\"54\" height=\"45\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-counter-icon2.png\" alt=\"\" />            \n                1\n                +\n                            Winning <br/> Awards\n                <img width=\"54\" height=\"45\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-counter-icon3.png\" alt=\"\" />            \n                1\n                +\n                            Completed <br/> Works\n                <img width=\"54\" height=\"41\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-counter-icon4.png\" alt=\"\" />            \n                1\n                +\n                            Client’s <br/> Feedback\n		    	<img width=\"19\" height=\"19\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-shape-6.png\" alt=\"\" />		\n		    	<img width=\"19\" height=\"18\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-shape-7.png\" alt=\"\" />		\n		    	<img width=\"30\" height=\"27\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-shape-5.png\" alt=\"\" />		\n			Services\n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n    </h3>\n	To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper\n                                <img width=\"60\" height=\"65\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-service-icon4.png\" alt=\"\" />                            \n                        <h3>    \n                            Tax Consultancy                        </h3>\n                        This is one of many areas of\nprofessional services where our firm is well ahead of the competition.\n                                                    <a href=\"https://demo.casethemes.net/consultio-tax/service/business-strategy/\"></a>\n                                <img width=\"74\" height=\"65\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-service-icon5.png\" alt=\"\" />                            \n                        <h3>    \n                            Audit & assurance                        </h3>\n                        People are only as good as the tools they possess. So, to consistently deliver high-quality auditing services.\n                                                    <a href=\"https://demo.casethemes.net/consultio-tax/service/business-strategy/\"></a>\n                                <img width=\"51\" height=\"65\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-service-icon6.png\" alt=\"\" />                            \n                        <h3>    \n                            Value Added Tax                        </h3>\n                        We are providing and dealing with all sorts of legal and professional services and matters to operate.\n                                                    <a href=\"https://demo.casethemes.net/consultio-tax/service/business-strategy/\"></a>\n                                <img width=\"57\" height=\"65\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-service-icon7.png\" alt=\"\" />                            \n                        <h3>    \n                            Accounting Services                        </h3>\n                        Our professionals provide a range of accounting and assurance services of the highest standards.\n                                                    <a href=\"https://demo.casethemes.net/consultio-tax/service/business-strategy/\"></a>\n                                <img width=\"58\" height=\"65\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-service-icon8.png\" alt=\"\" />                            \n                        <h3>    \n                            Tax Outsourcing                        </h3>\n                        Unlike our competitors we have in house qualified lawyers and accountants who can help you.\n                                                    <a href=\"https://demo.casethemes.net/consultio-tax/service/business-strategy/\"></a>\n                                <img width=\"63\" height=\"65\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-service-icon9.png\" alt=\"\" />                            \n                        <h3>    \n                            Amazing Strategy                        </h3>\n                        Operates an atmosphere that promote creative approach for clients needs.\n                                                    <a href=\"https://demo.casethemes.net/consultio-tax/service/business-strategy/\"></a>\n			Team member \n	    <h3>\n                            <i></i>\n                        We have expert team members                    \n    </h3>\n	Learn about the skills that are most useful in helping you to work effectively as part of a team, and how this fits with Belbin&#8217;s Team Roles.\n	For any Emergency <b>Call:</b>\n	<i>icon phone</i>(210) 123-451\n    <a href=\"https://demo.casethemes.net/consultio-tax/team-details/\">\n                Team details\n    </a>\n                                                                        <a href=\"#\"></a>\n                                                                            <a href=\"#\"></a>\n                                                                            <a href=\"#\"></a>\n                            <h3>    \n                                Iven Rocky                            </h3>\n                            Senior Web Developer\n                                                                                                    WordPress\n                                                90%\n                                                                                                    Java\n                                                50%\n                                                                                                    Css\n                                                70%\n                                <a href=\"https://demo.casethemes.net/consultio-tax/team-details/\"></a>\n                                                                        <a href=\"#\"></a>\n                                                                            <a href=\"#\"></a>\n                                                                            <a href=\"#\"></a>\n                            <h3>    \n                                Rebecca Leo                            </h3>\n                            Web Designer\n                                                                                                    Photoshop\n                                                90%\n                                                                                                    Sketch\n                                                80%\n                                                                                                    Css\n                                                70%\n                                <a href=\"https://demo.casethemes.net/consultio-tax/team-details/\"></a>\n                                                                        <a href=\"#\"></a>\n                                                                            <a href=\"#\"></a>\n                            <h3>    \n                                Adam Ivan                            </h3>\n                            Chef Advisor\n                                                                                                    Business Sense\n                                                90%\n                                                                                                    Cleanliness\n                                                80%\n                                                                                                    Creativity\n                                                70%\n                                <a href=\"https://demo.casethemes.net/consultio-tax/team-details/\"></a>\n                                                                        <a href=\"#\"></a>\n                                                                            <a href=\"#\"></a>\n                                                                            <a href=\"#\"></a>\n                            <h3>    \n                                Obira Franc                            </h3>\n                            Tax Consultant\n                                                                                                    Negotiation\n                                                90%\n                                                                                                    Tax law\n                                                50%\n                                                                                                    Organisation\n                                                70%\n                                <a href=\"https://demo.casethemes.net/consultio-tax/team-details/\"></a>\n			Case Studies\n	    <h3>\n                            <i></i>\n                        We are very happy for our awesome case studies!                    \n    </h3>\n	Like what you see? Contact us to see what type of solutions we can deploy for your business!\n                            <a href=\"https://demo.casethemes.net/consultio-tax/case-study/international-business-development-relationships/\"><img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-12-570x345.jpg\" width=\"570\" height=\"345\" alt=\"theme-12\" title=\"theme-12\" /></a>\n                        <h3><a href=\"https://demo.casethemes.net/consultio-tax/case-study/international-business-development-relationships/\">International business development relationships</a></h3>\n                             <label>Category:</label> <a href=\"https://demo.casethemes.net/consultio-tax/case-study-category/financial/\" rel=\"tag\">Financial</a>                        \n                            <a href=\"https://demo.casethemes.net/consultio-tax/case-study/international-business-development-relationships/\">Read more</a>\n                            <a href=\"https://demo.casethemes.net/consultio-tax/case-study/supporting-a-unique-global-public-private-partnership/\"><img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-08-570x345.jpg\" width=\"570\" height=\"345\" alt=\"theme-08\" title=\"theme-08\" /></a>\n                        <h3><a href=\"https://demo.casethemes.net/consultio-tax/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h3>\n                             <label>Category:</label> <a href=\"https://demo.casethemes.net/consultio-tax/case-study-category/tax-management/\" rel=\"tag\">Tax Management</a>                        \n                            <a href=\"https://demo.casethemes.net/consultio-tax/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"https://demo.casethemes.net/consultio-tax/case-study/developing-a-program-to-be-alleviate-poverty/\"><img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-07-570x345.jpg\" width=\"570\" height=\"345\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"https://demo.casethemes.net/consultio-tax/case-study/developing-a-program-to-be-alleviate-poverty/\">Developing a program to be alleviate poverty.</a></h3>\n                             <label>Category:</label> <a href=\"https://demo.casethemes.net/consultio-tax/case-study-category/business/\" rel=\"tag\">Business</a>                        \n                            <a href=\"https://demo.casethemes.net/consultio-tax/case-study/developing-a-program-to-be-alleviate-poverty/\">Read more</a>\n                            <a href=\"https://demo.casethemes.net/consultio-tax/case-study/on-behalf-of-world-bank-an-advocom-group/\"><img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-11-570x345.jpg\" width=\"570\" height=\"345\" alt=\"theme-11\" title=\"theme-11\" /></a>\n                        <h3><a href=\"https://demo.casethemes.net/consultio-tax/case-study/on-behalf-of-world-bank-an-advocom-group/\">On behalf of World Bank, an Advocom Group.</a></h3>\n                             <label>Category:</label> <a href=\"https://demo.casethemes.net/consultio-tax/case-study-category/strategy/\" rel=\"tag\">Strategy</a>                        \n                            <a href=\"https://demo.casethemes.net/consultio-tax/case-study/on-behalf-of-world-bank-an-advocom-group/\">Read more</a>\n			Testimonial\n	    <h3>\n                            <i></i>\n                        We have appreciated by our clients!                    \n    </h3>\n                                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/author-02.jpg\" width=\"92\" height=\"92\" alt=\"author-02\" title=\"author-02\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Maria Silverii                                    </h3>\n                                    CEO of Blue Illusion\n                                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/author-01.jpg\" width=\"92\" height=\"92\" alt=\"author-01\" title=\"author-01\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Rebecca Leo                                     </h3>\n                                    Web Designer\n										<img width=\"800\" height=\"632\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-tax.png\" alt=\"\" srcset=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-tax.png 800w, https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-tax-300x237.png 300w, https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-tax-768x607.png 768w, https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-tax-600x474.png 600w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n			Blog\n	    <h3>\n                            <i></i>\n                        We’re here to share story &amp; news from resource                    \n    </h3>\n	A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text\n                            <a href=\"https://demo.casethemes.net/consultio-tax/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://demo.casethemes.net/consultio-tax/author/admin/\">admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://demo.casethemes.net/consultio-tax/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://demo.casethemes.net/consultio-tax/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://demo.casethemes.net/consultio-tax/author/admin/\">admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://demo.casethemes.net/consultio-tax/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://demo.casethemes.net/consultio-tax/food-industry-leaders-often-change-their-profound/\"><img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://demo.casethemes.net/consultio-tax/author/admin/\">admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://demo.casethemes.net/consultio-tax/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://demo.casethemes.net/consultio-tax/how-to-go-about-intiating-an-start-up/\"><img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://demo.casethemes.net/consultio-tax/author/admin/\">admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://demo.casethemes.net/consultio-tax/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-tax/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-26 20:59:00','2021-03-26 20:59:00','',3193,'https://sa7717.dev34.info/?p=4103',0,'revision','',0),(4127,1,'2021-03-27 07:06:49','2021-03-27 07:06:49','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Testimonial                                \n	    <h3>\n                            <i></i>\n                        We have appreciated by our clients!                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/author-02.jpg\" width=\"92\" height=\"92\" alt=\"author-02\" title=\"author-02\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Maria Silverii                                    </h3>\n                                    CEO of Blue Illusion\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/author-01.jpg\" width=\"92\" height=\"92\" alt=\"author-01\" title=\"author-01\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Rebecca Leo                                     </h3>\n                                    Web Designer\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Blog                                \n	    <h3>\n                            <i></i>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 07:06:49','2021-03-27 07:06:49','',3193,'https://sa7717.dev34.info/?p=4127',0,'revision','',0),(4128,1,'2021-03-27 07:06:49','2021-03-27 07:06:49','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Testimonial                                \n	    <h3>\n                            <i></i>\n                        We have appreciated by our clients!                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/author-02.jpg\" width=\"92\" height=\"92\" alt=\"author-02\" title=\"author-02\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Maria Silverii                                    </h3>\n                                    CEO of Blue Illusion\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/author-01.jpg\" width=\"92\" height=\"92\" alt=\"author-01\" title=\"author-01\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Rebecca Leo                                     </h3>\n                                    Web Designer\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Blog                                \n	    <h3>\n                            <i></i>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 07:06:49','2021-03-27 07:06:49','',3193,'https://sa7717.dev34.info/?p=4128',0,'revision','',0),(4129,1,'2021-03-27 07:16:02','2021-03-27 07:16:02','','the-munsters-premium-pinball-cabinet-stern','','inherit','open','closed','','the-munsters-premium-pinball-cabinet-stern','','','2021-03-27 07:16:02','2021-03-27 07:16:02','',0,'https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png',0,'attachment','image/png',0),(4133,1,'2021-03-27 07:30:41','2021-03-27 07:30:41','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Featured services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Testimonial                                \n	    <h3>\n                            <i></i>\n                        We have appreciated by our clients!                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/author-02.jpg\" width=\"92\" height=\"92\" alt=\"author-02\" title=\"author-02\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Maria Silverii                                    </h3>\n                                    CEO of Blue Illusion\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/author-01.jpg\" width=\"92\" height=\"92\" alt=\"author-01\" title=\"author-01\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Rebecca Leo                                     </h3>\n                                    Web Designer\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            System Amusement News and Updates                            \n	    <h3>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 07:30:41','2021-03-27 07:30:41','',3193,'https://sa7717.dev34.info/?p=4133',0,'revision','',0),(4131,1,'2021-03-27 07:30:40','2021-03-27 07:30:40','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Testimonial                                \n	    <h3>\n                            <i></i>\n                        We have appreciated by our clients!                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/author-02.jpg\" width=\"92\" height=\"92\" alt=\"author-02\" title=\"author-02\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Maria Silverii                                    </h3>\n                                    CEO of Blue Illusion\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/author-01.jpg\" width=\"92\" height=\"92\" alt=\"author-01\" title=\"author-01\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Rebecca Leo                                     </h3>\n                                    Web Designer\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Blog                                \n	    <h3>\n                            <i></i>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 07:30:40','2021-03-27 07:30:40','',3193,'https://sa7717.dev34.info/?p=4131',0,'revision','',0),(4132,1,'2021-03-27 07:30:40','2021-03-27 07:30:40','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Testimonial                                \n	    <h3>\n                            <i></i>\n                        We have appreciated by our clients!                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/author-02.jpg\" width=\"92\" height=\"92\" alt=\"author-02\" title=\"author-02\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Maria Silverii                                    </h3>\n                                    CEO of Blue Illusion\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/author-01.jpg\" width=\"92\" height=\"92\" alt=\"author-01\" title=\"author-01\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Rebecca Leo                                     </h3>\n                                    Web Designer\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Blog                                \n	    <h3>\n                            <i></i>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 07:30:40','2021-03-27 07:30:40','',3193,'https://sa7717.dev34.info/?p=4132',0,'revision','',0),(4134,1,'2021-03-27 07:31:34','2021-03-27 07:31:34','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Featured services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Testimonial                                \n	    <h3>\n                            <i></i>\n                        We have appreciated by our clients!                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/author-02.jpg\" width=\"92\" height=\"92\" alt=\"author-02\" title=\"author-02\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Maria Silverii                                    </h3>\n                                    CEO of Blue Illusion\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/author-01.jpg\" width=\"92\" height=\"92\" alt=\"author-01\" title=\"author-01\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Rebecca Leo                                     </h3>\n                                    Web Designer\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            System Amusement News and Updates                            \n	    <h3>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 07:31:34','2021-03-27 07:31:34','',3193,'https://sa7717.dev34.info/?p=4134',0,'revision','',0),(4135,1,'2021-03-27 07:31:34','2021-03-27 07:31:34','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Featured services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Testimonial                                \n	    <h3>\n                            <i></i>\n                        We have appreciated by our clients!                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/author-02.jpg\" width=\"92\" height=\"92\" alt=\"author-02\" title=\"author-02\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Maria Silverii                                    </h3>\n                                    CEO of Blue Illusion\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/author-01.jpg\" width=\"92\" height=\"92\" alt=\"author-01\" title=\"author-01\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Rebecca Leo                                     </h3>\n                                    Web Designer\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            System Amusement News and Updates                            \n	    <h3>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 07:31:34','2021-03-27 07:31:34','',3193,'https://sa7717.dev34.info/?p=4135',0,'revision','',0),(4136,1,'2021-03-27 07:31:34','2021-03-27 07:31:34','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Featured services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Testimonial                                \n	    <h3>\n                            <i></i>\n                        We have appreciated by our clients!                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/author-02.jpg\" width=\"92\" height=\"92\" alt=\"author-02\" title=\"author-02\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Maria Silverii                                    </h3>\n                                    CEO of Blue Illusion\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/author-01.jpg\" width=\"92\" height=\"92\" alt=\"author-01\" title=\"author-01\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Rebecca Leo                                     </h3>\n                                    Web Designer\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            System Amusement News and Updates                            \n	    <h3>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 07:31:34','2021-03-27 07:31:34','',3193,'https://sa7717.dev34.info/?p=4136',0,'revision','',0),(4141,1,'2021-03-27 07:44:27','2021-03-27 07:44:27','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Featured services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Testimonial                                \n	    <h3>\n                            <i></i>\n                        We have appreciated by our clients!                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/author-02.jpg\" width=\"92\" height=\"92\" alt=\"author-02\" title=\"author-02\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Maria Silverii                                    </h3>\n                                    CEO of Blue Illusion\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/author-01.jpg\" width=\"92\" height=\"92\" alt=\"author-01\" title=\"author-01\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Rebecca Leo                                     </h3>\n                                    Web Designer\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            System Amusement News and Updates                            \n	    <h3>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Featured services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 07:44:27','2021-03-27 07:44:27','',3193,'https://sa7717.dev34.info/?p=4141',0,'revision','',0),(4138,1,'2021-03-27 07:42:18','2021-03-27 07:42:18','','Three darts and business target background and copyspace on the left. Marketing and advertising concept.','Three darts and business target over grey background and copyspace on the left. Marketing and advertising concept. 3d illustration','inherit','open','closed','','three-darts-and-business-target-background-and-copyspace-on-the-left-marketing-and-advertising-concept','','','2021-03-27 07:42:18','2021-03-27 07:42:18','',3193,'https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA.jpg',0,'attachment','image/jpeg',0),(4139,1,'2021-03-27 07:44:26','2021-03-27 07:44:26','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Featured services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Testimonial                                \n	    <h3>\n                            <i></i>\n                        We have appreciated by our clients!                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/author-02.jpg\" width=\"92\" height=\"92\" alt=\"author-02\" title=\"author-02\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Maria Silverii                                    </h3>\n                                    CEO of Blue Illusion\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/author-01.jpg\" width=\"92\" height=\"92\" alt=\"author-01\" title=\"author-01\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Rebecca Leo                                     </h3>\n                                    Web Designer\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            System Amusement News and Updates                            \n	    <h3>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 07:44:26','2021-03-27 07:44:26','',3193,'https://sa7717.dev34.info/?p=4139',0,'revision','',0),(4140,1,'2021-03-27 07:44:26','2021-03-27 07:44:26','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Featured services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Testimonial                                \n	    <h3>\n                            <i></i>\n                        We have appreciated by our clients!                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/author-02.jpg\" width=\"92\" height=\"92\" alt=\"author-02\" title=\"author-02\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Maria Silverii                                    </h3>\n                                    CEO of Blue Illusion\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/author-01.jpg\" width=\"92\" height=\"92\" alt=\"author-01\" title=\"author-01\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Rebecca Leo                                     </h3>\n                                    Web Designer\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            System Amusement News and Updates                            \n	    <h3>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 07:44:26','2021-03-27 07:44:26','',3193,'https://sa7717.dev34.info/?p=4140',0,'revision','',0),(4142,1,'2021-03-27 07:45:22','2021-03-27 07:45:22','','dart throwing 1','','inherit','open','closed','','dart-throwing-1','','','2021-03-27 07:45:22','2021-03-27 07:45:22','',3193,'https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg',0,'attachment','image/jpeg',0),(4143,1,'2021-03-27 07:49:54','2021-03-27 07:49:54','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Featured services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Testimonial                                \n	    <h3>\n                            <i></i>\n                        We have appreciated by our clients!                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/author-02.jpg\" width=\"92\" height=\"92\" alt=\"author-02\" title=\"author-02\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Maria Silverii                                    </h3>\n                                    CEO of Blue Illusion\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/author-01.jpg\" width=\"92\" height=\"92\" alt=\"author-01\" title=\"author-01\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Rebecca Leo                                     </h3>\n                                    Web Designer\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            System Amusement News and Updates                            \n	    <h3>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Featured services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 07:49:54','2021-03-27 07:49:54','',3193,'https://sa7717.dev34.info/?p=4143',0,'revision','',0),(4144,1,'2021-03-27 07:49:54','2021-03-27 07:49:54','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Featured services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Testimonial                                \n	    <h3>\n                            <i></i>\n                        We have appreciated by our clients!                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/author-02.jpg\" width=\"92\" height=\"92\" alt=\"author-02\" title=\"author-02\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Maria Silverii                                    </h3>\n                                    CEO of Blue Illusion\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/author-01.jpg\" width=\"92\" height=\"92\" alt=\"author-01\" title=\"author-01\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Rebecca Leo                                     </h3>\n                                    Web Designer\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            System Amusement News and Updates                            \n	    <h3>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Featured services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 07:49:54','2021-03-27 07:49:54','',3193,'https://sa7717.dev34.info/?p=4144',0,'revision','',0);
INSERT INTO `wp9s_posts` VALUES (4145,1,'2021-03-27 07:49:55','2021-03-27 07:49:55','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Featured services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Testimonial                                \n	    <h3>\n                            <i></i>\n                        We have appreciated by our clients!                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/author-02.jpg\" width=\"92\" height=\"92\" alt=\"author-02\" title=\"author-02\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Maria Silverii                                    </h3>\n                                    CEO of Blue Illusion\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/author-01.jpg\" width=\"92\" height=\"92\" alt=\"author-01\" title=\"author-01\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Rebecca Leo                                     </h3>\n                                    Web Designer\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            System Amusement News and Updates                            \n	    <h3>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Featured services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 07:49:55','2021-03-27 07:49:55','',3193,'https://sa7717.dev34.info/?p=4145',0,'revision','',0),(4146,1,'2021-03-27 07:53:59','2021-03-27 07:53:59','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Featured services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Testimonial                                \n	    <h3>\n                            <i></i>\n                        We have appreciated by our clients!                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/author-02.jpg\" width=\"92\" height=\"92\" alt=\"author-02\" title=\"author-02\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Maria Silverii                                    </h3>\n                                    CEO of Blue Illusion\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/author-01.jpg\" width=\"92\" height=\"92\" alt=\"author-01\" title=\"author-01\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Rebecca Leo                                     </h3>\n                                    Web Designer\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            System Amusement News and Updates                            \n	    <h3>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Featured services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 07:53:59','2021-03-27 07:53:59','',3193,'https://sa7717.dev34.info/?p=4146',0,'revision','',0),(4147,1,'2021-03-27 07:53:59','2021-03-27 07:53:59','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Featured services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Testimonial                                \n	    <h3>\n                            <i></i>\n                        We have appreciated by our clients!                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/author-02.jpg\" width=\"92\" height=\"92\" alt=\"author-02\" title=\"author-02\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Maria Silverii                                    </h3>\n                                    CEO of Blue Illusion\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/author-01.jpg\" width=\"92\" height=\"92\" alt=\"author-01\" title=\"author-01\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Rebecca Leo                                     </h3>\n                                    Web Designer\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            System Amusement News and Updates                            \n	    <h3>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Featured services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 07:53:59','2021-03-27 07:53:59','',3193,'https://sa7717.dev34.info/?p=4147',0,'revision','',0),(4148,1,'2021-03-27 07:53:59','2021-03-27 07:53:59','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Featured services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Testimonial                                \n	    <h3>\n                            <i></i>\n                        We have appreciated by our clients!                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/author-02.jpg\" width=\"92\" height=\"92\" alt=\"author-02\" title=\"author-02\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Maria Silverii                                    </h3>\n                                    CEO of Blue Illusion\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/author-01.jpg\" width=\"92\" height=\"92\" alt=\"author-01\" title=\"author-01\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Rebecca Leo                                     </h3>\n                                    Web Designer\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            System Amusement News and Updates                            \n	    <h3>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Featured services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 07:53:59','2021-03-27 07:53:59','',3193,'https://sa7717.dev34.info/?p=4148',0,'revision','',0),(4149,1,'2021-03-27 07:56:11','2021-03-27 07:56:11','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Featured services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Testimonial                                \n	    <h3>\n                            <i></i>\n                        We have appreciated by our clients!                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/author-02.jpg\" width=\"92\" height=\"92\" alt=\"author-02\" title=\"author-02\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Maria Silverii                                    </h3>\n                                    CEO of Blue Illusion\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/author-01.jpg\" width=\"92\" height=\"92\" alt=\"author-01\" title=\"author-01\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Rebecca Leo                                     </h3>\n                                    Web Designer\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            System Amusement News and Updates                            \n	    <h3>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Featured services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 07:56:11','2021-03-27 07:56:11','',3193,'https://sa7717.dev34.info/?p=4149',0,'revision','',0),(4150,1,'2021-03-27 07:56:11','2021-03-27 07:56:11','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Featured services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Testimonial                                \n	    <h3>\n                            <i></i>\n                        We have appreciated by our clients!                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/author-02.jpg\" width=\"92\" height=\"92\" alt=\"author-02\" title=\"author-02\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Maria Silverii                                    </h3>\n                                    CEO of Blue Illusion\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/author-01.jpg\" width=\"92\" height=\"92\" alt=\"author-01\" title=\"author-01\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Rebecca Leo                                     </h3>\n                                    Web Designer\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            System Amusement News and Updates                            \n	    <h3>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Featured services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 07:56:11','2021-03-27 07:56:11','',3193,'https://sa7717.dev34.info/?p=4150',0,'revision','',0),(4151,1,'2021-03-27 07:56:12','2021-03-27 07:56:12','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Featured services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Testimonial                                \n	    <h3>\n                            <i></i>\n                        We have appreciated by our clients!                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/author-02.jpg\" width=\"92\" height=\"92\" alt=\"author-02\" title=\"author-02\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Maria Silverii                                    </h3>\n                                    CEO of Blue Illusion\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/author-01.jpg\" width=\"92\" height=\"92\" alt=\"author-01\" title=\"author-01\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Rebecca Leo                                     </h3>\n                                    Web Designer\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            System Amusement News and Updates                            \n	    <h3>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 07:56:12','2021-03-27 07:56:12','',3193,'https://sa7717.dev34.info/?p=4151',0,'revision','',0),(4152,1,'2021-03-27 07:56:56','2021-03-27 07:56:56','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Featured services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Testimonial                                \n	    <h3>\n                            <i></i>\n                        We have appreciated by our clients!                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/author-02.jpg\" width=\"92\" height=\"92\" alt=\"author-02\" title=\"author-02\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Maria Silverii                                    </h3>\n                                    CEO of Blue Illusion\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/author-01.jpg\" width=\"92\" height=\"92\" alt=\"author-01\" title=\"author-01\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Rebecca Leo                                     </h3>\n                                    Web Designer\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            System Amusement News and Updates                            \n	    <h3>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 07:56:56','2021-03-27 07:56:56','',3193,'https://sa7717.dev34.info/?p=4152',0,'revision','',0),(4153,1,'2021-03-27 07:56:56','2021-03-27 07:56:56','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Featured services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Testimonial                                \n	    <h3>\n                            <i></i>\n                        We have appreciated by our clients!                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/author-02.jpg\" width=\"92\" height=\"92\" alt=\"author-02\" title=\"author-02\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Maria Silverii                                    </h3>\n                                    CEO of Blue Illusion\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/author-01.jpg\" width=\"92\" height=\"92\" alt=\"author-01\" title=\"author-01\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Rebecca Leo                                     </h3>\n                                    Web Designer\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            System Amusement News and Updates                            \n	    <h3>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 07:56:56','2021-03-27 07:56:56','',3193,'https://sa7717.dev34.info/?p=4153',0,'revision','',0),(4158,1,'2021-03-27 07:58:07','2021-03-27 07:58:07','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Featured services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Testimonial                                \n	    <h3>\n                            <i></i>\n                        We have appreciated by our clients!                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/author-01.jpg\" width=\"92\" height=\"92\" alt=\"author-01\" title=\"author-01\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Rebecca Leo                                     </h3>\n                                    Web Designer\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            System Amusement News and Updates                            \n	    <h3>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 07:58:07','2021-03-27 07:58:07','',3193,'https://sa7717.dev34.info/?p=4158',0,'revision','',0),(4154,1,'2021-03-27 07:56:56','2021-03-27 07:56:56','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Featured services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Testimonial                                \n	    <h3>\n                            <i></i>\n                        We have appreciated by our clients!                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/author-02.jpg\" width=\"92\" height=\"92\" alt=\"author-02\" title=\"author-02\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Maria Silverii                                    </h3>\n                                    CEO of Blue Illusion\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/author-01.jpg\" width=\"92\" height=\"92\" alt=\"author-01\" title=\"author-01\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Rebecca Leo                                     </h3>\n                                    Web Designer\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            System Amusement News and Updates                            \n	    <h3>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 07:56:56','2021-03-27 07:56:56','',3193,'https://sa7717.dev34.info/?p=4154',0,'revision','',0),(4155,1,'2021-03-27 07:57:56','2021-03-27 07:57:56','','golden thumbsup','','inherit','open','closed','','golden-thumbsup','','','2021-03-27 07:57:56','2021-03-27 07:57:56','',3193,'https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup.jpg',0,'attachment','image/jpeg',0),(4156,1,'2021-03-27 07:58:07','2021-03-27 07:58:07','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Featured services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Testimonial                                \n	    <h3>\n                            <i></i>\n                        We have appreciated by our clients!                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/author-02.jpg\" width=\"92\" height=\"92\" alt=\"author-02\" title=\"author-02\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Maria Silverii                                    </h3>\n                                    CEO of Blue Illusion\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/author-01.jpg\" width=\"92\" height=\"92\" alt=\"author-01\" title=\"author-01\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Rebecca Leo                                     </h3>\n                                    Web Designer\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            System Amusement News and Updates                            \n	    <h3>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 07:58:07','2021-03-27 07:58:07','',3193,'https://sa7717.dev34.info/?p=4156',0,'revision','',0),(4157,1,'2021-03-27 07:58:07','2021-03-27 07:58:07','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Featured services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Testimonial                                \n	    <h3>\n                            <i></i>\n                        We have appreciated by our clients!                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/author-02.jpg\" width=\"92\" height=\"92\" alt=\"author-02\" title=\"author-02\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Maria Silverii                                    </h3>\n                                    CEO of Blue Illusion\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/author-01.jpg\" width=\"92\" height=\"92\" alt=\"author-01\" title=\"author-01\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Rebecca Leo                                     </h3>\n                                    Web Designer\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            System Amusement News and Updates                            \n	    <h3>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 07:58:07','2021-03-27 07:58:07','',3193,'https://sa7717.dev34.info/?p=4157',0,'revision','',0),(4159,1,'2021-03-27 08:01:38','2021-03-27 08:01:38','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Featured services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Testimonial                                \n	    <h3>\n                            <i></i>\n                        We have appreciated by our clients!                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/author-01.jpg\" width=\"92\" height=\"92\" alt=\"author-01\" title=\"author-01\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Rebecca Leo                                     </h3>\n                                    Web Designer\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            System Amusement News and Updates                            \n	    <h3>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 08:01:38','2021-03-27 08:01:38','',3193,'https://sa7717.dev34.info/?p=4159',0,'revision','',0),(4160,1,'2021-03-27 08:01:39','2021-03-27 08:01:39','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Featured services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Testimonial                                \n	    <h3>\n                            <i></i>\n                        We have appreciated by our clients!                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/author-01.jpg\" width=\"92\" height=\"92\" alt=\"author-01\" title=\"author-01\" />                                    \n                                                                “ I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail as a Leadership Program’ is Her passion.”\n                                    <h3>    \n                                        Rebecca Leo                                     </h3>\n                                    Web Designer\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            System Amusement News and Updates                            \n	    <h3>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 08:01:39','2021-03-27 08:01:39','',3193,'https://sa7717.dev34.info/?p=4160',0,'revision','',0),(4161,1,'2021-03-27 08:01:39','2021-03-27 08:01:39','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Featured services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            System Amusement News and Updates                            \n	    <h3>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 08:01:39','2021-03-27 08:01:39','',3193,'https://sa7717.dev34.info/?p=4161',0,'revision','',0),(4162,1,'2021-03-27 08:02:33','2021-03-27 08:02:33','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Featured services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            System Amusement News and Updates                            \n	    <h3>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 08:02:33','2021-03-27 08:02:33','',3193,'https://sa7717.dev34.info/?p=4162',0,'revision','',0),(4163,1,'2021-03-27 08:02:33','2021-03-27 08:02:33','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Featured services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            System Amusement News and Updates                            \n	    <h3>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 08:02:33','2021-03-27 08:02:33','',3193,'https://sa7717.dev34.info/?p=4163',0,'revision','',0),(4164,1,'2021-03-27 08:02:34','2021-03-27 08:02:34','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Featured services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            System Amusement News and Updates                            \n	    <h3>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 08:02:34','2021-03-27 08:02:34','',3193,'https://sa7717.dev34.info/?p=4164',0,'revision','',0),(4165,1,'2021-03-27 08:02:47','2021-03-27 08:02:47','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Featured services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            System Amusement News and Updates                            \n	    <h3>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 08:02:47','2021-03-27 08:02:47','',3193,'https://sa7717.dev34.info/?p=4165',0,'revision','',0),(4166,1,'2021-03-27 08:02:48','2021-03-27 08:02:48','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Featured services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            System Amusement News and Updates                            \n	    <h3>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 08:02:48','2021-03-27 08:02:48','',3193,'https://sa7717.dev34.info/?p=4166',0,'revision','',0),(4167,1,'2021-03-27 08:02:48','2021-03-27 08:02:48','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Featured services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            System Amusement News and Updates                            \n	    <h3>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 08:02:48','2021-03-27 08:02:48','',3193,'https://sa7717.dev34.info/?p=4167',0,'revision','',0),(4168,1,'2021-03-27 08:03:01','2021-03-27 08:03:01','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Featured services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            System Amusement News and Updates                            \n	    <h3>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 08:03:01','2021-03-27 08:03:01','',3193,'https://sa7717.dev34.info/?p=4168',0,'revision','',0),(4169,1,'2021-03-27 08:03:01','2021-03-27 08:03:01','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Featured services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            System Amusement News and Updates                            \n	    <h3>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 08:03:01','2021-03-27 08:03:01','',3193,'https://sa7717.dev34.info/?p=4169',0,'revision','',0),(4170,1,'2021-03-27 08:03:01','2021-03-27 08:03:01','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Featured services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            System Amusement News and Updates                            \n	    <h3>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 08:03:01','2021-03-27 08:03:01','',3193,'https://sa7717.dev34.info/?p=4170',0,'revision','',0),(4171,1,'2021-03-27 09:05:18','2021-03-27 09:05:18','','arachnid dart board','','inherit','open','closed','','arachnid-dart-board','','','2021-03-27 09:05:18','2021-03-27 09:05:18','',0,'https://sa7717.dev34.info/wp-content/uploads/2021/03/arachnid-dart-board-.jpeg',0,'attachment','image/jpeg',0),(4172,1,'2021-03-27 09:15:15','2021-03-27 09:15:15','','tranax_mini-bank_x4000','','inherit','open','closed','','tranax_mini-bank_x4000','','','2021-03-27 09:15:15','2021-03-27 09:15:15','',0,'https://sa7717.dev34.info/wp-content/uploads/2021/03/tranax_mini-bank_x4000.jpeg',0,'attachment','image/jpeg',0),(4173,1,'2021-03-27 09:17:46','2021-03-27 09:17:46','','Screen Shot 2021-03-27 at 2.17.21 AM','','inherit','open','closed','','screen-shot-2021-03-27-at-2-17-21-am','','','2021-03-27 09:17:46','2021-03-27 09:17:46','',0,'https://sa7717.dev34.info/wp-content/uploads/2021/03/Screen-Shot-2021-03-27-at-2.17.21-AM.png',0,'attachment','image/png',0),(4174,1,'2021-03-27 09:26:22','2021-03-27 09:26:22','','kv-v5','','inherit','open','closed','','kv-v5','','','2021-03-27 09:26:22','2021-03-27 09:26:22','',0,'https://sa7717.dev34.info/wp-content/uploads/2021/03/kv-v5.jpg',0,'attachment','image/jpeg',0),(4175,1,'2021-03-27 18:18:39','2021-03-27 18:18:39','','shooting pool','','inherit','open','closed','','shooting-pool','','','2021-03-27 18:18:39','2021-03-27 18:18:39','',3193,'https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-.png',0,'attachment','image/png',0),(4176,1,'2021-03-27 18:20:06','2021-03-27 18:20:06','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Featured services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            System Amusement News and Updates                            \n	    <h3>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 18:20:06','2021-03-27 18:20:06','',3193,'https://sa7717.dev34.info/?p=4176',0,'revision','',0),(4177,1,'2021-03-27 18:20:06','2021-03-27 18:20:06','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Featured services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            System Amusement News and Updates                            \n	    <h3>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 18:20:06','2021-03-27 18:20:06','',3193,'https://sa7717.dev34.info/?p=4177',0,'revision','',0),(4188,1,'2021-03-27 18:40:06','2021-03-27 18:40:06','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Featured services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            System Amusement News and Updates                            \n	    <h3>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717-300x200.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717-600x400.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Join our pool league! Click the button below to view our schedule and info!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 18:40:06','2021-03-27 18:40:06','',3193,'https://sa7717.dev34.info/?p=4188',0,'revision','',0),(4178,1,'2021-03-27 18:20:07','2021-03-27 18:20:07','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Featured services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            System Amusement News and Updates                            \n	    <h3>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"325\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-.png 985w, https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool--300x152.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool--768x390.png 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool--600x305.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 18:20:07','2021-03-27 18:20:07','',3193,'https://sa7717.dev34.info/?p=4178',0,'revision','',0),(4179,1,'2021-03-27 18:20:50','2021-03-27 18:20:50','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Featured services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            System Amusement News and Updates                            \n	    <h3>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"325\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-.png 985w, https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool--300x152.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool--768x390.png 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool--600x305.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 18:20:50','2021-03-27 18:20:50','',3193,'https://sa7717.dev34.info/?p=4179',0,'revision','',0),(4180,1,'2021-03-27 18:20:50','2021-03-27 18:20:50','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Featured services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            System Amusement News and Updates                            \n	    <h3>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"325\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-.png 985w, https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool--300x152.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool--768x390.png 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool--600x305.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 18:20:50','2021-03-27 18:20:50','',3193,'https://sa7717.dev34.info/?p=4180',0,'revision','',0),(4181,1,'2021-03-27 18:20:51','2021-03-27 18:20:51','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Featured services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            System Amusement News and Updates                            \n	    <h3>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"325\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-.png 985w, https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool--300x152.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool--768x390.png 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool--600x305.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 18:20:51','2021-03-27 18:20:51','',3193,'https://sa7717.dev34.info/?p=4181',0,'revision','',0),(4182,1,'2021-03-27 18:22:59','2021-03-27 18:22:59','','Young couple playing together pool in bar','Young couple playing pool in bar while having night out in town','inherit','open','closed','','young-couple-playing-together-pool-in-bar-2','','','2021-03-27 18:22:59','2021-03-27 18:22:59','',3193,'https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1.jpg',0,'attachment','image/jpeg',0),(4183,1,'2021-03-27 18:23:12','2021-03-27 18:23:12','','shooting pool 1','HD1080p: Super Slow Motion Close-Up shot of a man\'s hand shooting the cue ball with a pool cue. Recorded at 1050 fps.','inherit','open','closed','','shooting-pool-1','','','2021-03-27 18:23:12','2021-03-27 18:23:12','',3193,'https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-1.jpeg',0,'attachment','image/jpeg',0),(4186,1,'2021-03-27 18:40:06','2021-03-27 18:40:06','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Featured services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            System Amusement News and Updates                            \n	    <h3>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"325\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-.png 985w, https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool--300x152.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool--768x390.png 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool--600x305.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 18:40:06','2021-03-27 18:40:06','',3193,'https://sa7717.dev34.info/?p=4186',0,'revision','',0),(4185,1,'2021-03-27 18:33:04','2021-03-27 18:33:04','','shooting pool 717','','inherit','open','closed','','shooting-pool-717','','','2021-03-27 18:33:04','2021-03-27 18:33:04','',3193,'https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717.jpeg',0,'attachment','image/jpeg',0),(4187,1,'2021-03-27 18:40:06','2021-03-27 18:40:06','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Featured services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            System Amusement News and Updates                            \n	    <h3>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"325\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-.png 985w, https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool--300x152.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool--768x390.png 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool--600x305.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 18:40:06','2021-03-27 18:40:06','',3193,'https://sa7717.dev34.info/?p=4187',0,'revision','',0),(4192,1,'2021-03-27 18:53:12','2021-03-27 18:53:12','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Featured services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            System Amusement News and Updates                            \n	    <h3>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717-300x200.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717-600x400.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Join our pool league! Click the button below to view our schedule and info!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 18:53:12','2021-03-27 18:53:12','',3193,'https://sa7717.dev34.info/?p=4192',0,'revision','',0),(4190,1,'2021-03-27 18:53:12','2021-03-27 18:53:12','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Featured services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            System Amusement News and Updates                            \n	    <h3>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717-300x200.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717-600x400.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Join our pool league! Click the button below to view our schedule and info!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 18:53:12','2021-03-27 18:53:12','',3193,'https://sa7717.dev34.info/?p=4190',0,'revision','',0),(4191,1,'2021-03-27 18:53:12','2021-03-27 18:53:12','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Featured services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            System Amusement News and Updates                            \n	    <h3>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717-300x200.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717-600x400.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Join our pool league! Click the button below to view our schedule and info!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 18:53:12','2021-03-27 18:53:12','',3193,'https://sa7717.dev34.info/?p=4191',0,'revision','',0),(4193,1,'2021-03-27 18:53:39','2021-03-27 18:53:39','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Featured services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            System Amusement News and Updates                            \n	    <h3>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717-300x200.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717-600x400.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Join our pool league! Click the button below to view our schedule and info!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 18:53:39','2021-03-27 18:53:39','',3193,'https://sa7717.dev34.info/?p=4193',0,'revision','',0),(4194,1,'2021-03-27 18:53:39','2021-03-27 18:53:39','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Featured services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            System Amusement News and Updates                            \n	    <h3>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717-300x200.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717-600x400.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Join our pool league! Click the button below to view our schedule and info!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 18:53:39','2021-03-27 18:53:39','',3193,'https://sa7717.dev34.info/?p=4194',0,'revision','',0),(4195,1,'2021-03-27 18:53:40','2021-03-27 18:53:40','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Featured services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            System Amusement News and Updates                            \n	    <h3>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717-300x200.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717-600x400.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Join our pool league! Click the button below to view our schedule and info!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 18:53:40','2021-03-27 18:53:40','',3193,'https://sa7717.dev34.info/?p=4195',0,'revision','',0),(4196,1,'2021-03-27 19:00:29','2021-03-27 19:00:29','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Featured services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            System Amusement News and Updates                            \n	    <h3>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717-300x200.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717-600x400.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Join our pool league! Click the button below to view our schedule and info!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 19:00:29','2021-03-27 19:00:29','',3193,'https://sa7717.dev34.info/?p=4196',0,'revision','',0),(4197,1,'2021-03-27 19:00:29','2021-03-27 19:00:29','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Featured services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		To provide consultancy for preparing of all sorts of corporate law and any other services as the company may think fit and proper		\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            System Amusement News and Updates                            \n	    <h3>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717-300x200.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717-600x400.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Join our pool league! Click the button below to view our schedule and info!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 19:00:29','2021-03-27 19:00:29','',3193,'https://sa7717.dev34.info/?p=4197',0,'revision','',0),(4198,1,'2021-03-27 19:00:30','2021-03-27 19:00:30','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Featured services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                            <i></i>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            System Amusement News and Updates                            \n	    <h3>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717-300x200.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717-600x400.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Join our pool league! Click the button below to view our schedule and info!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 19:00:30','2021-03-27 19:00:30','',3193,'https://sa7717.dev34.info/?p=4198',0,'revision','',0),(4199,1,'2021-03-27 19:01:26','2021-03-27 19:01:26','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Featured services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                            <i></i>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            System Amusement News and Updates                            \n	    <h3>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717-300x200.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717-600x400.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Join our pool league! Click the button below to view our schedule and info!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 19:01:26','2021-03-27 19:01:26','',3193,'https://sa7717.dev34.info/?p=4199',0,'revision','',0),(4200,1,'2021-03-27 19:01:26','2021-03-27 19:01:26','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Featured services                                \n	    <h3>\n                        We are famous for features                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                            <i></i>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            System Amusement News and Updates                            \n	    <h3>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717-300x200.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717-600x400.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Join our pool league! Click the button below to view our schedule and info!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 19:01:26','2021-03-27 19:01:26','',3193,'https://sa7717.dev34.info/?p=4200',0,'revision','',0),(4201,1,'2021-03-27 19:01:27','2021-03-27 19:01:27','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss outfitting your business?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                            <i></i>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            System Amusement News and Updates                            \n	    <h3>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717-300x200.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717-600x400.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Join our pool league! Click the button below to view our schedule and info!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 19:01:27','2021-03-27 19:01:27','',3193,'https://sa7717.dev34.info/?p=4201',0,'revision','',0),(4202,1,'2021-03-27 19:01:42','2021-03-27 19:01:42','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss outfitting your business?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                            <i></i>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            System Amusement News and Updates                            \n	    <h3>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717-300x200.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717-600x400.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Join our pool league! Click the button below to view our schedule and info!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 19:01:42','2021-03-27 19:01:42','',3193,'https://sa7717.dev34.info/?p=4202',0,'revision','',0),(4203,1,'2021-03-27 19:01:42','2021-03-27 19:01:42','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss outfitting your business?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                            <i></i>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            System Amusement News and Updates                            \n	    <h3>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717-300x200.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717-600x400.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Join our pool league! Click the button below to view our schedule and info!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 19:01:42','2021-03-27 19:01:42','',3193,'https://sa7717.dev34.info/?p=4203',0,'revision','',0),(4216,1,'2021-03-27 19:08:47','2021-03-27 19:08:47','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            System Amusement News and Updates                            \n	    <h3>\n                        Stay up to date about products, leagues and more                    \n            </h3>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 19:08:47','2021-03-27 19:08:47','',3193,'https://sa7717.dev34.info/?p=4216',0,'revision','',0),(4204,1,'2021-03-27 19:01:43','2021-03-27 19:01:43','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                            <i></i>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            System Amusement News and Updates                            \n	    <h3>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717-300x200.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717-600x400.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Join our pool league! Click the button below to view our schedule and info!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 19:01:43','2021-03-27 19:01:43','',3193,'https://sa7717.dev34.info/?p=4204',0,'revision','',0),(4205,1,'2021-03-27 19:01:59','2021-03-27 19:01:59','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                            <i></i>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            System Amusement News and Updates                            \n	    <h3>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717-300x200.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717-600x400.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Join our pool league! Click the button below to view our schedule and info!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 19:01:59','2021-03-27 19:01:59','',3193,'https://sa7717.dev34.info/?p=4205',0,'revision','',0),(4206,1,'2021-03-27 19:01:59','2021-03-27 19:01:59','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                            <i></i>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            System Amusement News and Updates                            \n	    <h3>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717-300x200.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717-600x400.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Join our pool league! Click the button below to view our schedule and info!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 19:01:59','2021-03-27 19:01:59','',3193,'https://sa7717.dev34.info/?p=4206',0,'revision','',0),(4207,1,'2021-03-27 19:01:59','2021-03-27 19:01:59','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                            <i></i>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            System Amusement News and Updates                            \n	    <h3>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717-300x200.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717-600x400.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Join our pool league! Click the button below to view our schedule and info!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 19:01:59','2021-03-27 19:01:59','',3193,'https://sa7717.dev34.info/?p=4207',0,'revision','',0),(4208,1,'2021-03-27 19:04:56','2021-03-27 19:04:56','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                            <i></i>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            System Amusement News and Updates                            \n	    <h3>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717-300x200.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717-600x400.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Join our pool league! Click the button below to view our schedule and info!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 19:04:56','2021-03-27 19:04:56','',3193,'https://sa7717.dev34.info/?p=4208',0,'revision','',0),(4209,1,'2021-03-27 19:04:57','2021-03-27 19:04:57','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                            <i></i>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            System Amusement News and Updates                            \n	    <h3>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717-300x200.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717-600x400.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Join our pool league! Click the button below to view our schedule and info!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 19:04:57','2021-03-27 19:04:57','',3193,'https://sa7717.dev34.info/?p=4209',0,'revision','',0),(4210,1,'2021-03-27 19:04:57','2021-03-27 19:04:57','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                            <i></i>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            System Amusement News and Updates                            \n	    <h3>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717-300x200.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717-600x400.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Join our pool league! Click the button below to view our schedule and info!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 19:04:57','2021-03-27 19:04:57','',3193,'https://sa7717.dev34.info/?p=4210',0,'revision','',0),(4211,1,'2021-03-27 19:06:55','2021-03-27 19:06:55','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                            <i></i>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            System Amusement News and Updates                            \n	    <h3>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717-300x200.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717-600x400.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Join our pool league! Click the button below to view our schedule and info!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 19:06:55','2021-03-27 19:06:55','',3193,'https://sa7717.dev34.info/?p=4211',0,'revision','',0),(4212,1,'2021-03-27 19:06:55','2021-03-27 19:06:55','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                            <i></i>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            System Amusement News and Updates                            \n	    <h3>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717-300x200.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717-600x400.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Join our pool league! Click the button below to view our schedule and info!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 19:06:55','2021-03-27 19:06:55','',3193,'https://sa7717.dev34.info/?p=4212',0,'revision','',0),(4213,1,'2021-03-27 19:06:55','2021-03-27 19:06:55','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                            <i></i>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            System Amusement News and Updates                            \n	    <h3>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717-300x200.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717-600x400.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Join our pool league! Click the button below to view our schedule and info!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 19:06:55','2021-03-27 19:06:55','',3193,'https://sa7717.dev34.info/?p=4213',0,'revision','',0),(4214,1,'2021-03-27 19:08:46','2021-03-27 19:08:46','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                            <i></i>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            System Amusement News and Updates                            \n	    <h3>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717-300x200.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717-600x400.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Join our pool league! Click the button below to view our schedule and info!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 19:08:46','2021-03-27 19:08:46','',3193,'https://sa7717.dev34.info/?p=4214',0,'revision','',0),(4215,1,'2021-03-27 19:08:47','2021-03-27 19:08:47','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                            <i></i>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            System Amusement News and Updates                            \n	    <h3>\n                        We’re here to share story &amp; news from resource                    \n            </h3>\n		A blog <b>(a truncation of &#8220;weblog&#8221;)</b> is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text		\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717-300x200.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/shooting-pool-717-600x400.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Join our pool league! Click the button below to view our schedule and info!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 19:08:47','2021-03-27 19:08:47','',3193,'https://sa7717.dev34.info/?p=4215',0,'revision','',0),(4217,1,'2021-03-27 19:15:55','2021-03-27 19:15:55','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            System Amusement News and Updates                            \n	    <h3>\n                        Stay up to date about products, leagues and more                    \n            </h3>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 19:15:55','2021-03-27 19:15:55','',3193,'https://sa7717.dev34.info/?p=4217',0,'revision','',0);
INSERT INTO `wp9s_posts` VALUES (4218,1,'2021-03-27 19:15:56','2021-03-27 19:15:56','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            System Amusement News and Updates                            \n	    <h3>\n                        Stay up to date about products, leagues and more                    \n            </h3>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 19:15:56','2021-03-27 19:15:56','',3193,'https://sa7717.dev34.info/?p=4218',0,'revision','',0),(4219,1,'2021-03-27 19:15:58','2021-03-27 19:15:58','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p>Contact us today to get your location setup with Touch Tunes!</p>		\n		https://youtu.be/taZaMKbW5VQ		\n            System Amusement News and Updates                            \n	    <h3>\n                        Stay up to date about products, leagues and more                    \n            </h3>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 19:15:58','2021-03-27 19:15:58','',3193,'https://sa7717.dev34.info/?p=4219',0,'revision','',0),(4220,1,'2021-03-27 19:18:03','2021-03-27 19:18:03','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p>Contact us today to get your location setup with Touch Tunes!</p>		\n		https://youtu.be/taZaMKbW5VQ		\n            System Amusement News and Updates                            \n	    <h3>\n                        Stay up to date about products, leagues and more                    \n            </h3>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 19:18:03','2021-03-27 19:18:03','',3193,'https://sa7717.dev34.info/?p=4220',0,'revision','',0),(4221,1,'2021-03-27 19:18:03','2021-03-27 19:18:03','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p>Contact us today to get your location setup with Touch Tunes!</p>		\n		https://youtu.be/taZaMKbW5VQ		\n            System Amusement News and Updates                            \n	    <h3>\n                        Stay up to date about products, leagues and more                    \n            </h3>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 19:18:03','2021-03-27 19:18:03','',3193,'https://sa7717.dev34.info/?p=4221',0,'revision','',0),(4222,1,'2021-03-27 19:18:07','2021-03-27 19:18:07','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p>https://youtu.be/taZaMKbW5VQ		\n            System Amusement News and Updates                            \n	    <h3>\n                        Stay up to date about products, leagues and more                    \n            </h3>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 19:18:07','2021-03-27 19:18:07','',3193,'https://sa7717.dev34.info/?p=4222',0,'revision','',0),(4223,1,'2021-03-27 19:18:16','2021-03-27 19:18:16','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p>https://youtu.be/taZaMKbW5VQ		\n            System Amusement News and Updates                            \n	    <h3>\n                        Stay up to date about products, leagues and more                    \n            </h3>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 19:18:16','2021-03-27 19:18:16','',3193,'https://sa7717.dev34.info/?p=4223',0,'revision','',0),(4224,1,'2021-03-27 19:18:16','2021-03-27 19:18:16','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p>https://youtu.be/taZaMKbW5VQ		\n            System Amusement News and Updates                            \n	    <h3>\n                        Stay up to date about products, leagues and more                    \n            </h3>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 19:18:16','2021-03-27 19:18:16','',3193,'https://sa7717.dev34.info/?p=4224',0,'revision','',0),(4225,1,'2021-03-27 19:18:17','2021-03-27 19:18:17','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p>https://youtu.be/taZaMKbW5VQ		\n            System Amusement News and Updates                            \n	    <h3>\n                        Stay up to date about products, leagues and more                    \n            </h3>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 19:18:17','2021-03-27 19:18:17','',3193,'https://sa7717.dev34.info/?p=4225',0,'revision','',0),(4226,1,'2021-03-27 19:20:04','2021-03-27 19:20:04','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p>https://youtu.be/taZaMKbW5VQ		\n            System Amusement News and Updates                            \n	    <h3>\n                        Stay up to date about products, leagues and more                    \n            </h3>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 19:20:04','2021-03-27 19:20:04','',3193,'https://sa7717.dev34.info/?p=4226',0,'revision','',0),(4227,1,'2021-03-27 19:20:04','2021-03-27 19:20:04','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Featured services                                \n	    <h3>\n                            <i></i>\n                        We are famous for features                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p>https://youtu.be/taZaMKbW5VQ		\n            System Amusement News and Updates                            \n	    <h3>\n                        Stay up to date about products, leagues and more                    \n            </h3>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 19:20:04','2021-03-27 19:20:04','',3193,'https://sa7717.dev34.info/?p=4227',0,'revision','',0),(4228,1,'2021-03-27 19:20:04','2021-03-27 19:20:04','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment and Solutions                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p>https://youtu.be/taZaMKbW5VQ		\n            System Amusement News and Updates                            \n	    <h3>\n                        Stay up to date about products, leagues and more                    \n            </h3>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 19:20:04','2021-03-27 19:20:04','',3193,'https://sa7717.dev34.info/?p=4228',0,'revision','',0),(4229,1,'2021-03-27 19:21:20','2021-03-27 19:21:20','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment and Solutions                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p>https://youtu.be/taZaMKbW5VQ		\n            System Amusement News and Updates                            \n	    <h3>\n                        Stay up to date about products, leagues and more                    \n            </h3>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 19:21:20','2021-03-27 19:21:20','',3193,'https://sa7717.dev34.info/?p=4229',0,'revision','',0),(4230,1,'2021-03-27 19:21:20','2021-03-27 19:21:20','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment and Solutions                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p>https://youtu.be/taZaMKbW5VQ		\n            System Amusement News and Updates                            \n	    <h3>\n                        Stay up to date about products, leagues and more                    \n            </h3>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 19:21:20','2021-03-27 19:21:20','',3193,'https://sa7717.dev34.info/?p=4230',0,'revision','',0),(4231,1,'2021-03-27 19:21:21','2021-03-27 19:21:21','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment and Solutions                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p>https://youtu.be/taZaMKbW5VQ		\n            System Amusement News and Updates                            \n	    <h3>\n                        Stay up to date about products, leagues and more                    \n            </h3>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 19:21:21','2021-03-27 19:21:21','',3193,'https://sa7717.dev34.info/?p=4231',0,'revision','',0),(4232,1,'2021-03-27 19:23:19','2021-03-27 19:23:19','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment and Solutions                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p>https://youtu.be/taZaMKbW5VQ		\n            System Amusement News and Updates                            \n	    <h3>\n                        Stay up to date about products, leagues and more                    \n            </h3>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 19:23:19','2021-03-27 19:23:19','',3193,'https://sa7717.dev34.info/?p=4232',0,'revision','',0),(4233,1,'2021-03-27 19:23:19','2021-03-27 19:23:19','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment and Solutions                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p>https://youtu.be/taZaMKbW5VQ		\n            System Amusement News and Updates                            \n	    <h3>\n                        Stay up to date about products, leagues and more                    \n            </h3>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 19:23:19','2021-03-27 19:23:19','',3193,'https://sa7717.dev34.info/?p=4233',0,'revision','',0),(4234,1,'2021-03-27 19:23:19','2021-03-27 19:23:19','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment and Solutions                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            System Amusement News and Updates                            \n	    <h3>\n                        Stay up to date about products, leagues and more                    \n            </h3>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 19:23:19','2021-03-27 19:23:19','',3193,'https://sa7717.dev34.info/?p=4234',0,'revision','',0),(4235,1,'2021-03-27 19:24:29','2021-03-27 19:24:29','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment and Solutions                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            System Amusement News and Updates                            \n	    <h3>\n                        Stay up to date about products, leagues and more                    \n            </h3>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 19:24:29','2021-03-27 19:24:29','',3193,'https://sa7717.dev34.info/?p=4235',0,'revision','',0),(4236,1,'2021-03-27 19:24:29','2021-03-27 19:24:29','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment and Solutions                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            System Amusement News and Updates                            \n	    <h3>\n                        Stay up to date about products, leagues and more                    \n            </h3>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 19:24:29','2021-03-27 19:24:29','',3193,'https://sa7717.dev34.info/?p=4236',0,'revision','',0),(4237,1,'2021-03-27 19:24:30','2021-03-27 19:24:30','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment and Solutions                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            System Amusement News and Updates                            \n	    <h3>\n                        Stay up to date about products, leagues and more                    \n            </h3>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 19:24:30','2021-03-27 19:24:30','',3193,'https://sa7717.dev34.info/?p=4237',0,'revision','',0),(4238,1,'2021-03-27 19:25:31','2021-03-27 19:25:31','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment and Solutions                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            System Amusement News and Updates                            \n	    <h3>\n                        Stay up to date about products, leagues and more                    \n            </h3>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 19:25:31','2021-03-27 19:25:31','',3193,'https://sa7717.dev34.info/?p=4238',0,'revision','',0),(4239,1,'2021-03-27 19:25:32','2021-03-27 19:25:32','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment and Solutions                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            System Amusement News and Updates                            \n	    <h3>\n                        Stay up to date about products, leagues and more                    \n            </h3>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 19:25:32','2021-03-27 19:25:32','',3193,'https://sa7717.dev34.info/?p=4239',0,'revision','',0),(4240,1,'2021-03-27 19:25:32','2021-03-27 19:25:32','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            System Amusement News and Updates                            \n	    <h3>\n                        Stay up to date about products, leagues and more                    \n            </h3>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 19:25:32','2021-03-27 19:25:32','',3193,'https://sa7717.dev34.info/?p=4240',0,'revision','',0),(4241,1,'2021-03-27 19:27:44','2021-03-27 19:27:44','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            System Amusement News and Updates                            \n	    <h3>\n                        Stay up to date about products, leagues and more                    \n            </h3>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 19:27:44','2021-03-27 19:27:44','',3193,'https://sa7717.dev34.info/?p=4241',0,'revision','',0),(4242,1,'2021-03-27 19:27:44','2021-03-27 19:27:44','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            System Amusement News and Updates                            \n	    <h3>\n                        Stay up to date about products, leagues and more                    \n            </h3>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 19:27:44','2021-03-27 19:27:44','',3193,'https://sa7717.dev34.info/?p=4242',0,'revision','',0),(4243,1,'2021-03-27 19:27:45','2021-03-27 19:27:45','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n            1\n            %\n                    Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            System Amusement News and Updates                            \n	    <h3>\n                        Stay up to date about products, leagues and more                    \n            </h3>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 19:27:45','2021-03-27 19:27:45','',3193,'https://sa7717.dev34.info/?p=4243',0,'revision','',0),(4248,1,'2021-03-27 20:19:50','2021-03-27 20:19:50','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            System Amusement News and Updates                            \n	    <h3>\n                        Stay up to date about products, leagues and more                    \n            </h3>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 20:19:50','2021-03-27 20:19:50','',3193,'https://sa7717.dev34.info/?p=4248',0,'revision','',0),(4249,1,'2021-03-27 20:21:43','2021-03-27 20:21:43','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            System Amusement News and Updates                            \n	    <h3>\n                        Stay up to date about products, leagues and more                    \n            </h3>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 20:21:43','2021-03-27 20:21:43','',3193,'https://sa7717.dev34.info/?p=4249',0,'revision','',0),(4245,1,'2021-03-27 19:54:09','2021-03-27 19:54:09','','Munsters-LE-Details-19','','inherit','open','closed','','munsters-le-details-19','','','2021-03-27 19:54:09','2021-03-27 19:54:09','',0,'https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19.jpeg',0,'attachment','image/jpeg',0),(4246,1,'2021-03-27 20:19:50','2021-03-27 20:19:50','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n            1\n            %\n                    Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            System Amusement News and Updates                            \n	    <h3>\n                        Stay up to date about products, leagues and more                    \n            </h3>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 20:19:50','2021-03-27 20:19:50','',3193,'https://sa7717.dev34.info/?p=4246',0,'revision','',0),(4247,1,'2021-03-27 20:19:50','2021-03-27 20:19:50','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n            1\n            %\n                    Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            System Amusement News and Updates                            \n	    <h3>\n                        Stay up to date about products, leagues and more                    \n            </h3>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 20:19:50','2021-03-27 20:19:50','',3193,'https://sa7717.dev34.info/?p=4247',0,'revision','',0),(4250,1,'2021-03-27 20:21:43','2021-03-27 20:21:43','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            System Amusement News and Updates                            \n	    <h3>\n                        Stay up to date about products, leagues and more                    \n            </h3>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 20:21:43','2021-03-27 20:21:43','',3193,'https://sa7717.dev34.info/?p=4250',0,'revision','',0),(4251,1,'2021-03-27 20:21:43','2021-03-27 20:21:43','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            System Amusement News and Updates                            \n	    <h3>\n                        Stay up to date about products, leagues and more                    \n            </h3>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 20:21:43','2021-03-27 20:21:43','',3193,'https://sa7717.dev34.info/?p=4251',0,'revision','',0),(4252,1,'2021-03-27 20:23:45','2021-03-27 20:23:45','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            System Amusement News and Updates                            \n	    <h3>\n                        Stay up to date about products, leagues and more                    \n            </h3>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 20:23:45','2021-03-27 20:23:45','',3193,'https://sa7717.dev34.info/?p=4252',0,'revision','',0),(4253,1,'2021-03-27 20:23:46','2021-03-27 20:23:46','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            System Amusement News and Updates                            \n	    <h3>\n                        Stay up to date about products, leagues and more                    \n            </h3>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 20:23:46','2021-03-27 20:23:46','',3193,'https://sa7717.dev34.info/?p=4253',0,'revision','',0),(4254,1,'2021-03-27 20:23:46','2021-03-27 20:23:46','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            System Amusement News and Updates                            \n	    <h3>\n                        Stay up to date about products, leagues and more                    \n            </h3>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 20:23:46','2021-03-27 20:23:46','',3193,'https://sa7717.dev34.info/?p=4254',0,'revision','',0),(4255,1,'2021-03-27 20:25:40','2021-03-27 20:25:40','','Billiards-Triangle-hd-wallpapers','','inherit','open','closed','','billiards-triangle-hd-wallpapers','','','2021-03-27 20:25:40','2021-03-27 20:25:40','',3193,'https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg',0,'attachment','image/jpeg',0),(4256,1,'2021-03-27 20:26:37','2021-03-27 20:26:37','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            System Amusement News and Updates                            \n	    <h3>\n                        Stay up to date about products, leagues and more                    \n            </h3>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 20:26:37','2021-03-27 20:26:37','',3193,'https://sa7717.dev34.info/?p=4256',0,'revision','',0),(4257,1,'2021-03-27 20:26:37','2021-03-27 20:26:37','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            System Amusement News and Updates                            \n	    <h3>\n                        Stay up to date about products, leagues and more                    \n            </h3>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 20:26:37','2021-03-27 20:26:37','',3193,'https://sa7717.dev34.info/?p=4257',0,'revision','',0),(4285,1,'2021-03-27 20:34:51','2021-03-27 20:34:51','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Learn About Our Pool League, and Get Signed Up Today!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 20:34:51','2021-03-27 20:34:51','',3193,'https://sa7717.dev34.info/?p=4285',0,'revision','',0),(4264,1,'2021-03-27 20:28:11','2021-03-27 20:28:11','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            System Amusement News and Updates                            \n	    <h3>\n                        Stay up to date about products, leagues and more                    \n            </h3>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Learn About Our Pool League, and Get Signed Up Today!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 20:28:11','2021-03-27 20:28:11','',3193,'https://sa7717.dev34.info/?p=4264',0,'revision','',0),(4258,1,'2021-03-27 20:26:38','2021-03-27 20:26:38','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            System Amusement News and Updates                            \n	    <h3>\n                        Stay up to date about products, leagues and more                    \n            </h3>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 20:26:38','2021-03-27 20:26:38','',3193,'https://sa7717.dev34.info/?p=4258',0,'revision','',0),(4259,1,'2021-03-27 20:27:15','2021-03-27 20:27:15','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            System Amusement News and Updates                            \n	    <h3>\n                        Stay up to date about products, leagues and more                    \n            </h3>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 20:27:15','2021-03-27 20:27:15','',3193,'https://sa7717.dev34.info/?p=4259',0,'revision','',0),(4260,1,'2021-03-27 20:27:15','2021-03-27 20:27:15','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            System Amusement News and Updates                            \n	    <h3>\n                        Stay up to date about products, leagues and more                    \n            </h3>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 20:27:15','2021-03-27 20:27:15','',3193,'https://sa7717.dev34.info/?p=4260',0,'revision','',0),(4261,1,'2021-03-27 20:27:15','2021-03-27 20:27:15','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            System Amusement News and Updates                            \n	    <h3>\n                        Stay up to date about products, leagues and more                    \n            </h3>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 20:27:15','2021-03-27 20:27:15','',3193,'https://sa7717.dev34.info/?p=4261',0,'revision','',0),(4262,1,'2021-03-27 20:28:10','2021-03-27 20:28:10','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            System Amusement News and Updates                            \n	    <h3>\n                        Stay up to date about products, leagues and more                    \n            </h3>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 20:28:10','2021-03-27 20:28:10','',3193,'https://sa7717.dev34.info/?p=4262',0,'revision','',0),(4263,1,'2021-03-27 20:28:10','2021-03-27 20:28:10','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            System Amusement News and Updates                            \n	    <h3>\n                        Stay up to date about products, leagues and more                    \n            </h3>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 20:28:10','2021-03-27 20:28:10','',3193,'https://sa7717.dev34.info/?p=4263',0,'revision','',0),(4265,1,'2021-03-27 20:28:39','2021-03-27 20:28:39','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            System Amusement News and Updates                            \n	    <h3>\n                        Stay up to date about products, leagues and more                    \n            </h3>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Learn About Our Pool League, and Get Signed Up Today!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 20:28:39','2021-03-27 20:28:39','',3193,'https://sa7717.dev34.info/?p=4265',0,'revision','',0),(4266,1,'2021-03-27 20:28:39','2021-03-27 20:28:39','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            System Amusement News and Updates                            \n	    <h3>\n                        Stay up to date about products, leagues and more                    \n            </h3>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Learn About Our Pool League, and Get Signed Up Today!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 20:28:39','2021-03-27 20:28:39','',3193,'https://sa7717.dev34.info/?p=4266',0,'revision','',0),(4267,1,'2021-03-27 20:28:39','2021-03-27 20:28:39','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            System Amusement News and Updates                            \n	    <h3>\n                        Stay up to date about products, leagues and more                    \n            </h3>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Learn About Our Pool League, and Get Signed Up Today!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 20:28:39','2021-03-27 20:28:39','',3193,'https://sa7717.dev34.info/?p=4267',0,'revision','',0),(4268,1,'2021-03-27 20:29:28','2021-03-27 20:29:28','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            System Amusement News and Updates                            \n	    <h3>\n                        Stay up to date about products, leagues and more                    \n            </h3>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Learn About Our Pool League, and Get Signed Up Today!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 20:29:28','2021-03-27 20:29:28','',3193,'https://sa7717.dev34.info/?p=4268',0,'revision','',0),(4269,1,'2021-03-27 20:29:28','2021-03-27 20:29:28','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            System Amusement News and Updates                            \n	    <h3>\n                        Stay up to date about products, leagues and more                    \n            </h3>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Learn About Our Pool League, and Get Signed Up Today!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 20:29:28','2021-03-27 20:29:28','',3193,'https://sa7717.dev34.info/?p=4269',0,'revision','',0),(4270,1,'2021-03-27 20:29:28','2021-03-27 20:29:28','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            System Amusement News and Updates                            \n	    <h3>\n                        Stay up to date about products, leagues and more                    \n            </h3>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Learn About Our Pool League, and Get Signed Up Today!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 20:29:28','2021-03-27 20:29:28','',3193,'https://sa7717.dev34.info/?p=4270',0,'revision','',0),(4271,1,'2021-03-27 20:30:44','2021-03-27 20:30:44','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            System Amusement News and Updates                            \n	    <h3>\n                        Stay up to date about products, leagues and more                    \n            </h3>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Learn About Our Pool League, and Get Signed Up Today!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 20:30:44','2021-03-27 20:30:44','',3193,'https://sa7717.dev34.info/?p=4271',0,'revision','',0),(4272,1,'2021-03-27 20:30:45','2021-03-27 20:30:45','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            System Amusement News and Updates                            \n	    <h3>\n                        Stay up to date about products, leagues and more                    \n            </h3>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Learn About Our Pool League, and Get Signed Up Today!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 20:30:45','2021-03-27 20:30:45','',3193,'https://sa7717.dev34.info/?p=4272',0,'revision','',0),(4273,1,'2021-03-27 20:30:45','2021-03-27 20:30:45','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            System Amusement News and Updates                            \n	    <h3>\n                        Stay up to date about products, leagues and more                    \n            </h3>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Learn About Our Pool League, and Get Signed Up Today!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 20:30:45','2021-03-27 20:30:45','',3193,'https://sa7717.dev34.info/?p=4273',0,'revision','',0),(4274,1,'2021-03-27 20:30:49','2021-03-27 20:30:49','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            System Amusement News and Updates                            \n	    <h3>\n                        Stay up to date about products, leagues and more                    \n            </h3>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Learn About Our Pool League, and Get Signed Up Today!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 20:30:49','2021-03-27 20:30:49','',3193,'https://sa7717.dev34.info/?p=4274',0,'revision','',0),(4275,1,'2021-03-27 20:30:49','2021-03-27 20:30:49','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            System Amusement News and Updates                            \n	    <h3>\n                        Stay up to date about products, leagues and more                    \n            </h3>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Learn About Our Pool League, and Get Signed Up Today!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 20:30:49','2021-03-27 20:30:49','',3193,'https://sa7717.dev34.info/?p=4275',0,'revision','',0),(4276,1,'2021-03-27 20:30:50','2021-03-27 20:30:50','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            System Amusement News and Updates                            \n	    <h3>\n                        Stay up to date about products, leagues and more                    \n            </h3>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Learn About Our Pool League, and Get Signed Up Today!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 20:30:50','2021-03-27 20:30:50','',3193,'https://sa7717.dev34.info/?p=4276',0,'revision','',0),(4277,1,'2021-03-27 20:30:56','2021-03-27 20:30:56','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            System Amusement News and Updates                            \n	    <h3>\n                        Stay up to date about products, leagues and more                    \n            </h3>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Learn About Our Pool League, and Get Signed Up Today!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 20:30:56','2021-03-27 20:30:56','',3193,'https://sa7717.dev34.info/?p=4277',0,'revision','',0),(4278,1,'2021-03-27 20:30:56','2021-03-27 20:30:56','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            System Amusement News and Updates                            \n	    <h3>\n                        Stay up to date about products, leagues and more                    \n            </h3>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Learn About Our Pool League, and Get Signed Up Today!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 20:30:56','2021-03-27 20:30:56','',3193,'https://sa7717.dev34.info/?p=4278',0,'revision','',0);
INSERT INTO `wp9s_posts` VALUES (4279,1,'2021-03-27 20:30:56','2021-03-27 20:30:56','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            System Amusement News and Updates                            \n	    <h3>\n                        Stay up to date about products, leagues and more                    \n            </h3>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Learn About Our Pool League, and Get Signed Up Today!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 20:30:56','2021-03-27 20:30:56','',3193,'https://sa7717.dev34.info/?p=4279',0,'revision','',0),(4280,1,'2021-03-27 20:33:47','2021-03-27 20:33:47','<a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>','blog origianal home 117','','publish','closed','closed','','blog-origianal-home-117','','','2021-03-27 20:33:47','2021-03-27 20:33:47','',0,'https://sa7717.dev34.info/?elementor_library=blog-origianal-home-117',0,'elementor_library','',0),(4281,1,'2021-03-27 20:33:47','2021-03-27 20:33:47','','blog origianal home 117','','inherit','closed','closed','','4280-revision-v1','','','2021-03-27 20:33:47','2021-03-27 20:33:47','',4280,'https://sa7717.dev34.info/?p=4281',0,'revision','',0),(4282,1,'2021-03-27 20:33:47','2021-03-27 20:33:47','<a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>','blog origianal home 117','','inherit','closed','closed','','4280-revision-v1','','','2021-03-27 20:33:47','2021-03-27 20:33:47','',4280,'https://sa7717.dev34.info/?p=4282',0,'revision','',0),(4283,1,'2021-03-27 20:34:50','2021-03-27 20:34:50','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            System Amusement News and Updates                            \n	    <h3>\n                        Stay up to date about products, leagues and more                    \n            </h3>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Learn About Our Pool League, and Get Signed Up Today!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 20:34:50','2021-03-27 20:34:50','',3193,'https://sa7717.dev34.info/?p=4283',0,'revision','',0),(4284,1,'2021-03-27 20:34:50','2021-03-27 20:34:50','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            System Amusement News and Updates                            \n	    <h3>\n                        Stay up to date about products, leagues and more                    \n            </h3>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"https://sa7717.dev34.info/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://sa7717.dev34.info/author/admin/\">Admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Learn About Our Pool League, and Get Signed Up Today!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 20:34:50','2021-03-27 20:34:50','',3193,'https://sa7717.dev34.info/?p=4284',0,'revision','',0),(4286,1,'2021-03-27 20:35:45','2021-03-27 20:35:45','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Learn About Our Pool League, and Get Signed Up Today!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 20:35:45','2021-03-27 20:35:45','',3193,'https://sa7717.dev34.info/?p=4286',0,'revision','',0),(4287,1,'2021-03-27 20:35:47','2021-03-27 20:35:47','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Learn About Our Pool League, and Get Signed Up Today!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 20:35:47','2021-03-27 20:35:47','',3193,'https://sa7717.dev34.info/?p=4287',0,'revision','',0),(4288,1,'2021-03-27 20:35:47','2021-03-27 20:35:47','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Learn About Our Pool League, and Get Signed Up Today!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 20:35:47','2021-03-27 20:35:47','',3193,'https://sa7717.dev34.info/?p=4288',0,'revision','',0),(4289,1,'2021-03-27 20:39:19','2021-03-27 20:39:19','About us                                \n	    <h3>\n                        Consulting is a law firm specialising in corporate finance work                    \n            </h3>\n		Advice on comprehensive legal solutions and legal planning on all aspects of business, including: issues under Company Law & Exchange Control Regulations.		\n        80%\n    <h3>Work<br/> Development</h3>\n        90%\n    <h3>Plan<br/> Fulfilled</h3>\n        50%\n    <h3>UI/UX<br/> Desigining</h3>\n										<img width=\"535\" height=\"519\" src=\"https://sa7717.dev34.info/wp-content/uploads/2020/02/h4-about1-1.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2020/02/h4-about1-1.png 535w, https://sa7717.dev34.info/wp-content/uploads/2020/02/h4-about1-1-300x291.png 300w\" sizes=\"(max-width: 535px) 100vw, 535px\" />','counter block 717','','publish','closed','closed','','counter-block-717','','','2021-03-27 20:39:19','2021-03-27 20:39:19','',0,'https://sa7717.dev34.info/?elementor_library=counter-block-717',0,'elementor_library','',0),(4290,1,'2021-03-27 20:39:19','2021-03-27 20:39:19','','counter block 717','','inherit','closed','closed','','4289-revision-v1','','','2021-03-27 20:39:19','2021-03-27 20:39:19','',4289,'https://sa7717.dev34.info/?p=4290',0,'revision','',0),(4291,1,'2021-03-27 20:39:19','2021-03-27 20:39:19','About us                                \n	    <h3>\n                        Consulting is a law firm specialising in corporate finance work                    \n            </h3>\n		Advice on comprehensive legal solutions and legal planning on all aspects of business, including: issues under Company Law & Exchange Control Regulations.		\n        80%\n    <h3>Work<br/> Development</h3>\n        90%\n    <h3>Plan<br/> Fulfilled</h3>\n        50%\n    <h3>UI/UX<br/> Desigining</h3>\n										<img width=\"535\" height=\"519\" src=\"https://sa7717.dev34.info/wp-content/uploads/2020/02/h4-about1-1.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2020/02/h4-about1-1.png 535w, https://sa7717.dev34.info/wp-content/uploads/2020/02/h4-about1-1-300x291.png 300w\" sizes=\"(max-width: 535px) 100vw, 535px\" />','counter block 717','','inherit','closed','closed','','4289-revision-v1','','','2021-03-27 20:39:19','2021-03-27 20:39:19','',4289,'https://sa7717.dev34.info/?p=4291',0,'revision','',0),(4292,1,'2021-03-27 20:39:42','2021-03-27 20:39:42','Funfact                                \n	    <h3>\n                        Don’t misread here we have random &amp; interesting facts.                    \n            </h3>\n		Starfish can re-grow their arms. In fact, a single arm can regenerate a whole body. Google\'s founders were willing\nto sell & consult.		\n                    <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n            1\n            +\n                    Team members\n            1\n            +\n                    Winning Awards\n            1\n            +\n                    Client’s Feedback\n            1\n            +\n                    Completed Works','counter 7717','','publish','closed','closed','','counter-7717','','','2021-03-27 20:39:42','2021-03-27 20:39:42','',0,'https://sa7717.dev34.info/?elementor_library=counter-7717',0,'elementor_library','',0),(4293,1,'2021-03-27 20:39:42','2021-03-27 20:39:42','','counter 7717','','inherit','closed','closed','','4292-revision-v1','','','2021-03-27 20:39:42','2021-03-27 20:39:42','',4292,'https://sa7717.dev34.info/?p=4293',0,'revision','',0),(4294,1,'2021-03-27 20:39:42','2021-03-27 20:39:42','Funfact                                \n	    <h3>\n                        Don’t misread here we have random &amp; interesting facts.                    \n            </h3>\n		Starfish can re-grow their arms. In fact, a single arm can regenerate a whole body. Google\'s founders were willing\nto sell & consult.		\n                    <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n            1\n            +\n                    Team members\n            1\n            +\n                    Winning Awards\n            1\n            +\n                    Client’s Feedback\n            1\n            +\n                    Completed Works','counter 7717','','inherit','closed','closed','','4292-revision-v1','','','2021-03-27 20:39:42','2021-03-27 20:39:42','',4292,'https://sa7717.dev34.info/?p=4294',0,'revision','',0),(4299,1,'2021-03-27 20:55:10','2021-03-27 20:55:10','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n        100%\n    <h3>Quality Equipment</h3>\n        90%\n    <h3>Reliable Support</h3>\n        50%\n    <h3>Attention to Detail</h3>\n        50%\n    <h3>Client Dedication</h3>\n										<img width=\"1000\" height=\"1495\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody.png 1000w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-201x300.png 201w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-685x1024.png 685w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-768x1148.png 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-600x897.png 600w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Learn About Our Pool League, and Get Signed Up Today!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 20:55:10','2021-03-27 20:55:10','',3193,'https://sa7717.dev34.info/?p=4299',0,'revision','',0),(4313,1,'2021-03-27 21:04:35','2021-03-27 21:04:35','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our 50+ Years of Dedication to our Clients!                    \n            </h3>\n		<p>Your success is our success!</p>		\n        100%\n    <h3>Quality Equipment</h3>\n        100%\n    <h3>Attention to Detail</h3>\n        100%\n    <h3>Reliable Support</h3>\n        100%\n    <h3>Client Dedication</h3>\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Learn About Our Pool League, and Get Signed Up Today!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 21:04:35','2021-03-27 21:04:35','',3193,'https://sa7717.dev34.info/?p=4313',0,'revision','',0),(4307,1,'2021-03-27 20:58:34','2021-03-27 20:58:34','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n        100%\n    <h3>Quality Equipment</h3>\n        100%\n    <h3>Reliable Support</h3>\n        100%\n    <h3>Attention to Detail</h3>\n        100%\n    <h3>Client Dedication</h3>\n										<img width=\"1000\" height=\"1495\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody.png 1000w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-201x300.png 201w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-685x1024.png 685w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-768x1148.png 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-600x897.png 600w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Learn About Our Pool League, and Get Signed Up Today!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 20:58:34','2021-03-27 20:58:34','',3193,'https://sa7717.dev34.info/?p=4307',0,'revision','',0),(4298,1,'2021-03-27 20:54:17','2021-03-27 20:54:17','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n        100%\n    <h3>Quality Equipment</h3>\n        90%\n    <h3>Reliable Support</h3>\n        50%\n    <h3>Attention to Detail</h3>\n        50%\n    <h3>Client Dedication</h3>\n										<img width=\"1000\" height=\"1495\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody.png 1000w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-201x300.png 201w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-685x1024.png 685w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-768x1148.png 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-600x897.png 600w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Learn About Our Pool League, and Get Signed Up Today!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 20:54:17','2021-03-27 20:54:17','',3193,'https://sa7717.dev34.info/?p=4298',0,'revision','',0),(4296,1,'2021-03-27 20:54:15','2021-03-27 20:54:15','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Learn About Our Pool League, and Get Signed Up Today!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 20:54:15','2021-03-27 20:54:15','',3193,'https://sa7717.dev34.info/?p=4296',0,'revision','',0),(4297,1,'2021-03-27 20:54:17','2021-03-27 20:54:17','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Learn About Our Pool League, and Get Signed Up Today!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 20:54:17','2021-03-27 20:54:17','',3193,'https://sa7717.dev34.info/?p=4297',0,'revision','',0),(4300,1,'2021-03-27 20:55:10','2021-03-27 20:55:10','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n        100%\n    <h3>Quality Equipment</h3>\n        90%\n    <h3>Reliable Support</h3>\n        50%\n    <h3>Attention to Detail</h3>\n        50%\n    <h3>Client Dedication</h3>\n										<img width=\"1000\" height=\"1495\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody.png 1000w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-201x300.png 201w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-685x1024.png 685w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-768x1148.png 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-600x897.png 600w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Learn About Our Pool League, and Get Signed Up Today!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 20:55:10','2021-03-27 20:55:10','',3193,'https://sa7717.dev34.info/?p=4300',0,'revision','',0),(4301,1,'2021-03-27 20:55:11','2021-03-27 20:55:11','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n        100%\n    <h3>Quality Equipment</h3>\n        100%\n    <h3>Reliable Support</h3>\n        100%\n    <h3>Attention to Detail</h3>\n        100%\n    <h3>Client Dedication</h3>\n										<img width=\"1000\" height=\"1495\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody.png 1000w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-201x300.png 201w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-685x1024.png 685w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-768x1148.png 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-600x897.png 600w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Learn About Our Pool League, and Get Signed Up Today!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 20:55:11','2021-03-27 20:55:11','',3193,'https://sa7717.dev34.info/?p=4301',0,'revision','',0),(4302,1,'2021-03-27 20:58:15','2021-03-27 20:58:15','1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication','original success bulletts','','publish','closed','closed','','original-success-bulletts','','','2021-03-27 20:58:15','2021-03-27 20:58:15','',0,'https://sa7717.dev34.info/?elementor_library=original-success-bulletts',0,'elementor_library','',0),(4303,1,'2021-03-27 20:58:15','2021-03-27 20:58:15','','original success bulletts','','inherit','closed','closed','','4302-revision-v1','','','2021-03-27 20:58:15','2021-03-27 20:58:15','',4302,'https://sa7717.dev34.info/?p=4303',0,'revision','',0),(4304,1,'2021-03-27 20:58:15','2021-03-27 20:58:15','1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication','original success bulletts','','inherit','closed','closed','','4302-revision-v1','','','2021-03-27 20:58:15','2021-03-27 20:58:15','',4302,'https://sa7717.dev34.info/?p=4304',0,'revision','',0),(4305,1,'2021-03-27 20:58:33','2021-03-27 20:58:33','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n        100%\n    <h3>Quality Equipment</h3>\n        100%\n    <h3>Reliable Support</h3>\n        100%\n    <h3>Attention to Detail</h3>\n        100%\n    <h3>Client Dedication</h3>\n										<img width=\"1000\" height=\"1495\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody.png 1000w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-201x300.png 201w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-685x1024.png 685w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-768x1148.png 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-600x897.png 600w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Learn About Our Pool League, and Get Signed Up Today!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 20:58:33','2021-03-27 20:58:33','',3193,'https://sa7717.dev34.info/?p=4305',0,'revision','',0),(4306,1,'2021-03-27 20:58:34','2021-03-27 20:58:34','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                                1\n                %\n                            Quality Equipment\n                                1\n                %\n                            Attention to Detail\n                                1\n                %\n                            Reliable Support\n                                1\n                %\n                            Client Dedication\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n        100%\n    <h3>Quality Equipment</h3>\n        100%\n    <h3>Reliable Support</h3>\n        100%\n    <h3>Attention to Detail</h3>\n        100%\n    <h3>Client Dedication</h3>\n										<img width=\"1000\" height=\"1495\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody.png 1000w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-201x300.png 201w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-685x1024.png 685w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-768x1148.png 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-600x897.png 600w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Learn About Our Pool League, and Get Signed Up Today!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 20:58:34','2021-03-27 20:58:34','',3193,'https://sa7717.dev34.info/?p=4306',0,'revision','',0),(4308,1,'2021-03-27 21:00:32','2021-03-27 21:00:32','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n        100%\n    <h3>Quality Equipment</h3>\n        100%\n    <h3>Reliable Support</h3>\n        100%\n    <h3>Attention to Detail</h3>\n        100%\n    <h3>Client Dedication</h3>\n										<img width=\"1000\" height=\"1495\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody.png 1000w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-201x300.png 201w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-685x1024.png 685w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-768x1148.png 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-600x897.png 600w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Learn About Our Pool League, and Get Signed Up Today!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 21:00:32','2021-03-27 21:00:32','',3193,'https://sa7717.dev34.info/?p=4308',0,'revision','',0),(4309,1,'2021-03-27 21:00:32','2021-03-27 21:00:32','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n        100%\n    <h3>Quality Equipment</h3>\n        100%\n    <h3>Reliable Support</h3>\n        100%\n    <h3>Attention to Detail</h3>\n        100%\n    <h3>Client Dedication</h3>\n										<img width=\"1000\" height=\"1495\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody.png 1000w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-201x300.png 201w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-685x1024.png 685w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-768x1148.png 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-600x897.png 600w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Learn About Our Pool League, and Get Signed Up Today!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 21:00:32','2021-03-27 21:00:32','',3193,'https://sa7717.dev34.info/?p=4309',0,'revision','',0),(4310,1,'2021-03-27 21:00:32','2021-03-27 21:00:32','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n        100%\n    <h3>Quality Equipment</h3>\n        100%\n    <h3>Reliable Support</h3>\n        100%\n    <h3>Attention to Detail</h3>\n        100%\n    <h3>Client Dedication</h3>\n										<img width=\"1000\" height=\"1495\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody.png 1000w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-201x300.png 201w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-685x1024.png 685w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-768x1148.png 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-600x897.png 600w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Learn About Our Pool League, and Get Signed Up Today!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 21:00:32','2021-03-27 21:00:32','',3193,'https://sa7717.dev34.info/?p=4310',0,'revision','',0),(4311,1,'2021-03-27 21:04:34','2021-03-27 21:04:34','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n        100%\n    <h3>Quality Equipment</h3>\n        100%\n    <h3>Reliable Support</h3>\n        100%\n    <h3>Attention to Detail</h3>\n        100%\n    <h3>Client Dedication</h3>\n										<img width=\"1000\" height=\"1495\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody.png 1000w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-201x300.png 201w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-685x1024.png 685w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-768x1148.png 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-600x897.png 600w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Learn About Our Pool League, and Get Signed Up Today!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 21:04:34','2021-03-27 21:04:34','',3193,'https://sa7717.dev34.info/?p=4311',0,'revision','',0),(4312,1,'2021-03-27 21:04:35','2021-03-27 21:04:35','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our Dedication To Our Clients                    \n            </h3>\n		<p>Your success is our success!</p>		\n        100%\n    <h3>Quality Equipment</h3>\n        100%\n    <h3>Reliable Support</h3>\n        100%\n    <h3>Attention to Detail</h3>\n        100%\n    <h3>Client Dedication</h3>\n										<img width=\"1000\" height=\"1495\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody.png 1000w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-201x300.png 201w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-685x1024.png 685w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-768x1148.png 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-600x897.png 600w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Learn About Our Pool League, and Get Signed Up Today!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 21:04:35','2021-03-27 21:04:35','',3193,'https://sa7717.dev34.info/?p=4312',0,'revision','',0),(4360,1,'2021-03-27 21:43:29','2021-03-27 21:43:29','[rev_slider alias=\"tax-consulting\"][/rev_slider]\nReady to discuss taking your business to the next level?\n<h3>\n                        Contact us today for a free consultation!</h3>\n<a href=\"#\" role=\"button\">\nContact Us Today\n</a>\nOur Equipment Lineup\n<h3>\n                        System Amusement has solutions for every business!</h3>\n[ess_grid alias=\"home grid 1\"]\n<h3>\n                        Karaoke Machines</h3>\nKaraoke is fun&nbsp;for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.&nbsp;Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.\n\n<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\">\n<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\">\n<h3>\n                        Shuffleboard</h3>\nShuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.\n<h3>\n                        Pool</h3>\nEveryone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn’t heard “Lets meet of with friends and play pool”. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.\n\n<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\">\n<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\">\n<h3>\n                        Claw Machines</h3>\nA Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.\n<h3>\n                        Dart Boards</h3>\nDarts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!\n\n<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\">\nWhat Makes System Amusement Different?\n<h3>\n                        Our 50+ Years of Dedication to our Clients!</h3>\nYour success is our success!\n\n1\n%\nQuality Equipment\n1\n%\nAttention to Detail\n1\n%\nReliable Support\n1\n%\nClient Dedication\nCustomer Reviews\n<h3>\n                            <i></i>\nWhat Our Clients Are Saying</h3>\n<img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\">\n\"These guys will bend over backwards for your bar or place of business. Thanks guys\"\n<h3>\n                                        Logan</h3>\nBar Owner\n<img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\">\n\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\"\n<h3>\n                                        Rebecca</h3>\nBar Owner\n<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\">\nFeatured Equipment\n<h3>\n                        Touch Tunes Audio and TV</h3>\n<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p>\n<p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>\nhttps://youtu.be/taZaMKbW5VQ\nTake your game to the next level and join our Dart League!\n<h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!</h3>\n<a href=\"#\" role=\"button\">\nDiscover More\n</a>\n<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\">\n<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\">\nDo you play pool?\n<h3>\n                        Learn About Our Pool League, and Get Signed Up Today!</h3>\n<a href=\"#\" role=\"button\">\nDiscover More\n</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 21:43:29','2021-03-27 21:43:29','',3193,'https://sa7717.dev34.info/?p=4360',0,'revision','',0),(4317,1,'2021-03-27 21:13:24','2021-03-27 21:13:24','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our 50+ Years of Dedication to our Clients!                    \n            </h3>\n		<p>Your success is our success!</p>		\n                1\n                %\n                            Quality Equipment\n                1\n                %\n                            Attention to Detail\n                1\n                %\n                            Reliable Support\n                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Learn About Our Pool League, and Get Signed Up Today!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 21:13:24','2021-03-27 21:13:24','',3193,'https://sa7717.dev34.info/?p=4317',0,'revision','',0),(4318,1,'2021-03-27 21:15:08','2021-03-27 21:15:08','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our 50+ Years of Dedication to our Clients!                    \n            </h3>\n		<p>Your success is our success!</p>		\n                1\n                %\n                            Quality Equipment\n                1\n                %\n                            Attention to Detail\n                1\n                %\n                            Reliable Support\n                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Learn About Our Pool League, and Get Signed Up Today!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 21:15:08','2021-03-27 21:15:08','',3193,'https://sa7717.dev34.info/?p=4318',0,'revision','',0),(4315,1,'2021-03-27 21:13:23','2021-03-27 21:13:23','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our 50+ Years of Dedication to our Clients!                    \n            </h3>\n		<p>Your success is our success!</p>		\n        100%\n    <h3>Quality Equipment</h3>\n        100%\n    <h3>Attention to Detail</h3>\n        100%\n    <h3>Reliable Support</h3>\n        100%\n    <h3>Client Dedication</h3>\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Learn About Our Pool League, and Get Signed Up Today!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 21:13:23','2021-03-27 21:13:23','',3193,'https://sa7717.dev34.info/?p=4315',0,'revision','',0),(4316,1,'2021-03-27 21:13:23','2021-03-27 21:13:23','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our 50+ Years of Dedication to our Clients!                    \n            </h3>\n		<p>Your success is our success!</p>		\n        100%\n    <h3>Quality Equipment</h3>\n        100%\n    <h3>Attention to Detail</h3>\n        100%\n    <h3>Reliable Support</h3>\n        100%\n    <h3>Client Dedication</h3>\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Learn About Our Pool League, and Get Signed Up Today!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 21:13:23','2021-03-27 21:13:23','',3193,'https://sa7717.dev34.info/?p=4316',0,'revision','',0),(4319,1,'2021-03-27 21:15:08','2021-03-27 21:15:08','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our 50+ Years of Dedication to our Clients!                    \n            </h3>\n		<p>Your success is our success!</p>		\n                1\n                %\n                            Quality Equipment\n                1\n                %\n                            Attention to Detail\n                1\n                %\n                            Reliable Support\n                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Learn About Our Pool League, and Get Signed Up Today!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 21:15:08','2021-03-27 21:15:08','',3193,'https://sa7717.dev34.info/?p=4319',0,'revision','',0),(4320,1,'2021-03-27 21:15:08','2021-03-27 21:15:08','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our 50+ Years of Dedication to our Clients!                    \n            </h3>\n		<p>Your success is our success!</p>		\n                1\n                %\n                            Quality Equipment\n                1\n                %\n                            Attention to Detail\n                1\n                %\n                            Reliable Support\n                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Learn About Our Pool League, and Get Signed Up Today!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 21:15:08','2021-03-27 21:15:08','',3193,'https://sa7717.dev34.info/?p=4320',0,'revision','',0),(4321,1,'2021-03-27 21:15:28','2021-03-27 21:15:28','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our 50+ Years of Dedication to our Clients!                    \n            </h3>\n		<p>Your success is our success!</p>		\n                1\n                %\n                            Quality Equipment\n                1\n                %\n                            Attention to Detail\n                1\n                %\n                            Reliable Support\n                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Learn About Our Pool League, and Get Signed Up Today!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 21:15:28','2021-03-27 21:15:28','',3193,'https://sa7717.dev34.info/?p=4321',0,'revision','',0),(4322,1,'2021-03-27 21:15:28','2021-03-27 21:15:28','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our 50+ Years of Dedication to our Clients!                    \n            </h3>\n		<p>Your success is our success!</p>		\n                1\n                %\n                            Quality Equipment\n                1\n                %\n                            Attention to Detail\n                1\n                %\n                            Reliable Support\n                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Learn About Our Pool League, and Get Signed Up Today!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 21:15:28','2021-03-27 21:15:28','',3193,'https://sa7717.dev34.info/?p=4322',0,'revision','',0),(4323,1,'2021-03-27 21:15:28','2021-03-27 21:15:28','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our 50+ Years of Dedication to our Clients!                    \n            </h3>\n		<p>Your success is our success!</p>		\n                1\n                %\n                            Quality Equipment\n                1\n                %\n                            Attention to Detail\n                1\n                %\n                            Reliable Support\n                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Learn About Our Pool League, and Get Signed Up Today!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 21:15:28','2021-03-27 21:15:28','',3193,'https://sa7717.dev34.info/?p=4323',0,'revision','',0),(4327,1,'2021-03-27 21:17:50','2021-03-27 21:17:50','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our 50+ Years of Dedication to our Clients!                    \n            </h3>\n		<p>Your success is our success!</p>		\n                1\n                %\n                            Quality Equipment\n                1\n                %\n                            Attention to Detail\n                1\n                %\n                            Reliable Support\n                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Learn About Our Pool League, and Get Signed Up Today!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 21:17:50','2021-03-27 21:17:50','',3193,'https://sa7717.dev34.info/?p=4327',0,'revision','',0),(4325,1,'2021-03-27 21:17:50','2021-03-27 21:17:50','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our 50+ Years of Dedication to our Clients!                    \n            </h3>\n		<p>Your success is our success!</p>		\n                1\n                %\n                            Quality Equipment\n                1\n                %\n                            Attention to Detail\n                1\n                %\n                            Reliable Support\n                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Learn About Our Pool League, and Get Signed Up Today!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 21:17:50','2021-03-27 21:17:50','',3193,'https://sa7717.dev34.info/?p=4325',0,'revision','',0),(4326,1,'2021-03-27 21:17:50','2021-03-27 21:17:50','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our 50+ Years of Dedication to our Clients!                    \n            </h3>\n		<p>Your success is our success!</p>		\n                1\n                %\n                            Quality Equipment\n                1\n                %\n                            Attention to Detail\n                1\n                %\n                            Reliable Support\n                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Learn About Our Pool League, and Get Signed Up Today!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 21:17:50','2021-03-27 21:17:50','',3193,'https://sa7717.dev34.info/?p=4326',0,'revision','',0),(4328,1,'2021-03-27 21:18:48','2021-03-27 21:18:48','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our 50+ Years of Dedication to our Clients!                    \n            </h3>\n		<p>Your success is our success!</p>		\n                1\n                %\n                            Quality Equipment\n                1\n                %\n                            Attention to Detail\n                1\n                %\n                            Reliable Support\n                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Learn About Our Pool League, and Get Signed Up Today!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 21:18:48','2021-03-27 21:18:48','',3193,'https://sa7717.dev34.info/?p=4328',0,'revision','',0),(4329,1,'2021-03-27 21:18:48','2021-03-27 21:18:48','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our 50+ Years of Dedication to our Clients!                    \n            </h3>\n		<p>Your success is our success!</p>		\n                1\n                %\n                            Quality Equipment\n                1\n                %\n                            Attention to Detail\n                1\n                %\n                            Reliable Support\n                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Learn About Our Pool League, and Get Signed Up Today!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 21:18:48','2021-03-27 21:18:48','',3193,'https://sa7717.dev34.info/?p=4329',0,'revision','',0),(4330,1,'2021-03-27 21:18:48','2021-03-27 21:18:48','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our 50+ Years of Dedication to our Clients!                    \n            </h3>\n		<p>Your success is our success!</p>		\n                1\n                %\n                            Quality Equipment\n                1\n                %\n                            Attention to Detail\n                1\n                %\n                            Reliable Support\n                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Learn About Our Pool League, and Get Signed Up Today!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 21:18:48','2021-03-27 21:18:48','',3193,'https://sa7717.dev34.info/?p=4330',0,'revision','',0),(4331,1,'2021-03-27 21:19:47','2021-03-27 21:19:47','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our 50+ Years of Dedication to our Clients!                    \n            </h3>\n		<p>Your success is our success!</p>		\n                1\n                %\n                            Quality Equipment\n                1\n                %\n                            Attention to Detail\n                1\n                %\n                            Reliable Support\n                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Learn About Our Pool League, and Get Signed Up Today!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 21:19:47','2021-03-27 21:19:47','',3193,'https://sa7717.dev34.info/?p=4331',0,'revision','',0),(4332,1,'2021-03-27 21:19:47','2021-03-27 21:19:47','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our 50+ Years of Dedication to our Clients!                    \n            </h3>\n		<p>Your success is our success!</p>		\n                1\n                %\n                            Quality Equipment\n                1\n                %\n                            Attention to Detail\n                1\n                %\n                            Reliable Support\n                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Learn About Our Pool League, and Get Signed Up Today!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 21:19:47','2021-03-27 21:19:47','',3193,'https://sa7717.dev34.info/?p=4332',0,'revision','',0),(4333,1,'2021-03-27 21:19:47','2021-03-27 21:19:47','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Karaoke Machines                    \n            </h3>\n		<p>Karaoke is fun for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want. Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our 50+ Years of Dedication to our Clients!                    \n            </h3>\n		<p>Your success is our success!</p>		\n                1\n                %\n                            Quality Equipment\n                1\n                %\n                            Attention to Detail\n                1\n                %\n                            Reliable Support\n                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Learn About Our Pool League, and Get Signed Up Today!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-03-27 21:19:47','2021-03-27 21:19:47','',3193,'https://sa7717.dev34.info/?p=4333',0,'revision','',0),(4359,1,'2021-03-27 21:39:57','2021-03-27 21:39:57','<h3>\n        Navigation\n        <i></i>\n    </h3>\n        <ul id=\"menu-footer-1\"><li id=\"menu-item-4342\"><a href=\"#\">Home</a></li>\n<li id=\"menu-item-4343\"><a href=\"#\">About</a></li>\n<li id=\"menu-item-4344\"><a href=\"#\">Services</a></li>\n<li id=\"menu-item-4345\"><a href=\"#\">Equipment</a></li>\n<li id=\"menu-item-4347\"><a href=\"#\">Pool League</a></li>\n<li id=\"menu-item-4348\"><a href=\"#\">Dart League</a></li>\n<li id=\"menu-item-4350\"><a href=\"#\">Pinball Locator</a></li>\n<li id=\"menu-item-4349\"><a href=\"#\">Contact Us</a></li>\n</ul>    \n										<img width=\"466\" height=\"178\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Screen-Shot-2021-03-26-at-1.45.54-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Screen-Shot-2021-03-26-at-1.45.54-PM.png 466w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Screen-Shot-2021-03-26-at-1.45.54-PM-300x115.png 300w\" sizes=\"(max-width: 466px) 100vw, 466px\" />											\n					<ul>\n							<li>\n					<a href=\"tel:%20509-993-4955\">						\n										509-993-4955\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:%20info@systemamusement.com\">						\n										info@systemamusement.com\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:%20info@systemamusement.com\">						\n										Mon - Sat: 8 am - 5 pm, Sunday: CLOSED\n											</a>\n									</li>\n						</ul>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		<p style=\"text-align: center;\">Send us a newsletter to get update</p>		\n	   		    	<form action=\"https://sa7717.dev34.info/?na=s\" method=\"post\" onsubmit=\"return newsletter_check(this)\">\n		    	<input type=\"hidden\" name=\"nr\" value=\"widget-minimal\"/>\n		    		<label>Your mail address</label>\n		    		<input type=\"email\" required name=\"ne\" value=\"\" placeholder=\"Your mail address\">\n		    		<input type=\"submit\" value=\"Subscribe\">\n		    </form>\n		<p>2021 © System Amusements. All rights reserved.</p>','Footer Tax Consulting','','inherit','closed','closed','','3201-revision-v1','','','2021-03-27 21:39:57','2021-03-27 21:39:57','',3201,'https://sa7717.dev34.info/?p=4359',0,'revision','',0),(4361,1,'2021-05-20 00:30:35','2021-03-27 21:46:09','','League Info','','publish','closed','closed','','league-info','','','2021-05-20 00:30:35','2021-05-20 00:30:35','',0,'https://sa7717.dev34.info/?p=4361',5,'nav_menu_item','',0),(4364,1,'2021-04-14 22:24:37','2021-04-14 22:24:37','','darts','','inherit','open','closed','','darts','','','2021-04-14 22:24:37','2021-04-14 22:24:37','',0,'https://sa7717.dev34.info/wp-content/uploads/2021/04/darts.jpeg',0,'attachment','image/jpeg',0),(4365,1,'2021-04-14 22:25:04','2021-04-14 22:25:04','','bullshooter','','inherit','open','closed','','bullshooter','','','2021-04-14 22:25:04','2021-04-14 22:25:04','',0,'https://sa7717.dev34.info/wp-content/uploads/2021/04/bullshooter.jpeg',0,'attachment','image/jpeg',0),(4366,1,'2021-04-14 22:26:55','2021-04-14 22:26:55','<img width=\"466\" height=\"178\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Screen-Shot-2021-03-26-at-1.45.54-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Screen-Shot-2021-03-26-at-1.45.54-PM.png 466w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Screen-Shot-2021-03-26-at-1.45.54-PM-300x115.png 300w\" sizes=\"(max-width: 466px) 100vw, 466px\" />											\n					<ul>\n							<li>\n					<a href=\"tel:%20509-993-4955\">						\n										509-993-4955\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:%20systemamusement@comcast.net\">						\n										systemamusement@comcast.net\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:%20info@systemamusement.com\">						\n										Mon - Sat: 8 am - 5 pm, Sunday: CLOSED\n											</a>\n									</li>\n						</ul>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n    <h3>\n        Navigation\n        <i></i>\n    </h3>\n        <ul id=\"menu-footer-1\"><li id=\"menu-item-4342\"><a href=\"#\">Home</a></li>\n<li id=\"menu-item-4343\"><a href=\"#\">About</a></li>\n<li id=\"menu-item-4344\"><a href=\"#\">Services</a></li>\n<li id=\"menu-item-4345\"><a href=\"#\">Equipment</a></li>\n<li id=\"menu-item-4361\"><a href=\"#\">League Info</a>\n<ul>\n	<li id=\"menu-item-4347\"><a href=\"#\">Pool League</a></li>\n	<li id=\"menu-item-4348\"><a href=\"#\">Dart League</a></li>\n</ul>\n</li>\n<li id=\"menu-item-4350\"><a href=\"#\">Pinball Locator</a></li>\n<li id=\"menu-item-4349\"><a href=\"#\">Contact</a></li>\n</ul>    \n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		<p style=\"text-align: center;\">Send us a newsletter to get update</p>		\n	   		    	<form action=\"https://sa7717.dev34.info/?na=s\" method=\"post\" onsubmit=\"return newsletter_check(this)\">\n		    	<input type=\"hidden\" name=\"nr\" value=\"widget-minimal\"/>\n		    		<label>Your mail address</label>\n		    		<input type=\"email\" required name=\"ne\" value=\"\" placeholder=\"Your mail address\">\n		    		<input type=\"submit\" value=\"Subscribe\">\n		    </form>\n		<p>2021 © System Amusements. All rights reserved.</p>','Footer Tax Consulting','','inherit','closed','closed','','3201-revision-v1','','','2021-04-14 22:26:55','2021-04-14 22:26:55','',3201,'https://sa7717.dev34.info/?p=4366',0,'revision','',0),(4367,1,'2021-04-14 22:27:07','2021-04-14 22:27:07','<img width=\"466\" height=\"178\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Screen-Shot-2021-03-26-at-1.45.54-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Screen-Shot-2021-03-26-at-1.45.54-PM.png 466w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Screen-Shot-2021-03-26-at-1.45.54-PM-300x115.png 300w\" sizes=\"(max-width: 466px) 100vw, 466px\" />											\n					<ul>\n							<li>\n					<a href=\"tel:%20509-993-4955\">						\n										509-993-4955\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:%20systemamusement@comcast.net\">						\n										systemamusement@comcast.net\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:%20info@systemamusement.com\">						\n										Mon - Sat: 8 am - 5 pm, Sunday: CLOSED\n											</a>\n									</li>\n						</ul>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n    <h3>\n        Navigation\n        <i></i>\n    </h3>\n        <ul id=\"menu-footer-1\"><li id=\"menu-item-4342\"><a href=\"#\">Home</a></li>\n<li id=\"menu-item-4343\"><a href=\"#\">About</a></li>\n<li id=\"menu-item-4344\"><a href=\"#\">Services</a></li>\n<li id=\"menu-item-4345\"><a href=\"#\">Equipment</a></li>\n<li id=\"menu-item-4361\"><a href=\"#\">League Info</a>\n<ul>\n	<li id=\"menu-item-4347\"><a href=\"#\">Pool League</a></li>\n	<li id=\"menu-item-4348\"><a href=\"#\">Dart League</a></li>\n</ul>\n</li>\n<li id=\"menu-item-4350\"><a href=\"#\">Pinball Locator</a></li>\n<li id=\"menu-item-4349\"><a href=\"#\">Contact</a></li>\n</ul>    \n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		<p style=\"text-align: center;\">Send us a newsletter to get update</p>		\n	   		    	<form action=\"https://sa7717.dev34.info/?na=s\" method=\"post\" onsubmit=\"return newsletter_check(this)\">\n		    	<input type=\"hidden\" name=\"nr\" value=\"widget-minimal\"/>\n		    		<label>Your mail address</label>\n		    		<input type=\"email\" required name=\"ne\" value=\"\" placeholder=\"Your mail address\">\n		    		<input type=\"submit\" value=\"Subscribe\">\n		    </form>\n		<p>2021 © System Amusements. All rights reserved.</p>','Footer Tax Consulting','','inherit','closed','closed','','3201-revision-v1','','','2021-04-14 22:27:07','2021-04-14 22:27:07','',3201,'https://sa7717.dev34.info/?p=4367',0,'revision','',0),(4368,1,'2021-04-14 22:27:24','2021-04-14 22:27:24','<img width=\"466\" height=\"178\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Screen-Shot-2021-03-26-at-1.45.54-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Screen-Shot-2021-03-26-at-1.45.54-PM.png 466w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Screen-Shot-2021-03-26-at-1.45.54-PM-300x115.png 300w\" sizes=\"(max-width: 466px) 100vw, 466px\" />											\n					<ul>\n							<li>\n					<a href=\"tel:%20509-326-1551 \">						\n										509-326-1551 \n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:%20systemamusement@comcast.net\">						\n										systemamusement@comcast.net\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:%20info@systemamusement.com\">						\n										Mon - Sat: 8 am - 5 pm, Sunday: CLOSED\n											</a>\n									</li>\n						</ul>\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n    <h3>\n        Navigation\n        <i></i>\n    </h3>\n        <ul id=\"menu-footer-1\"><li id=\"menu-item-4342\"><a href=\"#\">Home</a></li>\n<li id=\"menu-item-4343\"><a href=\"#\">About</a></li>\n<li id=\"menu-item-4344\"><a href=\"#\">Services</a></li>\n<li id=\"menu-item-4345\"><a href=\"#\">Equipment</a></li>\n<li id=\"menu-item-4361\"><a href=\"#\">League Info</a>\n<ul>\n	<li id=\"menu-item-4347\"><a href=\"#\">Pool League</a></li>\n	<li id=\"menu-item-4348\"><a href=\"#\">Dart League</a></li>\n</ul>\n</li>\n<li id=\"menu-item-4350\"><a href=\"#\">Pinball Locator</a></li>\n<li id=\"menu-item-4349\"><a href=\"#\">Contact</a></li>\n</ul>    \n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		<p style=\"text-align: center;\">Send us a newsletter to get update</p>		\n	   		    	<form action=\"https://sa7717.dev34.info/?na=s\" method=\"post\" onsubmit=\"return newsletter_check(this)\">\n		    	<input type=\"hidden\" name=\"nr\" value=\"widget-minimal\"/>\n		    		<label>Your mail address</label>\n		    		<input type=\"email\" required name=\"ne\" value=\"\" placeholder=\"Your mail address\">\n		    		<input type=\"submit\" value=\"Subscribe\">\n		    </form>\n		<p>2021 © System Amusements. All rights reserved.</p>','Footer Tax Consulting','','inherit','closed','closed','','3201-revision-v1','','','2021-04-14 22:27:24','2021-04-14 22:27:24','',3201,'https://sa7717.dev34.info/?p=4368',0,'revision','',0),(4369,1,'2021-04-14 22:28:43','2021-04-14 22:28:43','','hyosung_halo','','inherit','open','closed','','hyosung_halo','','','2021-04-14 22:28:43','2021-04-14 22:28:43','',0,'https://sa7717.dev34.info/wp-content/uploads/2021/04/hyosung_halo.jpeg',0,'attachment','image/jpeg',0),(4370,1,'2021-04-14 22:29:12','2021-04-14 22:29:12','','Screen Shot 2021-04-14 at 3.28.25 PM','','inherit','open','closed','','screen-shot-2021-04-14-at-3-28-25-pm','','','2021-04-14 22:29:12','2021-04-14 22:29:12','',0,'https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.28.25-PM.png',0,'attachment','image/png',0),(4371,1,'2021-04-14 22:30:05','2021-04-14 22:30:05','','127abec3ea6540c295af41d2eead0221','','inherit','open','closed','','127abec3ea6540c295af41d2eead0221','','','2021-04-14 22:30:05','2021-04-14 22:30:05','',0,'https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg',0,'attachment','image/jpeg',0),(4372,1,'2021-04-14 22:33:04','2021-04-14 22:33:04','','Screen Shot 2021-04-14 at 3.32.35 PM','','inherit','open','closed','','screen-shot-2021-04-14-at-3-32-35-pm','','','2021-04-14 22:33:04','2021-04-14 22:33:04','',0,'https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM.png',0,'attachment','image/png',0),(4373,1,'2021-04-14 22:36:43','2021-04-14 22:36:43','[rev_slider alias=\"tax-consulting\"][/rev_slider]\nReady to discuss taking your business to the next level?\n<h3>\n                        Contact us today for a free consultation!</h3>\n<a href=\"#\" role=\"button\">\nContact Us Today\n</a>\nOur Equipment Lineup\n<h3>\n                        System Amusement has solutions for every business!</h3>\n[ess_grid alias=\"home grid 1\"]\n<h3>\n                        Karaoke Machines</h3>\nKaraoke is fun&nbsp;for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.&nbsp;Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.\n\n<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\">\n<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\">\n<h3>\n                        Shuffleboard</h3>\nShuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.\n<h3>\n                        Pool</h3>\nEveryone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn’t heard “Lets meet of with friends and play pool”. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.\n\n<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\">\n<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\">\n<h3>\n                        Claw Machines</h3>\nA Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.\n<h3>\n                        Dart Boards</h3>\nDarts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!\n\n<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\">\nWhat Makes System Amusement Different?\n<h3>\n                        Our 50+ Years of Dedication to our Clients!</h3>\nYour success is our success!\n\n1\n%\nQuality Equipment\n1\n%\nAttention to Detail\n1\n%\nReliable Support\n1\n%\nClient Dedication\nCustomer Reviews\n<h3>\n                            <i></i>\nWhat Our Clients Are Saying</h3>\n<img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\">\n\"These guys will bend over backwards for your bar or place of business. Thanks guys\"\n<h3>\n                                        Logan</h3>\nBar Owner\n<img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\">\n\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\"\n<h3>\n                                        Rebecca</h3>\nBar Owner\n<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\">\nFeatured Equipment\n<h3>\n                        Touch Tunes Audio and TV</h3>\n<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p>\n<p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>\nhttps://youtu.be/taZaMKbW5VQ\nTake your game to the next level and join our Dart League!\n<h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!</h3>\n<a href=\"#\" role=\"button\">\nDiscover More\n</a>\n<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\">\n<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\">\nDo you play pool?\n<h3>\n                        Learn About Our Pool League, and Get Signed Up Today!</h3>\n<a href=\"#\" role=\"button\">\nDiscover More\n</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-04-14 22:36:43','2021-04-14 22:36:43','',3193,'https://sa7717.dev34.info/?p=4373',0,'revision','',0),(4336,1,'2021-03-27 21:32:02','2021-03-27 21:32:02','<h3>\n        Links\n        <i></i>\n    </h3>\n        <ul id=\"menu-main-menu\"><li id=\"menu-item-3973\"><a href=\"#\">Demos</a><ul><li><style>.elementor-3953 .elementor-element.elementor-element-7a0c59a5 > .elementor-element-populated{padding:33px 40px 33px 40px;}.elementor-3953 .elementor-element.elementor-element-744d686c .ct-heading .item--title{font-size:16px;font-weight:600;margin-bottom:10px;}.elementor-3953 .elementor-element.elementor-element-744d686c .ct-heading .item--sub-title{margin-bottom:9px;}.elementor-3953 .elementor-element.elementor-element-7ba31669 > .elementor-element-populated{padding:33px 40px 33px 40px;}.elementor-3953 .elementor-element.elementor-element-50713f58 .ct-heading .item--title{font-size:16px;font-weight:600;margin-bottom:10px;}.elementor-3953 .elementor-element.elementor-element-50713f58 .ct-heading .item--sub-title{margin-bottom:9px;}.elementor-3953 .elementor-element.elementor-element-4d5c5322 > .elementor-element-populated{padding:33px 40px 33px 40px;}.elementor-3953 .elementor-element.elementor-element-439b7e93 .ct-heading .item--title{font-size:16px;font-weight:600;margin-bottom:10px;}.elementor-3953 .elementor-element.elementor-element-439b7e93 .ct-heading .item--sub-title{margin-bottom:9px;}.elementor-3953 .elementor-element.elementor-element-5b10b01e > .elementor-element-populated{padding:33px 40px 33px 40px;}.elementor-3953 .elementor-element.elementor-element-329d154a .ct-heading .item--title{font-size:16px;font-weight:600;margin-bottom:10px;}.elementor-3953 .elementor-element.elementor-element-329d154a .ct-heading .item--sub-title{margin-bottom:9px;}</style>		\n					        <section data-id=\"7f745fa1\" data-element_type=\"section\">\n	    <h3>\n                        Multi Pages                    \n            </h3>\n			    <ul>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/\">\n                                                                                                                                Finance                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-finance2/\">\n                                                                                                                                Finance 2                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-rtl/\">\n                                                                                                                                Finance RTL                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-business/\">\n                                                                                                                                Business 1                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-business2/\">\n                                                                                                                                Business 2                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-corporate1\">\n                                                                                                                                Corporate 1                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-corporate2\">\n                                                                                                                                Corporate 2                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-corporate3\">\n                                                                                                                                Corporate 3                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-law/\">\n                                                                                                                                Law                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-startup/\">\n                                                                                                                                Startup                                            </a>\n                </li>\n            </ul>\n	    <h3>\n                        Multi Pages                    \n            </h3>\n			    <ul>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-hr/\">\n                                                                                                                                Human Resource                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-coach/\">\n                                                                                                                                Life Coach                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-marketing/\">\n                                                                                                                                Marketing                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-medical/\">\n                                                                                                                                Medical                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-it/\">\n                                                                                                                                IT Solution                                            </a>\n                </li>\n                        <li>\n                    <a href=\"https://demo.casethemes.net/consultio-tax/\">\n                                                                                                                                Tax Consulting                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-insurance/\">\n                                                                                                                                Insurance                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-corona/\">\n                                                                                                                                Corona                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-consulting/\">\n                                                                                                                                Consulting                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-software/\">\n                                                                                                                                Software                                            </a>\n                </li>\n            </ul>\n	    <h3>\n                        One Page                    \n            </h3>\n			    <ul>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/home-onepage\">\n                                                                                                                                Finance                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-finance2/home-onepage\">\n                                                                                                                                Finance 2                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-rtl/home-onepage\">\n                                                                                                                                Finance RTL                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-business/home-onepage\">\n                                                                                                                                Business 1                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-business2/home-onepage\">\n                                                                                                                                Business 2                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-corporate1/home-onepage\">\n                                                                                                                                Corporate 1                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-corporate2/home-onepage\">\n                                                                                                                                Corporate 2                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-corporate3/home-onepage\">\n                                                                                                                                Corporate 3                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-law/home-onepage\">\n                                                                                                                                Law                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-startup/home-onepage\">\n                                                                                                                                Startup                                            </a>\n                </li>\n            </ul>\n	    <h3>\n                        One Page                    \n            </h3>\n			    <ul>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-hr/home-onepage\">\n                                                                                                                                Human Resource                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-coach/home-onepage\">\n                                                                                                                                Life Coach                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-marketing/home-onepage\">\n                                                                                                                                Marketing                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-medical/home-onepage\">\n                                                                                                                                Medical                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-it/home-onepage\">\n                                                                                                                                IT Solution                                            </a>\n                </li>\n                        <li>\n                    <a href=\"https://demo.casethemes.net/consultio-tax/home-onepage\">\n                                                                                                                                Tax Consulting                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-insurance/home-onepage\">\n                                                                                                                                Insurance                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-corona/home-onepage\">\n                                                                                                                                Corona                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-consulting/home-onepage\">\n                                                                                                                                Consulting                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-software/home-onepage\">\n                                                                                                                                Software                                            </a>\n                </li>\n            </ul>\n        </section>\n		</li></ul></li>\n<li id=\"menu-item-4012\"><a href=\"https://sa7717.dev34.info/services-v-1/\">Services</a>\n<ul>\n	<li id=\"menu-item-4011\"><a href=\"https://sa7717.dev34.info/services-v-1/\">Services v.1</a></li>\n	<li id=\"menu-item-4010\"><a href=\"https://sa7717.dev34.info/services-v-2/\">Services v.2</a></li>\n	<li id=\"menu-item-4016\"><a href=\"https://sa7717.dev34.info/service/seo-optimization/\">Service Details</a></li>\n</ul>\n</li>\n<li id=\"menu-item-3968\"><a href=\"#\">Pages</a>\n<ul>\n	<li id=\"menu-item-3988\"><a href=\"https://sa7717.dev34.info/about/\">About us</a>\n	<ul>\n		<li id=\"menu-item-4094\"><a href=\"https://sa7717.dev34.info/about/\">About v.1</a></li>\n		<li id=\"menu-item-4093\"><a href=\"https://sa7717.dev34.info/about-v-2/\">About v.2</a></li>\n		<li id=\"menu-item-4092\"><a href=\"https://sa7717.dev34.info/about-v-3/\">About v.3</a></li>\n		<li id=\"menu-item-4091\"><a href=\"https://sa7717.dev34.info/about-v-4/\">About v.4</a></li>\n	</ul>\n</li>\n	<li id=\"menu-item-3987\"><a href=\"https://sa7717.dev34.info/team/\">Our Team</a>\n	<ul>\n		<li id=\"menu-item-4097\"><a href=\"https://sa7717.dev34.info/team/\">Team v.1</a></li>\n		<li id=\"menu-item-4083\"><a href=\"https://sa7717.dev34.info/team-v-2/\">Team v.2</a></li>\n		<li id=\"menu-item-4082\"><a href=\"https://sa7717.dev34.info/team-v-3/\">Team v.3</a></li>\n		<li id=\"menu-item-4081\"><a href=\"https://sa7717.dev34.info/team-v-4/\">Team v.4</a></li>\n	</ul>\n</li>\n	<li id=\"menu-item-4008\"><a href=\"https://sa7717.dev34.info/team-details/\">Team Details</a></li>\n	<li id=\"menu-item-4032\"><a href=\"https://sa7717.dev34.info/careers/\">Careers</a></li>\n	<li id=\"menu-item-4009\"><a href=\"https://sa7717.dev34.info/testimonials/\">Testimonials</a>\n	<ul>\n		<li id=\"menu-item-4098\"><a href=\"https://sa7717.dev34.info/testimonials/\">Testimonials v.1</a></li>\n		<li id=\"menu-item-4090\"><a href=\"https://sa7717.dev34.info/testimonials-v-2/\">Testimonials v.2</a></li>\n		<li id=\"menu-item-4089\"><a href=\"https://sa7717.dev34.info/testimonials-v-3/\">Testimonials v.3</a></li>\n		<li id=\"menu-item-4088\"><a href=\"https://sa7717.dev34.info/testimonials-v-4/\">Testimonials v.4</a></li>\n	</ul>\n</li>\n	<li id=\"menu-item-3985\"><a href=\"https://sa7717.dev34.info/pricing/\">Pricing</a>\n	<ul>\n		<li id=\"menu-item-4096\"><a href=\"https://sa7717.dev34.info/pricing/\">Pricing v.1</a></li>\n		<li id=\"menu-item-4087\"><a href=\"https://sa7717.dev34.info/pricing-v-2/\">Pricing v.2</a></li>\n	</ul>\n</li>\n	<li id=\"menu-item-3986\"><a href=\"https://sa7717.dev34.info/faq/\">FAQs</a></li>\n	<li id=\"menu-item-3989\"><a href=\"https://sa7717.dev34.info/contact/\">Contact us</a>\n	<ul>\n		<li id=\"menu-item-4095\"><a href=\"https://sa7717.dev34.info/contact/\">Contact v.1</a></li>\n		<li id=\"menu-item-4086\"><a href=\"https://sa7717.dev34.info/contact-v-2/\">Contact v.2</a></li>\n		<li id=\"menu-item-4085\"><a href=\"https://sa7717.dev34.info/contact-v-3/\">Contact v.3</a></li>\n		<li id=\"menu-item-4084\"><a href=\"https://sa7717.dev34.info/contact-v-4/\">Contact v.4</a></li>\n	</ul>\n</li>\n	<li id=\"menu-item-3970\"><a href=\"https://demo.casethemes.net/consultio-tax/404-page/\">Error 404</a></li>\n	<li id=\"menu-item-4024\"><a href=\"https://sa7717.dev34.info/shop/\">Shop</a>\n	<ul>\n		<li id=\"menu-item-4023\"><a href=\"https://sa7717.dev34.info/shop/\">Products</a></li>\n		<li id=\"menu-item-4026\"><a href=\"https://sa7717.dev34.info/product/black-suit/\">Product Details</a></li>\n		<li id=\"menu-item-4025\"><a href=\"https://sa7717.dev34.info/shop-wishlist/\">Wishlist</a></li>\n		<li id=\"menu-item-4022\"><a href=\"https://sa7717.dev34.info/cart/\">Cart</a></li>\n	</ul>\n</li>\n</ul>\n</li>\n<li id=\"menu-item-4015\"><a href=\"https://sa7717.dev34.info/portfolio-grid/\">Portfolio</a>\n<ul>\n	<li id=\"menu-item-4014\"><a href=\"https://sa7717.dev34.info/portfolio-grid/\">Portfolio Grid</a></li>\n	<li id=\"menu-item-4013\"><a href=\"https://sa7717.dev34.info/portfolio-masonry/\">Portfolio Masonry</a></li>\n	<li id=\"menu-item-4021\"><a href=\"https://sa7717.dev34.info/portfolio/data-analytics/\">Portfolio Details</a></li>\n</ul>\n</li>\n<li id=\"menu-item-3994\"><a href=\"https://sa7717.dev34.info/blog-standard/\">Blog</a>\n<ul>\n	<li id=\"menu-item-3997\"><a href=\"https://sa7717.dev34.info/blog-carousel/\">Blog Carousel</a></li>\n	<li id=\"menu-item-3996\"><a href=\"https://sa7717.dev34.info/blog-grid-3-columns/\">Blog Grid</a>\n	<ul>\n		<li id=\"menu-item-4000\"><a href=\"https://sa7717.dev34.info/blog-grid-2-columns-sidebar-left/\">Left Sidebar</a></li>\n		<li id=\"menu-item-3998\"><a href=\"https://sa7717.dev34.info/blog-grid-3-columns/\">Without Sidebar</a></li>\n		<li id=\"menu-item-3999\"><a href=\"https://sa7717.dev34.info/blog-grid-2-columns-sidebar-right/\">Right Sidebar</a></li>\n	</ul>\n</li>\n	<li id=\"menu-item-3995\"><a href=\"https://sa7717.dev34.info/blog-standard/\">Blog Standard</a>\n	<ul>\n		<li id=\"menu-item-4002\"><a href=\"https://sa7717.dev34.info/blog-standard-left-sidebar/\">Left Sidebar</a></li>\n		<li id=\"menu-item-4001\"><a href=\"https://sa7717.dev34.info/blog-standard-without-sidebar/\">Without Sidebar</a></li>\n		<li id=\"menu-item-4003\"><a href=\"https://sa7717.dev34.info/blog-standard/\">Right Sidebar</a></li>\n	</ul>\n</li>\n	<li id=\"menu-item-4004\"><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Blog Details</a>\n	<ul>\n		<li id=\"menu-item-4006\"><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">Left Sidebar</a></li>\n		<li id=\"menu-item-4007\"><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">Without Sidebar</a></li>\n		<li id=\"menu-item-4005\"><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Right Sidebar</a></li>\n	</ul>\n</li>\n</ul>\n</li>\n<li id=\"menu-item-3976\"><a href=\"#\">Elements</a><ul><li><style>.elementor-3955 .elementor-element.elementor-element-4c3a6ff1 > .elementor-element-populated{padding:33px 40px 33px 40px;}.elementor-3955 .elementor-element.elementor-element-78d5ebb6 .ct-heading .item--title{font-size:16px;font-weight:600;margin-bottom:10px;}.elementor-3955 .elementor-element.elementor-element-78d5ebb6 .ct-heading .item--sub-title{margin-bottom:9px;}.elementor-3955 .elementor-element.elementor-element-6da39e70 > .elementor-element-populated{padding:33px 40px 33px 40px;}.elementor-3955 .elementor-element.elementor-element-35e5905d .ct-heading .item--title{font-size:16px;font-weight:600;margin-bottom:10px;}.elementor-3955 .elementor-element.elementor-element-35e5905d .ct-heading .item--sub-title{margin-bottom:9px;}.elementor-3955 .elementor-element.elementor-element-5064b5d4 > .elementor-element-populated{padding:33px 40px 33px 40px;}.elementor-3955 .elementor-element.elementor-element-1754edde .ct-heading .item--title{font-size:16px;font-weight:600;margin-bottom:10px;}.elementor-3955 .elementor-element.elementor-element-1754edde .ct-heading .item--sub-title{margin-bottom:9px;}.elementor-3955 .elementor-element.elementor-element-620e8e1c > .elementor-element-populated{padding:33px 40px 33px 40px;}.elementor-3955 .elementor-element.elementor-element-3d20498e .ct-heading .item--title{font-size:16px;font-weight:600;margin-bottom:10px;}.elementor-3955 .elementor-element.elementor-element-3d20498e .ct-heading .item--sub-title{margin-bottom:9px;}</style>		\n					        <section data-id=\"35d4a023\" data-element_type=\"section\">\n	    <h3>\n                        Interactive Elements                    \n            </h3>\n			    <ul>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/testimonials-2/\">\n                                                                                                                                Testimonials                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/blog-slider/\">\n                                                                                                                                Blog Slider                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/elements-portfolio-carousel/\">\n                                                                                                                                Portfolio Carousel                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/service-carousel/\">\n                                                                                                                                Service Carousel                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/clients/\">\n                                                                                                                                Clients                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/history/\">\n                                                                                                                                History                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/video-button/\">\n                                                                                                                                Video Button                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/columns/\">\n                                                                                                                                Columns                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/row-background/\">\n                                                                                                                                Row background                                            </a>\n                </li>\n            </ul>\n	    <h3>\n                        Standard Elements                    \n            </h3>\n			    <ul>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/team-variations/\">\n                                                                                                                                Team Variations                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/buttons/\">\n                                                                                                                                Buttons                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/tabs-tours/\">\n                                                                                                                                Tabs & Tours                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/accordions-toggles/\">\n                                                                                                                                Accordions & Toggles                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/google-maps/\">\n                                                                                                                                Google Maps                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/contact-forms-7/\">\n                                                                                                                                Contact Forms 7                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/dividers/\">\n                                                                                                                                Dividers                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/pricing-tables/\">\n                                                                                                                                Pricing Tables                                            </a>\n                </li>\n            </ul>\n	    <h3>\n                        Infographics                    \n            </h3>\n			    <ul>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/counters/\">\n                                                                                                                                Counters                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/progress-bars/\">\n                                                                                                                                Progress Bars                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/icon-with-text/\">\n                                                                                                                                Icon With Text                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/icon-grid/\">\n                                                                                                                                Icon Grid                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/image-box-fancy/\">\n                                                                                                                                Image Box Fancy                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/cover-boxes/\">\n                                                                                                                                Cover Boxes                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/newsletters/\">\n                                                                                                                                Newsletters                                            </a>\n                </li>\n            </ul>\n	    <h3>\n                        Typography                    \n            </h3>\n			    <ul>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/custom-fonts/\">\n                                                                                                                                Custom Fonts                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/highlights/\">\n                                                                                                                                Highlights                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/blockquote/\">\n                                                                                                                                Blockquote                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/dropcaps/\">\n                                                                                                                                Dropcaps                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/message-box/\">\n                                                                                                                                Message Box                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/lists/\">\n                                                                                                                                Lists                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/titles/\">\n                                                                                                                                Titles                                            </a>\n                </li>\n            </ul>\n        </section>\n		</li></ul></li>\n</ul>    \n										<img width=\"466\" height=\"178\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Screen-Shot-2021-03-26-at-1.45.54-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Screen-Shot-2021-03-26-at-1.45.54-PM.png 466w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Screen-Shot-2021-03-26-at-1.45.54-PM-300x115.png 300w\" sizes=\"(max-width: 466px) 100vw, 466px\" />											\n					<ul>\n							<li>\n					<a href=\"tel:%20509-993-4955\">						\n										509-993-4955\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:%20info@systemamusement.com\">						\n										info@systemamusement.com\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:%20info@systemamusement.com\">						\n										Mon - Sat: 8 am - 5 pm, Sunday: CLOSED\n											</a>\n									</li>\n						</ul>\n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		Send us a newsletter to get update		\n	   		    	<form action=\"https://sa7717.dev34.info/?na=s\" method=\"post\" onsubmit=\"return newsletter_check(this)\">\n		    	<input type=\"hidden\" name=\"nr\" value=\"widget-minimal\"/>\n		    		<label>Your mail address</label>\n		    		<input type=\"email\" required name=\"ne\" value=\"\" placeholder=\"Your mail address\">\n		    		<input type=\"submit\" value=\"Subscribe\">\n		    </form>\n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n		<p>2021 © System Amusements. All rights reserved.</p>','Footer Tax Consulting','','inherit','closed','closed','','3201-revision-v1','','','2021-03-27 21:32:02','2021-03-27 21:32:02','',3201,'https://sa7717.dev34.info/?p=4336',0,'revision','',0),(4335,1,'2021-03-27 21:32:02','2021-03-27 21:32:02','<a href=\"https://demo.casethemes.net/consultio-tax/\">\n							<img width=\"601\" height=\"159\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/01/h6-logo-light.png\" alt=\"\" srcset=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/01/h6-logo-light.png 601w, https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/01/h6-logo-light-300x79.png 300w\" sizes=\"(max-width: 601px) 100vw, 601px\" />								</a>\n			    <ul>\n                    <li>\n                       30 Commercial Road<br /> Fratton, Australia                    \n                           </li>\n                    <li>\n                       1-888-452-1505                    \n                           </li>\n            </ul>\n		Open Hours:Mon - Sat: 8 am - 5 pm,<br/>\nSunday: CLOSED		\n    <h3>\n        Links\n        <i></i>\n    </h3>\n        <ul id=\"menu-menu-footer-links\"><li id=\"menu-item-65\"><a href=\"https://demo.casethemes.net/consultio-tax/team/\">Team</a></li>\n<li id=\"menu-item-509\"><a href=\"https://demo.casethemes.net/consultio-tax/services-v-1/\">Services</a></li>\n<li id=\"menu-item-67\"><a href=\"https://demo.casethemes.net/consultio-tax/faq/\">FAQ</a></li>\n<li id=\"menu-item-68\"><a href=\"https://demo.casethemes.net/consultio-tax/about/\">About us</a></li>\n<li id=\"menu-item-103\"><a href=\"#\">Gallery</a></li>\n<li id=\"menu-item-511\"><a href=\"https://demo.casethemes.net/consultio-tax/testimonials/\">Testimonials</a></li>\n<li id=\"menu-item-70\"><a href=\"https://demo.casethemes.net/consultio-tax/contact/\">Contact</a></li>\n<li id=\"menu-item-512\"><a href=\"https://demo.casethemes.net/consultio-tax/blog-grid-3-columns/\">News</a></li>\n<li id=\"menu-item-513\"><a href=\"https://demo.casethemes.net/consultio-tax/portfolio-grid/\">Portfolio</a></li>\n</ul>    \n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		Send us a newsletter to get update		\n	    	    <form action=\"https://demo.casethemes.net/consultio-tax/?na=s\" method=\"post\" onsubmit=\"return newsletter_check(this)\">\n	    	<input type=\"hidden\" name=\"nr\" value=\"widget-minimal\"/>\n	    		<label>Your mail address</label>\n	    		<input type=\"email\" required name=\"ne\" value=\"\" placeholder=\"Your mail address\">\n	    		<input type=\"submit\" value=\"Subscribe\">\n	    </form>\n											<a href=\"#\" target=\"_blank\" rel=\"noopener noreferrer\">\n							<img width=\"157\" height=\"46\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/10/app-store.png\" alt=\"\" />								</a>\n											<a href=\"#\" target=\"_blank\" rel=\"noopener noreferrer\">\n							<img width=\"145\" height=\"45\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/10/google-play.png\" alt=\"\" />								</a>\n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n		2019 © All rights reserved by <a href=\"https://themeforest.net/user/case-themes/portfolio\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">CaseThemes</a>','Footer Tax Consulting','','inherit','closed','closed','','3201-revision-v1','','','2021-03-27 21:32:02','2021-03-27 21:32:02','',3201,'https://sa7717.dev34.info/?p=4335',0,'revision','',0),(4337,1,'2021-03-27 21:32:17','2021-03-27 21:32:17','<h3>\n        Links\n        <i></i>\n    </h3>\n        <ul id=\"menu-main-menu\"><li id=\"menu-item-3973\"><a href=\"#\">Demos</a><ul><li><style>.elementor-3953 .elementor-element.elementor-element-7a0c59a5 > .elementor-element-populated{padding:33px 40px 33px 40px;}.elementor-3953 .elementor-element.elementor-element-744d686c .ct-heading .item--title{font-size:16px;font-weight:600;margin-bottom:10px;}.elementor-3953 .elementor-element.elementor-element-744d686c .ct-heading .item--sub-title{margin-bottom:9px;}.elementor-3953 .elementor-element.elementor-element-7ba31669 > .elementor-element-populated{padding:33px 40px 33px 40px;}.elementor-3953 .elementor-element.elementor-element-50713f58 .ct-heading .item--title{font-size:16px;font-weight:600;margin-bottom:10px;}.elementor-3953 .elementor-element.elementor-element-50713f58 .ct-heading .item--sub-title{margin-bottom:9px;}.elementor-3953 .elementor-element.elementor-element-4d5c5322 > .elementor-element-populated{padding:33px 40px 33px 40px;}.elementor-3953 .elementor-element.elementor-element-439b7e93 .ct-heading .item--title{font-size:16px;font-weight:600;margin-bottom:10px;}.elementor-3953 .elementor-element.elementor-element-439b7e93 .ct-heading .item--sub-title{margin-bottom:9px;}.elementor-3953 .elementor-element.elementor-element-5b10b01e > .elementor-element-populated{padding:33px 40px 33px 40px;}.elementor-3953 .elementor-element.elementor-element-329d154a .ct-heading .item--title{font-size:16px;font-weight:600;margin-bottom:10px;}.elementor-3953 .elementor-element.elementor-element-329d154a .ct-heading .item--sub-title{margin-bottom:9px;}</style>		\n					        <section data-id=\"7f745fa1\" data-element_type=\"section\">\n	    <h3>\n                        Multi Pages                    \n            </h3>\n			    <ul>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/\">\n                                                                                                                                Finance                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-finance2/\">\n                                                                                                                                Finance 2                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-rtl/\">\n                                                                                                                                Finance RTL                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-business/\">\n                                                                                                                                Business 1                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-business2/\">\n                                                                                                                                Business 2                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-corporate1\">\n                                                                                                                                Corporate 1                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-corporate2\">\n                                                                                                                                Corporate 2                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-corporate3\">\n                                                                                                                                Corporate 3                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-law/\">\n                                                                                                                                Law                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-startup/\">\n                                                                                                                                Startup                                            </a>\n                </li>\n            </ul>\n	    <h3>\n                        Multi Pages                    \n            </h3>\n			    <ul>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-hr/\">\n                                                                                                                                Human Resource                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-coach/\">\n                                                                                                                                Life Coach                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-marketing/\">\n                                                                                                                                Marketing                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-medical/\">\n                                                                                                                                Medical                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-it/\">\n                                                                                                                                IT Solution                                            </a>\n                </li>\n                        <li>\n                    <a href=\"https://demo.casethemes.net/consultio-tax/\">\n                                                                                                                                Tax Consulting                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-insurance/\">\n                                                                                                                                Insurance                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-corona/\">\n                                                                                                                                Corona                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-consulting/\">\n                                                                                                                                Consulting                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-software/\">\n                                                                                                                                Software                                            </a>\n                </li>\n            </ul>\n	    <h3>\n                        One Page                    \n            </h3>\n			    <ul>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/home-onepage\">\n                                                                                                                                Finance                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-finance2/home-onepage\">\n                                                                                                                                Finance 2                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-rtl/home-onepage\">\n                                                                                                                                Finance RTL                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-business/home-onepage\">\n                                                                                                                                Business 1                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-business2/home-onepage\">\n                                                                                                                                Business 2                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-corporate1/home-onepage\">\n                                                                                                                                Corporate 1                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-corporate2/home-onepage\">\n                                                                                                                                Corporate 2                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-corporate3/home-onepage\">\n                                                                                                                                Corporate 3                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-law/home-onepage\">\n                                                                                                                                Law                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-startup/home-onepage\">\n                                                                                                                                Startup                                            </a>\n                </li>\n            </ul>\n	    <h3>\n                        One Page                    \n            </h3>\n			    <ul>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-hr/home-onepage\">\n                                                                                                                                Human Resource                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-coach/home-onepage\">\n                                                                                                                                Life Coach                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-marketing/home-onepage\">\n                                                                                                                                Marketing                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-medical/home-onepage\">\n                                                                                                                                Medical                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-it/home-onepage\">\n                                                                                                                                IT Solution                                            </a>\n                </li>\n                        <li>\n                    <a href=\"https://demo.casethemes.net/consultio-tax/home-onepage\">\n                                                                                                                                Tax Consulting                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-insurance/home-onepage\">\n                                                                                                                                Insurance                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-corona/home-onepage\">\n                                                                                                                                Corona                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-consulting/home-onepage\">\n                                                                                                                                Consulting                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-software/home-onepage\">\n                                                                                                                                Software                                            </a>\n                </li>\n            </ul>\n        </section>\n		</li></ul></li>\n<li id=\"menu-item-4012\"><a href=\"https://sa7717.dev34.info/services-v-1/\">Services</a>\n<ul>\n	<li id=\"menu-item-4011\"><a href=\"https://sa7717.dev34.info/services-v-1/\">Services v.1</a></li>\n	<li id=\"menu-item-4010\"><a href=\"https://sa7717.dev34.info/services-v-2/\">Services v.2</a></li>\n	<li id=\"menu-item-4016\"><a href=\"https://sa7717.dev34.info/service/seo-optimization/\">Service Details</a></li>\n</ul>\n</li>\n<li id=\"menu-item-3968\"><a href=\"#\">Pages</a>\n<ul>\n	<li id=\"menu-item-3988\"><a href=\"https://sa7717.dev34.info/about/\">About us</a>\n	<ul>\n		<li id=\"menu-item-4094\"><a href=\"https://sa7717.dev34.info/about/\">About v.1</a></li>\n		<li id=\"menu-item-4093\"><a href=\"https://sa7717.dev34.info/about-v-2/\">About v.2</a></li>\n		<li id=\"menu-item-4092\"><a href=\"https://sa7717.dev34.info/about-v-3/\">About v.3</a></li>\n		<li id=\"menu-item-4091\"><a href=\"https://sa7717.dev34.info/about-v-4/\">About v.4</a></li>\n	</ul>\n</li>\n	<li id=\"menu-item-3987\"><a href=\"https://sa7717.dev34.info/team/\">Our Team</a>\n	<ul>\n		<li id=\"menu-item-4097\"><a href=\"https://sa7717.dev34.info/team/\">Team v.1</a></li>\n		<li id=\"menu-item-4083\"><a href=\"https://sa7717.dev34.info/team-v-2/\">Team v.2</a></li>\n		<li id=\"menu-item-4082\"><a href=\"https://sa7717.dev34.info/team-v-3/\">Team v.3</a></li>\n		<li id=\"menu-item-4081\"><a href=\"https://sa7717.dev34.info/team-v-4/\">Team v.4</a></li>\n	</ul>\n</li>\n	<li id=\"menu-item-4008\"><a href=\"https://sa7717.dev34.info/team-details/\">Team Details</a></li>\n	<li id=\"menu-item-4032\"><a href=\"https://sa7717.dev34.info/careers/\">Careers</a></li>\n	<li id=\"menu-item-4009\"><a href=\"https://sa7717.dev34.info/testimonials/\">Testimonials</a>\n	<ul>\n		<li id=\"menu-item-4098\"><a href=\"https://sa7717.dev34.info/testimonials/\">Testimonials v.1</a></li>\n		<li id=\"menu-item-4090\"><a href=\"https://sa7717.dev34.info/testimonials-v-2/\">Testimonials v.2</a></li>\n		<li id=\"menu-item-4089\"><a href=\"https://sa7717.dev34.info/testimonials-v-3/\">Testimonials v.3</a></li>\n		<li id=\"menu-item-4088\"><a href=\"https://sa7717.dev34.info/testimonials-v-4/\">Testimonials v.4</a></li>\n	</ul>\n</li>\n	<li id=\"menu-item-3985\"><a href=\"https://sa7717.dev34.info/pricing/\">Pricing</a>\n	<ul>\n		<li id=\"menu-item-4096\"><a href=\"https://sa7717.dev34.info/pricing/\">Pricing v.1</a></li>\n		<li id=\"menu-item-4087\"><a href=\"https://sa7717.dev34.info/pricing-v-2/\">Pricing v.2</a></li>\n	</ul>\n</li>\n	<li id=\"menu-item-3986\"><a href=\"https://sa7717.dev34.info/faq/\">FAQs</a></li>\n	<li id=\"menu-item-3989\"><a href=\"https://sa7717.dev34.info/contact/\">Contact us</a>\n	<ul>\n		<li id=\"menu-item-4095\"><a href=\"https://sa7717.dev34.info/contact/\">Contact v.1</a></li>\n		<li id=\"menu-item-4086\"><a href=\"https://sa7717.dev34.info/contact-v-2/\">Contact v.2</a></li>\n		<li id=\"menu-item-4085\"><a href=\"https://sa7717.dev34.info/contact-v-3/\">Contact v.3</a></li>\n		<li id=\"menu-item-4084\"><a href=\"https://sa7717.dev34.info/contact-v-4/\">Contact v.4</a></li>\n	</ul>\n</li>\n	<li id=\"menu-item-3970\"><a href=\"https://demo.casethemes.net/consultio-tax/404-page/\">Error 404</a></li>\n	<li id=\"menu-item-4024\"><a href=\"https://sa7717.dev34.info/shop/\">Shop</a>\n	<ul>\n		<li id=\"menu-item-4023\"><a href=\"https://sa7717.dev34.info/shop/\">Products</a></li>\n		<li id=\"menu-item-4026\"><a href=\"https://sa7717.dev34.info/product/black-suit/\">Product Details</a></li>\n		<li id=\"menu-item-4025\"><a href=\"https://sa7717.dev34.info/shop-wishlist/\">Wishlist</a></li>\n		<li id=\"menu-item-4022\"><a href=\"https://sa7717.dev34.info/cart/\">Cart</a></li>\n	</ul>\n</li>\n</ul>\n</li>\n<li id=\"menu-item-4015\"><a href=\"https://sa7717.dev34.info/portfolio-grid/\">Portfolio</a>\n<ul>\n	<li id=\"menu-item-4014\"><a href=\"https://sa7717.dev34.info/portfolio-grid/\">Portfolio Grid</a></li>\n	<li id=\"menu-item-4013\"><a href=\"https://sa7717.dev34.info/portfolio-masonry/\">Portfolio Masonry</a></li>\n	<li id=\"menu-item-4021\"><a href=\"https://sa7717.dev34.info/portfolio/data-analytics/\">Portfolio Details</a></li>\n</ul>\n</li>\n<li id=\"menu-item-3994\"><a href=\"https://sa7717.dev34.info/blog-standard/\">Blog</a>\n<ul>\n	<li id=\"menu-item-3997\"><a href=\"https://sa7717.dev34.info/blog-carousel/\">Blog Carousel</a></li>\n	<li id=\"menu-item-3996\"><a href=\"https://sa7717.dev34.info/blog-grid-3-columns/\">Blog Grid</a>\n	<ul>\n		<li id=\"menu-item-4000\"><a href=\"https://sa7717.dev34.info/blog-grid-2-columns-sidebar-left/\">Left Sidebar</a></li>\n		<li id=\"menu-item-3998\"><a href=\"https://sa7717.dev34.info/blog-grid-3-columns/\">Without Sidebar</a></li>\n		<li id=\"menu-item-3999\"><a href=\"https://sa7717.dev34.info/blog-grid-2-columns-sidebar-right/\">Right Sidebar</a></li>\n	</ul>\n</li>\n	<li id=\"menu-item-3995\"><a href=\"https://sa7717.dev34.info/blog-standard/\">Blog Standard</a>\n	<ul>\n		<li id=\"menu-item-4002\"><a href=\"https://sa7717.dev34.info/blog-standard-left-sidebar/\">Left Sidebar</a></li>\n		<li id=\"menu-item-4001\"><a href=\"https://sa7717.dev34.info/blog-standard-without-sidebar/\">Without Sidebar</a></li>\n		<li id=\"menu-item-4003\"><a href=\"https://sa7717.dev34.info/blog-standard/\">Right Sidebar</a></li>\n	</ul>\n</li>\n	<li id=\"menu-item-4004\"><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Blog Details</a>\n	<ul>\n		<li id=\"menu-item-4006\"><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">Left Sidebar</a></li>\n		<li id=\"menu-item-4007\"><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">Without Sidebar</a></li>\n		<li id=\"menu-item-4005\"><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Right Sidebar</a></li>\n	</ul>\n</li>\n</ul>\n</li>\n<li id=\"menu-item-3976\"><a href=\"#\">Elements</a><ul><li><style>.elementor-3955 .elementor-element.elementor-element-4c3a6ff1 > .elementor-element-populated{padding:33px 40px 33px 40px;}.elementor-3955 .elementor-element.elementor-element-78d5ebb6 .ct-heading .item--title{font-size:16px;font-weight:600;margin-bottom:10px;}.elementor-3955 .elementor-element.elementor-element-78d5ebb6 .ct-heading .item--sub-title{margin-bottom:9px;}.elementor-3955 .elementor-element.elementor-element-6da39e70 > .elementor-element-populated{padding:33px 40px 33px 40px;}.elementor-3955 .elementor-element.elementor-element-35e5905d .ct-heading .item--title{font-size:16px;font-weight:600;margin-bottom:10px;}.elementor-3955 .elementor-element.elementor-element-35e5905d .ct-heading .item--sub-title{margin-bottom:9px;}.elementor-3955 .elementor-element.elementor-element-5064b5d4 > .elementor-element-populated{padding:33px 40px 33px 40px;}.elementor-3955 .elementor-element.elementor-element-1754edde .ct-heading .item--title{font-size:16px;font-weight:600;margin-bottom:10px;}.elementor-3955 .elementor-element.elementor-element-1754edde .ct-heading .item--sub-title{margin-bottom:9px;}.elementor-3955 .elementor-element.elementor-element-620e8e1c > .elementor-element-populated{padding:33px 40px 33px 40px;}.elementor-3955 .elementor-element.elementor-element-3d20498e .ct-heading .item--title{font-size:16px;font-weight:600;margin-bottom:10px;}.elementor-3955 .elementor-element.elementor-element-3d20498e .ct-heading .item--sub-title{margin-bottom:9px;}</style>		\n					        <section data-id=\"35d4a023\" data-element_type=\"section\">\n	    <h3>\n                        Interactive Elements                    \n            </h3>\n			    <ul>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/testimonials-2/\">\n                                                                                                                                Testimonials                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/blog-slider/\">\n                                                                                                                                Blog Slider                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/elements-portfolio-carousel/\">\n                                                                                                                                Portfolio Carousel                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/service-carousel/\">\n                                                                                                                                Service Carousel                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/clients/\">\n                                                                                                                                Clients                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/history/\">\n                                                                                                                                History                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/video-button/\">\n                                                                                                                                Video Button                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/columns/\">\n                                                                                                                                Columns                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/row-background/\">\n                                                                                                                                Row background                                            </a>\n                </li>\n            </ul>\n	    <h3>\n                        Standard Elements                    \n            </h3>\n			    <ul>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/team-variations/\">\n                                                                                                                                Team Variations                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/buttons/\">\n                                                                                                                                Buttons                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/tabs-tours/\">\n                                                                                                                                Tabs & Tours                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/accordions-toggles/\">\n                                                                                                                                Accordions & Toggles                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/google-maps/\">\n                                                                                                                                Google Maps                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/contact-forms-7/\">\n                                                                                                                                Contact Forms 7                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/dividers/\">\n                                                                                                                                Dividers                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/pricing-tables/\">\n                                                                                                                                Pricing Tables                                            </a>\n                </li>\n            </ul>\n	    <h3>\n                        Infographics                    \n            </h3>\n			    <ul>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/counters/\">\n                                                                                                                                Counters                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/progress-bars/\">\n                                                                                                                                Progress Bars                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/icon-with-text/\">\n                                                                                                                                Icon With Text                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/icon-grid/\">\n                                                                                                                                Icon Grid                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/image-box-fancy/\">\n                                                                                                                                Image Box Fancy                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/cover-boxes/\">\n                                                                                                                                Cover Boxes                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/newsletters/\">\n                                                                                                                                Newsletters                                            </a>\n                </li>\n            </ul>\n	    <h3>\n                        Typography                    \n            </h3>\n			    <ul>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/custom-fonts/\">\n                                                                                                                                Custom Fonts                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/highlights/\">\n                                                                                                                                Highlights                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/blockquote/\">\n                                                                                                                                Blockquote                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/dropcaps/\">\n                                                                                                                                Dropcaps                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/message-box/\">\n                                                                                                                                Message Box                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/lists/\">\n                                                                                                                                Lists                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/titles/\">\n                                                                                                                                Titles                                            </a>\n                </li>\n            </ul>\n        </section>\n		</li></ul></li>\n</ul>    \n										<img width=\"466\" height=\"178\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Screen-Shot-2021-03-26-at-1.45.54-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Screen-Shot-2021-03-26-at-1.45.54-PM.png 466w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Screen-Shot-2021-03-26-at-1.45.54-PM-300x115.png 300w\" sizes=\"(max-width: 466px) 100vw, 466px\" />											\n					<ul>\n							<li>\n					<a href=\"tel:%20509-993-4955\">						\n										509-993-4955\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:%20info@systemamusement.com\">						\n										info@systemamusement.com\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:%20info@systemamusement.com\">						\n										Mon - Sat: 8 am - 5 pm, Sunday: CLOSED\n											</a>\n									</li>\n						</ul>\n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		Send us a newsletter to get update		\n	   		    	<form action=\"https://sa7717.dev34.info/?na=s\" method=\"post\" onsubmit=\"return newsletter_check(this)\">\n		    	<input type=\"hidden\" name=\"nr\" value=\"widget-minimal\"/>\n		    		<label>Your mail address</label>\n		    		<input type=\"email\" required name=\"ne\" value=\"\" placeholder=\"Your mail address\">\n		    		<input type=\"submit\" value=\"Subscribe\">\n		    </form>\n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n		<p>2021 © System Amusements. All rights reserved.</p>','Footer Tax Consulting','','inherit','closed','closed','','3201-revision-v1','','','2021-03-27 21:32:17','2021-03-27 21:32:17','',3201,'https://sa7717.dev34.info/?p=4337',0,'revision','',0),(4338,1,'2021-03-27 21:32:31','2021-03-27 21:32:31','<h3>\n        Links\n        <i></i>\n    </h3>\n        <ul id=\"menu-main-menu\"><li id=\"menu-item-3973\"><a href=\"#\">Demos</a><ul><li><style>.elementor-3953 .elementor-element.elementor-element-7a0c59a5 > .elementor-element-populated{padding:33px 40px 33px 40px;}.elementor-3953 .elementor-element.elementor-element-744d686c .ct-heading .item--title{font-size:16px;font-weight:600;margin-bottom:10px;}.elementor-3953 .elementor-element.elementor-element-744d686c .ct-heading .item--sub-title{margin-bottom:9px;}.elementor-3953 .elementor-element.elementor-element-7ba31669 > .elementor-element-populated{padding:33px 40px 33px 40px;}.elementor-3953 .elementor-element.elementor-element-50713f58 .ct-heading .item--title{font-size:16px;font-weight:600;margin-bottom:10px;}.elementor-3953 .elementor-element.elementor-element-50713f58 .ct-heading .item--sub-title{margin-bottom:9px;}.elementor-3953 .elementor-element.elementor-element-4d5c5322 > .elementor-element-populated{padding:33px 40px 33px 40px;}.elementor-3953 .elementor-element.elementor-element-439b7e93 .ct-heading .item--title{font-size:16px;font-weight:600;margin-bottom:10px;}.elementor-3953 .elementor-element.elementor-element-439b7e93 .ct-heading .item--sub-title{margin-bottom:9px;}.elementor-3953 .elementor-element.elementor-element-5b10b01e > .elementor-element-populated{padding:33px 40px 33px 40px;}.elementor-3953 .elementor-element.elementor-element-329d154a .ct-heading .item--title{font-size:16px;font-weight:600;margin-bottom:10px;}.elementor-3953 .elementor-element.elementor-element-329d154a .ct-heading .item--sub-title{margin-bottom:9px;}</style>		\n					        <section data-id=\"7f745fa1\" data-element_type=\"section\">\n	    <h3>\n                        Multi Pages                    \n            </h3>\n			    <ul>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/\">\n                                                                                                                                Finance                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-finance2/\">\n                                                                                                                                Finance 2                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-rtl/\">\n                                                                                                                                Finance RTL                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-business/\">\n                                                                                                                                Business 1                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-business2/\">\n                                                                                                                                Business 2                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-corporate1\">\n                                                                                                                                Corporate 1                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-corporate2\">\n                                                                                                                                Corporate 2                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-corporate3\">\n                                                                                                                                Corporate 3                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-law/\">\n                                                                                                                                Law                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-startup/\">\n                                                                                                                                Startup                                            </a>\n                </li>\n            </ul>\n	    <h3>\n                        Multi Pages                    \n            </h3>\n			    <ul>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-hr/\">\n                                                                                                                                Human Resource                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-coach/\">\n                                                                                                                                Life Coach                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-marketing/\">\n                                                                                                                                Marketing                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-medical/\">\n                                                                                                                                Medical                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-it/\">\n                                                                                                                                IT Solution                                            </a>\n                </li>\n                        <li>\n                    <a href=\"https://demo.casethemes.net/consultio-tax/\">\n                                                                                                                                Tax Consulting                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-insurance/\">\n                                                                                                                                Insurance                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-corona/\">\n                                                                                                                                Corona                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-consulting/\">\n                                                                                                                                Consulting                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-software/\">\n                                                                                                                                Software                                            </a>\n                </li>\n            </ul>\n	    <h3>\n                        One Page                    \n            </h3>\n			    <ul>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/home-onepage\">\n                                                                                                                                Finance                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-finance2/home-onepage\">\n                                                                                                                                Finance 2                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-rtl/home-onepage\">\n                                                                                                                                Finance RTL                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-business/home-onepage\">\n                                                                                                                                Business 1                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-business2/home-onepage\">\n                                                                                                                                Business 2                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-corporate1/home-onepage\">\n                                                                                                                                Corporate 1                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-corporate2/home-onepage\">\n                                                                                                                                Corporate 2                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-corporate3/home-onepage\">\n                                                                                                                                Corporate 3                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-law/home-onepage\">\n                                                                                                                                Law                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-startup/home-onepage\">\n                                                                                                                                Startup                                            </a>\n                </li>\n            </ul>\n	    <h3>\n                        One Page                    \n            </h3>\n			    <ul>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-hr/home-onepage\">\n                                                                                                                                Human Resource                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-coach/home-onepage\">\n                                                                                                                                Life Coach                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-marketing/home-onepage\">\n                                                                                                                                Marketing                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-medical/home-onepage\">\n                                                                                                                                Medical                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-it/home-onepage\">\n                                                                                                                                IT Solution                                            </a>\n                </li>\n                        <li>\n                    <a href=\"https://demo.casethemes.net/consultio-tax/home-onepage\">\n                                                                                                                                Tax Consulting                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-insurance/home-onepage\">\n                                                                                                                                Insurance                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-corona/home-onepage\">\n                                                                                                                                Corona                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-consulting/home-onepage\">\n                                                                                                                                Consulting                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-software/home-onepage\">\n                                                                                                                                Software                                            </a>\n                </li>\n            </ul>\n        </section>\n		</li></ul></li>\n<li id=\"menu-item-4012\"><a href=\"https://sa7717.dev34.info/services-v-1/\">Services</a>\n<ul>\n	<li id=\"menu-item-4011\"><a href=\"https://sa7717.dev34.info/services-v-1/\">Services v.1</a></li>\n	<li id=\"menu-item-4010\"><a href=\"https://sa7717.dev34.info/services-v-2/\">Services v.2</a></li>\n	<li id=\"menu-item-4016\"><a href=\"https://sa7717.dev34.info/service/seo-optimization/\">Service Details</a></li>\n</ul>\n</li>\n<li id=\"menu-item-3968\"><a href=\"#\">Pages</a>\n<ul>\n	<li id=\"menu-item-3988\"><a href=\"https://sa7717.dev34.info/about/\">About us</a>\n	<ul>\n		<li id=\"menu-item-4094\"><a href=\"https://sa7717.dev34.info/about/\">About v.1</a></li>\n		<li id=\"menu-item-4093\"><a href=\"https://sa7717.dev34.info/about-v-2/\">About v.2</a></li>\n		<li id=\"menu-item-4092\"><a href=\"https://sa7717.dev34.info/about-v-3/\">About v.3</a></li>\n		<li id=\"menu-item-4091\"><a href=\"https://sa7717.dev34.info/about-v-4/\">About v.4</a></li>\n	</ul>\n</li>\n	<li id=\"menu-item-3987\"><a href=\"https://sa7717.dev34.info/team/\">Our Team</a>\n	<ul>\n		<li id=\"menu-item-4097\"><a href=\"https://sa7717.dev34.info/team/\">Team v.1</a></li>\n		<li id=\"menu-item-4083\"><a href=\"https://sa7717.dev34.info/team-v-2/\">Team v.2</a></li>\n		<li id=\"menu-item-4082\"><a href=\"https://sa7717.dev34.info/team-v-3/\">Team v.3</a></li>\n		<li id=\"menu-item-4081\"><a href=\"https://sa7717.dev34.info/team-v-4/\">Team v.4</a></li>\n	</ul>\n</li>\n	<li id=\"menu-item-4008\"><a href=\"https://sa7717.dev34.info/team-details/\">Team Details</a></li>\n	<li id=\"menu-item-4032\"><a href=\"https://sa7717.dev34.info/careers/\">Careers</a></li>\n	<li id=\"menu-item-4009\"><a href=\"https://sa7717.dev34.info/testimonials/\">Testimonials</a>\n	<ul>\n		<li id=\"menu-item-4098\"><a href=\"https://sa7717.dev34.info/testimonials/\">Testimonials v.1</a></li>\n		<li id=\"menu-item-4090\"><a href=\"https://sa7717.dev34.info/testimonials-v-2/\">Testimonials v.2</a></li>\n		<li id=\"menu-item-4089\"><a href=\"https://sa7717.dev34.info/testimonials-v-3/\">Testimonials v.3</a></li>\n		<li id=\"menu-item-4088\"><a href=\"https://sa7717.dev34.info/testimonials-v-4/\">Testimonials v.4</a></li>\n	</ul>\n</li>\n	<li id=\"menu-item-3985\"><a href=\"https://sa7717.dev34.info/pricing/\">Pricing</a>\n	<ul>\n		<li id=\"menu-item-4096\"><a href=\"https://sa7717.dev34.info/pricing/\">Pricing v.1</a></li>\n		<li id=\"menu-item-4087\"><a href=\"https://sa7717.dev34.info/pricing-v-2/\">Pricing v.2</a></li>\n	</ul>\n</li>\n	<li id=\"menu-item-3986\"><a href=\"https://sa7717.dev34.info/faq/\">FAQs</a></li>\n	<li id=\"menu-item-3989\"><a href=\"https://sa7717.dev34.info/contact/\">Contact us</a>\n	<ul>\n		<li id=\"menu-item-4095\"><a href=\"https://sa7717.dev34.info/contact/\">Contact v.1</a></li>\n		<li id=\"menu-item-4086\"><a href=\"https://sa7717.dev34.info/contact-v-2/\">Contact v.2</a></li>\n		<li id=\"menu-item-4085\"><a href=\"https://sa7717.dev34.info/contact-v-3/\">Contact v.3</a></li>\n		<li id=\"menu-item-4084\"><a href=\"https://sa7717.dev34.info/contact-v-4/\">Contact v.4</a></li>\n	</ul>\n</li>\n	<li id=\"menu-item-3970\"><a href=\"https://demo.casethemes.net/consultio-tax/404-page/\">Error 404</a></li>\n	<li id=\"menu-item-4024\"><a href=\"https://sa7717.dev34.info/shop/\">Shop</a>\n	<ul>\n		<li id=\"menu-item-4023\"><a href=\"https://sa7717.dev34.info/shop/\">Products</a></li>\n		<li id=\"menu-item-4026\"><a href=\"https://sa7717.dev34.info/product/black-suit/\">Product Details</a></li>\n		<li id=\"menu-item-4025\"><a href=\"https://sa7717.dev34.info/shop-wishlist/\">Wishlist</a></li>\n		<li id=\"menu-item-4022\"><a href=\"https://sa7717.dev34.info/cart/\">Cart</a></li>\n	</ul>\n</li>\n</ul>\n</li>\n<li id=\"menu-item-4015\"><a href=\"https://sa7717.dev34.info/portfolio-grid/\">Portfolio</a>\n<ul>\n	<li id=\"menu-item-4014\"><a href=\"https://sa7717.dev34.info/portfolio-grid/\">Portfolio Grid</a></li>\n	<li id=\"menu-item-4013\"><a href=\"https://sa7717.dev34.info/portfolio-masonry/\">Portfolio Masonry</a></li>\n	<li id=\"menu-item-4021\"><a href=\"https://sa7717.dev34.info/portfolio/data-analytics/\">Portfolio Details</a></li>\n</ul>\n</li>\n<li id=\"menu-item-3994\"><a href=\"https://sa7717.dev34.info/blog-standard/\">Blog</a>\n<ul>\n	<li id=\"menu-item-3997\"><a href=\"https://sa7717.dev34.info/blog-carousel/\">Blog Carousel</a></li>\n	<li id=\"menu-item-3996\"><a href=\"https://sa7717.dev34.info/blog-grid-3-columns/\">Blog Grid</a>\n	<ul>\n		<li id=\"menu-item-4000\"><a href=\"https://sa7717.dev34.info/blog-grid-2-columns-sidebar-left/\">Left Sidebar</a></li>\n		<li id=\"menu-item-3998\"><a href=\"https://sa7717.dev34.info/blog-grid-3-columns/\">Without Sidebar</a></li>\n		<li id=\"menu-item-3999\"><a href=\"https://sa7717.dev34.info/blog-grid-2-columns-sidebar-right/\">Right Sidebar</a></li>\n	</ul>\n</li>\n	<li id=\"menu-item-3995\"><a href=\"https://sa7717.dev34.info/blog-standard/\">Blog Standard</a>\n	<ul>\n		<li id=\"menu-item-4002\"><a href=\"https://sa7717.dev34.info/blog-standard-left-sidebar/\">Left Sidebar</a></li>\n		<li id=\"menu-item-4001\"><a href=\"https://sa7717.dev34.info/blog-standard-without-sidebar/\">Without Sidebar</a></li>\n		<li id=\"menu-item-4003\"><a href=\"https://sa7717.dev34.info/blog-standard/\">Right Sidebar</a></li>\n	</ul>\n</li>\n	<li id=\"menu-item-4004\"><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Blog Details</a>\n	<ul>\n		<li id=\"menu-item-4006\"><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">Left Sidebar</a></li>\n		<li id=\"menu-item-4007\"><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">Without Sidebar</a></li>\n		<li id=\"menu-item-4005\"><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Right Sidebar</a></li>\n	</ul>\n</li>\n</ul>\n</li>\n<li id=\"menu-item-3976\"><a href=\"#\">Elements</a><ul><li><style>.elementor-3955 .elementor-element.elementor-element-4c3a6ff1 > .elementor-element-populated{padding:33px 40px 33px 40px;}.elementor-3955 .elementor-element.elementor-element-78d5ebb6 .ct-heading .item--title{font-size:16px;font-weight:600;margin-bottom:10px;}.elementor-3955 .elementor-element.elementor-element-78d5ebb6 .ct-heading .item--sub-title{margin-bottom:9px;}.elementor-3955 .elementor-element.elementor-element-6da39e70 > .elementor-element-populated{padding:33px 40px 33px 40px;}.elementor-3955 .elementor-element.elementor-element-35e5905d .ct-heading .item--title{font-size:16px;font-weight:600;margin-bottom:10px;}.elementor-3955 .elementor-element.elementor-element-35e5905d .ct-heading .item--sub-title{margin-bottom:9px;}.elementor-3955 .elementor-element.elementor-element-5064b5d4 > .elementor-element-populated{padding:33px 40px 33px 40px;}.elementor-3955 .elementor-element.elementor-element-1754edde .ct-heading .item--title{font-size:16px;font-weight:600;margin-bottom:10px;}.elementor-3955 .elementor-element.elementor-element-1754edde .ct-heading .item--sub-title{margin-bottom:9px;}.elementor-3955 .elementor-element.elementor-element-620e8e1c > .elementor-element-populated{padding:33px 40px 33px 40px;}.elementor-3955 .elementor-element.elementor-element-3d20498e .ct-heading .item--title{font-size:16px;font-weight:600;margin-bottom:10px;}.elementor-3955 .elementor-element.elementor-element-3d20498e .ct-heading .item--sub-title{margin-bottom:9px;}</style>		\n					        <section data-id=\"35d4a023\" data-element_type=\"section\">\n	    <h3>\n                        Interactive Elements                    \n            </h3>\n			    <ul>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/testimonials-2/\">\n                                                                                                                                Testimonials                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/blog-slider/\">\n                                                                                                                                Blog Slider                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/elements-portfolio-carousel/\">\n                                                                                                                                Portfolio Carousel                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/service-carousel/\">\n                                                                                                                                Service Carousel                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/clients/\">\n                                                                                                                                Clients                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/history/\">\n                                                                                                                                History                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/video-button/\">\n                                                                                                                                Video Button                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/columns/\">\n                                                                                                                                Columns                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/row-background/\">\n                                                                                                                                Row background                                            </a>\n                </li>\n            </ul>\n	    <h3>\n                        Standard Elements                    \n            </h3>\n			    <ul>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/team-variations/\">\n                                                                                                                                Team Variations                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/buttons/\">\n                                                                                                                                Buttons                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/tabs-tours/\">\n                                                                                                                                Tabs & Tours                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/accordions-toggles/\">\n                                                                                                                                Accordions & Toggles                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/google-maps/\">\n                                                                                                                                Google Maps                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/contact-forms-7/\">\n                                                                                                                                Contact Forms 7                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/dividers/\">\n                                                                                                                                Dividers                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/pricing-tables/\">\n                                                                                                                                Pricing Tables                                            </a>\n                </li>\n            </ul>\n	    <h3>\n                        Infographics                    \n            </h3>\n			    <ul>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/counters/\">\n                                                                                                                                Counters                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/progress-bars/\">\n                                                                                                                                Progress Bars                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/icon-with-text/\">\n                                                                                                                                Icon With Text                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/icon-grid/\">\n                                                                                                                                Icon Grid                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/image-box-fancy/\">\n                                                                                                                                Image Box Fancy                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/cover-boxes/\">\n                                                                                                                                Cover Boxes                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/newsletters/\">\n                                                                                                                                Newsletters                                            </a>\n                </li>\n            </ul>\n	    <h3>\n                        Typography                    \n            </h3>\n			    <ul>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/custom-fonts/\">\n                                                                                                                                Custom Fonts                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/highlights/\">\n                                                                                                                                Highlights                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/blockquote/\">\n                                                                                                                                Blockquote                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/dropcaps/\">\n                                                                                                                                Dropcaps                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/message-box/\">\n                                                                                                                                Message Box                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/lists/\">\n                                                                                                                                Lists                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/titles/\">\n                                                                                                                                Titles                                            </a>\n                </li>\n            </ul>\n        </section>\n		</li></ul></li>\n</ul>    \n										<img width=\"466\" height=\"178\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Screen-Shot-2021-03-26-at-1.45.54-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Screen-Shot-2021-03-26-at-1.45.54-PM.png 466w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Screen-Shot-2021-03-26-at-1.45.54-PM-300x115.png 300w\" sizes=\"(max-width: 466px) 100vw, 466px\" />											\n					<ul>\n							<li>\n					<a href=\"tel:%20509-993-4955\">						\n										509-993-4955\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:%20info@systemamusement.com\">						\n										info@systemamusement.com\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:%20info@systemamusement.com\">						\n										Mon - Sat: 8 am - 5 pm, Sunday: CLOSED\n											</a>\n									</li>\n						</ul>\n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		Send us a newsletter to get update		\n	   		    	<form action=\"https://sa7717.dev34.info/?na=s\" method=\"post\" onsubmit=\"return newsletter_check(this)\">\n		    	<input type=\"hidden\" name=\"nr\" value=\"widget-minimal\"/>\n		    		<label>Your mail address</label>\n		    		<input type=\"email\" required name=\"ne\" value=\"\" placeholder=\"Your mail address\">\n		    		<input type=\"submit\" value=\"Subscribe\">\n		    </form>\n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n		<p>2021 © System Amusements. All rights reserved.</p>','Footer Tax Consulting','','inherit','closed','closed','','3201-revision-v1','','','2021-03-27 21:32:31','2021-03-27 21:32:31','',3201,'https://sa7717.dev34.info/?p=4338',0,'revision','',0),(4339,1,'2021-03-27 21:32:51','2021-03-27 21:32:51','<h3>\n        Navigation\n        <i></i>\n    </h3>\n        <ul id=\"menu-main-menu\"><li id=\"menu-item-3973\"><a href=\"#\">Demos</a><ul><li><style>.elementor-3953 .elementor-element.elementor-element-7a0c59a5 > .elementor-element-populated{padding:33px 40px 33px 40px;}.elementor-3953 .elementor-element.elementor-element-744d686c .ct-heading .item--title{font-size:16px;font-weight:600;margin-bottom:10px;}.elementor-3953 .elementor-element.elementor-element-744d686c .ct-heading .item--sub-title{margin-bottom:9px;}.elementor-3953 .elementor-element.elementor-element-7ba31669 > .elementor-element-populated{padding:33px 40px 33px 40px;}.elementor-3953 .elementor-element.elementor-element-50713f58 .ct-heading .item--title{font-size:16px;font-weight:600;margin-bottom:10px;}.elementor-3953 .elementor-element.elementor-element-50713f58 .ct-heading .item--sub-title{margin-bottom:9px;}.elementor-3953 .elementor-element.elementor-element-4d5c5322 > .elementor-element-populated{padding:33px 40px 33px 40px;}.elementor-3953 .elementor-element.elementor-element-439b7e93 .ct-heading .item--title{font-size:16px;font-weight:600;margin-bottom:10px;}.elementor-3953 .elementor-element.elementor-element-439b7e93 .ct-heading .item--sub-title{margin-bottom:9px;}.elementor-3953 .elementor-element.elementor-element-5b10b01e > .elementor-element-populated{padding:33px 40px 33px 40px;}.elementor-3953 .elementor-element.elementor-element-329d154a .ct-heading .item--title{font-size:16px;font-weight:600;margin-bottom:10px;}.elementor-3953 .elementor-element.elementor-element-329d154a .ct-heading .item--sub-title{margin-bottom:9px;}</style>		\n					        <section data-id=\"7f745fa1\" data-element_type=\"section\">\n	    <h3>\n                        Multi Pages                    \n            </h3>\n			    <ul>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/\">\n                                                                                                                                Finance                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-finance2/\">\n                                                                                                                                Finance 2                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-rtl/\">\n                                                                                                                                Finance RTL                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-business/\">\n                                                                                                                                Business 1                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-business2/\">\n                                                                                                                                Business 2                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-corporate1\">\n                                                                                                                                Corporate 1                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-corporate2\">\n                                                                                                                                Corporate 2                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-corporate3\">\n                                                                                                                                Corporate 3                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-law/\">\n                                                                                                                                Law                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-startup/\">\n                                                                                                                                Startup                                            </a>\n                </li>\n            </ul>\n	    <h3>\n                        Multi Pages                    \n            </h3>\n			    <ul>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-hr/\">\n                                                                                                                                Human Resource                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-coach/\">\n                                                                                                                                Life Coach                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-marketing/\">\n                                                                                                                                Marketing                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-medical/\">\n                                                                                                                                Medical                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-it/\">\n                                                                                                                                IT Solution                                            </a>\n                </li>\n                        <li>\n                    <a href=\"https://demo.casethemes.net/consultio-tax/\">\n                                                                                                                                Tax Consulting                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-insurance/\">\n                                                                                                                                Insurance                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-corona/\">\n                                                                                                                                Corona                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-consulting/\">\n                                                                                                                                Consulting                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-software/\">\n                                                                                                                                Software                                            </a>\n                </li>\n            </ul>\n	    <h3>\n                        One Page                    \n            </h3>\n			    <ul>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/home-onepage\">\n                                                                                                                                Finance                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-finance2/home-onepage\">\n                                                                                                                                Finance 2                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-rtl/home-onepage\">\n                                                                                                                                Finance RTL                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-business/home-onepage\">\n                                                                                                                                Business 1                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-business2/home-onepage\">\n                                                                                                                                Business 2                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-corporate1/home-onepage\">\n                                                                                                                                Corporate 1                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-corporate2/home-onepage\">\n                                                                                                                                Corporate 2                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-corporate3/home-onepage\">\n                                                                                                                                Corporate 3                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-law/home-onepage\">\n                                                                                                                                Law                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-startup/home-onepage\">\n                                                                                                                                Startup                                            </a>\n                </li>\n            </ul>\n	    <h3>\n                        One Page                    \n            </h3>\n			    <ul>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-hr/home-onepage\">\n                                                                                                                                Human Resource                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-coach/home-onepage\">\n                                                                                                                                Life Coach                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-marketing/home-onepage\">\n                                                                                                                                Marketing                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-medical/home-onepage\">\n                                                                                                                                Medical                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-it/home-onepage\">\n                                                                                                                                IT Solution                                            </a>\n                </li>\n                        <li>\n                    <a href=\"https://demo.casethemes.net/consultio-tax/home-onepage\">\n                                                                                                                                Tax Consulting                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-insurance/home-onepage\">\n                                                                                                                                Insurance                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-corona/home-onepage\">\n                                                                                                                                Corona                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-consulting/home-onepage\">\n                                                                                                                                Consulting                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-software/home-onepage\">\n                                                                                                                                Software                                            </a>\n                </li>\n            </ul>\n        </section>\n		</li></ul></li>\n<li id=\"menu-item-4012\"><a href=\"https://sa7717.dev34.info/services-v-1/\">Services</a>\n<ul>\n	<li id=\"menu-item-4011\"><a href=\"https://sa7717.dev34.info/services-v-1/\">Services v.1</a></li>\n	<li id=\"menu-item-4010\"><a href=\"https://sa7717.dev34.info/services-v-2/\">Services v.2</a></li>\n	<li id=\"menu-item-4016\"><a href=\"https://sa7717.dev34.info/service/seo-optimization/\">Service Details</a></li>\n</ul>\n</li>\n<li id=\"menu-item-3968\"><a href=\"#\">Pages</a>\n<ul>\n	<li id=\"menu-item-3988\"><a href=\"https://sa7717.dev34.info/about/\">About us</a>\n	<ul>\n		<li id=\"menu-item-4094\"><a href=\"https://sa7717.dev34.info/about/\">About v.1</a></li>\n		<li id=\"menu-item-4093\"><a href=\"https://sa7717.dev34.info/about-v-2/\">About v.2</a></li>\n		<li id=\"menu-item-4092\"><a href=\"https://sa7717.dev34.info/about-v-3/\">About v.3</a></li>\n		<li id=\"menu-item-4091\"><a href=\"https://sa7717.dev34.info/about-v-4/\">About v.4</a></li>\n	</ul>\n</li>\n	<li id=\"menu-item-3987\"><a href=\"https://sa7717.dev34.info/team/\">Our Team</a>\n	<ul>\n		<li id=\"menu-item-4097\"><a href=\"https://sa7717.dev34.info/team/\">Team v.1</a></li>\n		<li id=\"menu-item-4083\"><a href=\"https://sa7717.dev34.info/team-v-2/\">Team v.2</a></li>\n		<li id=\"menu-item-4082\"><a href=\"https://sa7717.dev34.info/team-v-3/\">Team v.3</a></li>\n		<li id=\"menu-item-4081\"><a href=\"https://sa7717.dev34.info/team-v-4/\">Team v.4</a></li>\n	</ul>\n</li>\n	<li id=\"menu-item-4008\"><a href=\"https://sa7717.dev34.info/team-details/\">Team Details</a></li>\n	<li id=\"menu-item-4032\"><a href=\"https://sa7717.dev34.info/careers/\">Careers</a></li>\n	<li id=\"menu-item-4009\"><a href=\"https://sa7717.dev34.info/testimonials/\">Testimonials</a>\n	<ul>\n		<li id=\"menu-item-4098\"><a href=\"https://sa7717.dev34.info/testimonials/\">Testimonials v.1</a></li>\n		<li id=\"menu-item-4090\"><a href=\"https://sa7717.dev34.info/testimonials-v-2/\">Testimonials v.2</a></li>\n		<li id=\"menu-item-4089\"><a href=\"https://sa7717.dev34.info/testimonials-v-3/\">Testimonials v.3</a></li>\n		<li id=\"menu-item-4088\"><a href=\"https://sa7717.dev34.info/testimonials-v-4/\">Testimonials v.4</a></li>\n	</ul>\n</li>\n	<li id=\"menu-item-3985\"><a href=\"https://sa7717.dev34.info/pricing/\">Pricing</a>\n	<ul>\n		<li id=\"menu-item-4096\"><a href=\"https://sa7717.dev34.info/pricing/\">Pricing v.1</a></li>\n		<li id=\"menu-item-4087\"><a href=\"https://sa7717.dev34.info/pricing-v-2/\">Pricing v.2</a></li>\n	</ul>\n</li>\n	<li id=\"menu-item-3986\"><a href=\"https://sa7717.dev34.info/faq/\">FAQs</a></li>\n	<li id=\"menu-item-3989\"><a href=\"https://sa7717.dev34.info/contact/\">Contact us</a>\n	<ul>\n		<li id=\"menu-item-4095\"><a href=\"https://sa7717.dev34.info/contact/\">Contact v.1</a></li>\n		<li id=\"menu-item-4086\"><a href=\"https://sa7717.dev34.info/contact-v-2/\">Contact v.2</a></li>\n		<li id=\"menu-item-4085\"><a href=\"https://sa7717.dev34.info/contact-v-3/\">Contact v.3</a></li>\n		<li id=\"menu-item-4084\"><a href=\"https://sa7717.dev34.info/contact-v-4/\">Contact v.4</a></li>\n	</ul>\n</li>\n	<li id=\"menu-item-3970\"><a href=\"https://demo.casethemes.net/consultio-tax/404-page/\">Error 404</a></li>\n	<li id=\"menu-item-4024\"><a href=\"https://sa7717.dev34.info/shop/\">Shop</a>\n	<ul>\n		<li id=\"menu-item-4023\"><a href=\"https://sa7717.dev34.info/shop/\">Products</a></li>\n		<li id=\"menu-item-4026\"><a href=\"https://sa7717.dev34.info/product/black-suit/\">Product Details</a></li>\n		<li id=\"menu-item-4025\"><a href=\"https://sa7717.dev34.info/shop-wishlist/\">Wishlist</a></li>\n		<li id=\"menu-item-4022\"><a href=\"https://sa7717.dev34.info/cart/\">Cart</a></li>\n	</ul>\n</li>\n</ul>\n</li>\n<li id=\"menu-item-4015\"><a href=\"https://sa7717.dev34.info/portfolio-grid/\">Portfolio</a>\n<ul>\n	<li id=\"menu-item-4014\"><a href=\"https://sa7717.dev34.info/portfolio-grid/\">Portfolio Grid</a></li>\n	<li id=\"menu-item-4013\"><a href=\"https://sa7717.dev34.info/portfolio-masonry/\">Portfolio Masonry</a></li>\n	<li id=\"menu-item-4021\"><a href=\"https://sa7717.dev34.info/portfolio/data-analytics/\">Portfolio Details</a></li>\n</ul>\n</li>\n<li id=\"menu-item-3994\"><a href=\"https://sa7717.dev34.info/blog-standard/\">Blog</a>\n<ul>\n	<li id=\"menu-item-3997\"><a href=\"https://sa7717.dev34.info/blog-carousel/\">Blog Carousel</a></li>\n	<li id=\"menu-item-3996\"><a href=\"https://sa7717.dev34.info/blog-grid-3-columns/\">Blog Grid</a>\n	<ul>\n		<li id=\"menu-item-4000\"><a href=\"https://sa7717.dev34.info/blog-grid-2-columns-sidebar-left/\">Left Sidebar</a></li>\n		<li id=\"menu-item-3998\"><a href=\"https://sa7717.dev34.info/blog-grid-3-columns/\">Without Sidebar</a></li>\n		<li id=\"menu-item-3999\"><a href=\"https://sa7717.dev34.info/blog-grid-2-columns-sidebar-right/\">Right Sidebar</a></li>\n	</ul>\n</li>\n	<li id=\"menu-item-3995\"><a href=\"https://sa7717.dev34.info/blog-standard/\">Blog Standard</a>\n	<ul>\n		<li id=\"menu-item-4002\"><a href=\"https://sa7717.dev34.info/blog-standard-left-sidebar/\">Left Sidebar</a></li>\n		<li id=\"menu-item-4001\"><a href=\"https://sa7717.dev34.info/blog-standard-without-sidebar/\">Without Sidebar</a></li>\n		<li id=\"menu-item-4003\"><a href=\"https://sa7717.dev34.info/blog-standard/\">Right Sidebar</a></li>\n	</ul>\n</li>\n	<li id=\"menu-item-4004\"><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Blog Details</a>\n	<ul>\n		<li id=\"menu-item-4006\"><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">Left Sidebar</a></li>\n		<li id=\"menu-item-4007\"><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">Without Sidebar</a></li>\n		<li id=\"menu-item-4005\"><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Right Sidebar</a></li>\n	</ul>\n</li>\n</ul>\n</li>\n<li id=\"menu-item-3976\"><a href=\"#\">Elements</a><ul><li><style>.elementor-3955 .elementor-element.elementor-element-4c3a6ff1 > .elementor-element-populated{padding:33px 40px 33px 40px;}.elementor-3955 .elementor-element.elementor-element-78d5ebb6 .ct-heading .item--title{font-size:16px;font-weight:600;margin-bottom:10px;}.elementor-3955 .elementor-element.elementor-element-78d5ebb6 .ct-heading .item--sub-title{margin-bottom:9px;}.elementor-3955 .elementor-element.elementor-element-6da39e70 > .elementor-element-populated{padding:33px 40px 33px 40px;}.elementor-3955 .elementor-element.elementor-element-35e5905d .ct-heading .item--title{font-size:16px;font-weight:600;margin-bottom:10px;}.elementor-3955 .elementor-element.elementor-element-35e5905d .ct-heading .item--sub-title{margin-bottom:9px;}.elementor-3955 .elementor-element.elementor-element-5064b5d4 > .elementor-element-populated{padding:33px 40px 33px 40px;}.elementor-3955 .elementor-element.elementor-element-1754edde .ct-heading .item--title{font-size:16px;font-weight:600;margin-bottom:10px;}.elementor-3955 .elementor-element.elementor-element-1754edde .ct-heading .item--sub-title{margin-bottom:9px;}.elementor-3955 .elementor-element.elementor-element-620e8e1c > .elementor-element-populated{padding:33px 40px 33px 40px;}.elementor-3955 .elementor-element.elementor-element-3d20498e .ct-heading .item--title{font-size:16px;font-weight:600;margin-bottom:10px;}.elementor-3955 .elementor-element.elementor-element-3d20498e .ct-heading .item--sub-title{margin-bottom:9px;}</style>		\n					        <section data-id=\"35d4a023\" data-element_type=\"section\">\n	    <h3>\n                        Interactive Elements                    \n            </h3>\n			    <ul>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/testimonials-2/\">\n                                                                                                                                Testimonials                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/blog-slider/\">\n                                                                                                                                Blog Slider                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/elements-portfolio-carousel/\">\n                                                                                                                                Portfolio Carousel                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/service-carousel/\">\n                                                                                                                                Service Carousel                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/clients/\">\n                                                                                                                                Clients                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/history/\">\n                                                                                                                                History                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/video-button/\">\n                                                                                                                                Video Button                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/columns/\">\n                                                                                                                                Columns                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/row-background/\">\n                                                                                                                                Row background                                            </a>\n                </li>\n            </ul>\n	    <h3>\n                        Standard Elements                    \n            </h3>\n			    <ul>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/team-variations/\">\n                                                                                                                                Team Variations                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/buttons/\">\n                                                                                                                                Buttons                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/tabs-tours/\">\n                                                                                                                                Tabs & Tours                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/accordions-toggles/\">\n                                                                                                                                Accordions & Toggles                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/google-maps/\">\n                                                                                                                                Google Maps                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/contact-forms-7/\">\n                                                                                                                                Contact Forms 7                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/dividers/\">\n                                                                                                                                Dividers                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/pricing-tables/\">\n                                                                                                                                Pricing Tables                                            </a>\n                </li>\n            </ul>\n	    <h3>\n                        Infographics                    \n            </h3>\n			    <ul>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/counters/\">\n                                                                                                                                Counters                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/progress-bars/\">\n                                                                                                                                Progress Bars                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/icon-with-text/\">\n                                                                                                                                Icon With Text                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/icon-grid/\">\n                                                                                                                                Icon Grid                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/image-box-fancy/\">\n                                                                                                                                Image Box Fancy                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/cover-boxes/\">\n                                                                                                                                Cover Boxes                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/newsletters/\">\n                                                                                                                                Newsletters                                            </a>\n                </li>\n            </ul>\n	    <h3>\n                        Typography                    \n            </h3>\n			    <ul>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/custom-fonts/\">\n                                                                                                                                Custom Fonts                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/highlights/\">\n                                                                                                                                Highlights                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/blockquote/\">\n                                                                                                                                Blockquote                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/dropcaps/\">\n                                                                                                                                Dropcaps                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/message-box/\">\n                                                                                                                                Message Box                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/lists/\">\n                                                                                                                                Lists                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/titles/\">\n                                                                                                                                Titles                                            </a>\n                </li>\n            </ul>\n        </section>\n		</li></ul></li>\n</ul>    \n										<img width=\"466\" height=\"178\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Screen-Shot-2021-03-26-at-1.45.54-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Screen-Shot-2021-03-26-at-1.45.54-PM.png 466w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Screen-Shot-2021-03-26-at-1.45.54-PM-300x115.png 300w\" sizes=\"(max-width: 466px) 100vw, 466px\" />											\n					<ul>\n							<li>\n					<a href=\"tel:%20509-993-4955\">						\n										509-993-4955\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:%20info@systemamusement.com\">						\n										info@systemamusement.com\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:%20info@systemamusement.com\">						\n										Mon - Sat: 8 am - 5 pm, Sunday: CLOSED\n											</a>\n									</li>\n						</ul>\n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		Send us a newsletter to get update		\n	   		    	<form action=\"https://sa7717.dev34.info/?na=s\" method=\"post\" onsubmit=\"return newsletter_check(this)\">\n		    	<input type=\"hidden\" name=\"nr\" value=\"widget-minimal\"/>\n		    		<label>Your mail address</label>\n		    		<input type=\"email\" required name=\"ne\" value=\"\" placeholder=\"Your mail address\">\n		    		<input type=\"submit\" value=\"Subscribe\">\n		    </form>\n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n		<p>2021 © System Amusements. All rights reserved.</p>','Footer Tax Consulting','','inherit','closed','closed','','3201-revision-v1','','','2021-03-27 21:32:51','2021-03-27 21:32:51','',3201,'https://sa7717.dev34.info/?p=4339',0,'revision','',0),(4340,1,'2021-03-27 21:33:06','2021-03-27 21:33:06','<h3>\n        Navigation\n        <i></i>\n    </h3>\n        <ul id=\"menu-main-menu\"><li id=\"menu-item-3973\"><a href=\"#\">Demos</a><ul><li><style>.elementor-3953 .elementor-element.elementor-element-7a0c59a5 > .elementor-element-populated{padding:33px 40px 33px 40px;}.elementor-3953 .elementor-element.elementor-element-744d686c .ct-heading .item--title{font-size:16px;font-weight:600;margin-bottom:10px;}.elementor-3953 .elementor-element.elementor-element-744d686c .ct-heading .item--sub-title{margin-bottom:9px;}.elementor-3953 .elementor-element.elementor-element-7ba31669 > .elementor-element-populated{padding:33px 40px 33px 40px;}.elementor-3953 .elementor-element.elementor-element-50713f58 .ct-heading .item--title{font-size:16px;font-weight:600;margin-bottom:10px;}.elementor-3953 .elementor-element.elementor-element-50713f58 .ct-heading .item--sub-title{margin-bottom:9px;}.elementor-3953 .elementor-element.elementor-element-4d5c5322 > .elementor-element-populated{padding:33px 40px 33px 40px;}.elementor-3953 .elementor-element.elementor-element-439b7e93 .ct-heading .item--title{font-size:16px;font-weight:600;margin-bottom:10px;}.elementor-3953 .elementor-element.elementor-element-439b7e93 .ct-heading .item--sub-title{margin-bottom:9px;}.elementor-3953 .elementor-element.elementor-element-5b10b01e > .elementor-element-populated{padding:33px 40px 33px 40px;}.elementor-3953 .elementor-element.elementor-element-329d154a .ct-heading .item--title{font-size:16px;font-weight:600;margin-bottom:10px;}.elementor-3953 .elementor-element.elementor-element-329d154a .ct-heading .item--sub-title{margin-bottom:9px;}</style>		\n					        <section data-id=\"7f745fa1\" data-element_type=\"section\">\n	    <h3>\n                        Multi Pages                    \n            </h3>\n			    <ul>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/\">\n                                                                                                                                Finance                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-finance2/\">\n                                                                                                                                Finance 2                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-rtl/\">\n                                                                                                                                Finance RTL                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-business/\">\n                                                                                                                                Business 1                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-business2/\">\n                                                                                                                                Business 2                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-corporate1\">\n                                                                                                                                Corporate 1                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-corporate2\">\n                                                                                                                                Corporate 2                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-corporate3\">\n                                                                                                                                Corporate 3                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-law/\">\n                                                                                                                                Law                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-startup/\">\n                                                                                                                                Startup                                            </a>\n                </li>\n            </ul>\n	    <h3>\n                        Multi Pages                    \n            </h3>\n			    <ul>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-hr/\">\n                                                                                                                                Human Resource                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-coach/\">\n                                                                                                                                Life Coach                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-marketing/\">\n                                                                                                                                Marketing                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-medical/\">\n                                                                                                                                Medical                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-it/\">\n                                                                                                                                IT Solution                                            </a>\n                </li>\n                        <li>\n                    <a href=\"https://demo.casethemes.net/consultio-tax/\">\n                                                                                                                                Tax Consulting                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-insurance/\">\n                                                                                                                                Insurance                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-corona/\">\n                                                                                                                                Corona                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-consulting/\">\n                                                                                                                                Consulting                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-software/\">\n                                                                                                                                Software                                            </a>\n                </li>\n            </ul>\n	    <h3>\n                        One Page                    \n            </h3>\n			    <ul>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/home-onepage\">\n                                                                                                                                Finance                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-finance2/home-onepage\">\n                                                                                                                                Finance 2                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-rtl/home-onepage\">\n                                                                                                                                Finance RTL                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-business/home-onepage\">\n                                                                                                                                Business 1                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-business2/home-onepage\">\n                                                                                                                                Business 2                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-corporate1/home-onepage\">\n                                                                                                                                Corporate 1                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-corporate2/home-onepage\">\n                                                                                                                                Corporate 2                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-corporate3/home-onepage\">\n                                                                                                                                Corporate 3                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-law/home-onepage\">\n                                                                                                                                Law                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-startup/home-onepage\">\n                                                                                                                                Startup                                            </a>\n                </li>\n            </ul>\n	    <h3>\n                        One Page                    \n            </h3>\n			    <ul>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-hr/home-onepage\">\n                                                                                                                                Human Resource                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-coach/home-onepage\">\n                                                                                                                                Life Coach                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-marketing/home-onepage\">\n                                                                                                                                Marketing                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-medical/home-onepage\">\n                                                                                                                                Medical                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-it/home-onepage\">\n                                                                                                                                IT Solution                                            </a>\n                </li>\n                        <li>\n                    <a href=\"https://demo.casethemes.net/consultio-tax/home-onepage\">\n                                                                                                                                Tax Consulting                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-insurance/home-onepage\">\n                                                                                                                                Insurance                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-corona/home-onepage\">\n                                                                                                                                Corona                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-consulting/home-onepage\">\n                                                                                                                                Consulting                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-software/home-onepage\">\n                                                                                                                                Software                                            </a>\n                </li>\n            </ul>\n        </section>\n		</li></ul></li>\n<li id=\"menu-item-4012\"><a href=\"https://sa7717.dev34.info/services-v-1/\">Services</a>\n<ul>\n	<li id=\"menu-item-4011\"><a href=\"https://sa7717.dev34.info/services-v-1/\">Services v.1</a></li>\n	<li id=\"menu-item-4010\"><a href=\"https://sa7717.dev34.info/services-v-2/\">Services v.2</a></li>\n	<li id=\"menu-item-4016\"><a href=\"https://sa7717.dev34.info/service/seo-optimization/\">Service Details</a></li>\n</ul>\n</li>\n<li id=\"menu-item-3968\"><a href=\"#\">Pages</a>\n<ul>\n	<li id=\"menu-item-3988\"><a href=\"https://sa7717.dev34.info/about/\">About us</a>\n	<ul>\n		<li id=\"menu-item-4094\"><a href=\"https://sa7717.dev34.info/about/\">About v.1</a></li>\n		<li id=\"menu-item-4093\"><a href=\"https://sa7717.dev34.info/about-v-2/\">About v.2</a></li>\n		<li id=\"menu-item-4092\"><a href=\"https://sa7717.dev34.info/about-v-3/\">About v.3</a></li>\n		<li id=\"menu-item-4091\"><a href=\"https://sa7717.dev34.info/about-v-4/\">About v.4</a></li>\n	</ul>\n</li>\n	<li id=\"menu-item-3987\"><a href=\"https://sa7717.dev34.info/team/\">Our Team</a>\n	<ul>\n		<li id=\"menu-item-4097\"><a href=\"https://sa7717.dev34.info/team/\">Team v.1</a></li>\n		<li id=\"menu-item-4083\"><a href=\"https://sa7717.dev34.info/team-v-2/\">Team v.2</a></li>\n		<li id=\"menu-item-4082\"><a href=\"https://sa7717.dev34.info/team-v-3/\">Team v.3</a></li>\n		<li id=\"menu-item-4081\"><a href=\"https://sa7717.dev34.info/team-v-4/\">Team v.4</a></li>\n	</ul>\n</li>\n	<li id=\"menu-item-4008\"><a href=\"https://sa7717.dev34.info/team-details/\">Team Details</a></li>\n	<li id=\"menu-item-4032\"><a href=\"https://sa7717.dev34.info/careers/\">Careers</a></li>\n	<li id=\"menu-item-4009\"><a href=\"https://sa7717.dev34.info/testimonials/\">Testimonials</a>\n	<ul>\n		<li id=\"menu-item-4098\"><a href=\"https://sa7717.dev34.info/testimonials/\">Testimonials v.1</a></li>\n		<li id=\"menu-item-4090\"><a href=\"https://sa7717.dev34.info/testimonials-v-2/\">Testimonials v.2</a></li>\n		<li id=\"menu-item-4089\"><a href=\"https://sa7717.dev34.info/testimonials-v-3/\">Testimonials v.3</a></li>\n		<li id=\"menu-item-4088\"><a href=\"https://sa7717.dev34.info/testimonials-v-4/\">Testimonials v.4</a></li>\n	</ul>\n</li>\n	<li id=\"menu-item-3985\"><a href=\"https://sa7717.dev34.info/pricing/\">Pricing</a>\n	<ul>\n		<li id=\"menu-item-4096\"><a href=\"https://sa7717.dev34.info/pricing/\">Pricing v.1</a></li>\n		<li id=\"menu-item-4087\"><a href=\"https://sa7717.dev34.info/pricing-v-2/\">Pricing v.2</a></li>\n	</ul>\n</li>\n	<li id=\"menu-item-3986\"><a href=\"https://sa7717.dev34.info/faq/\">FAQs</a></li>\n	<li id=\"menu-item-3989\"><a href=\"https://sa7717.dev34.info/contact/\">Contact us</a>\n	<ul>\n		<li id=\"menu-item-4095\"><a href=\"https://sa7717.dev34.info/contact/\">Contact v.1</a></li>\n		<li id=\"menu-item-4086\"><a href=\"https://sa7717.dev34.info/contact-v-2/\">Contact v.2</a></li>\n		<li id=\"menu-item-4085\"><a href=\"https://sa7717.dev34.info/contact-v-3/\">Contact v.3</a></li>\n		<li id=\"menu-item-4084\"><a href=\"https://sa7717.dev34.info/contact-v-4/\">Contact v.4</a></li>\n	</ul>\n</li>\n	<li id=\"menu-item-3970\"><a href=\"https://demo.casethemes.net/consultio-tax/404-page/\">Error 404</a></li>\n	<li id=\"menu-item-4024\"><a href=\"https://sa7717.dev34.info/shop/\">Shop</a>\n	<ul>\n		<li id=\"menu-item-4023\"><a href=\"https://sa7717.dev34.info/shop/\">Products</a></li>\n		<li id=\"menu-item-4026\"><a href=\"https://sa7717.dev34.info/product/black-suit/\">Product Details</a></li>\n		<li id=\"menu-item-4025\"><a href=\"https://sa7717.dev34.info/shop-wishlist/\">Wishlist</a></li>\n		<li id=\"menu-item-4022\"><a href=\"https://sa7717.dev34.info/cart/\">Cart</a></li>\n	</ul>\n</li>\n</ul>\n</li>\n<li id=\"menu-item-4015\"><a href=\"https://sa7717.dev34.info/portfolio-grid/\">Portfolio</a>\n<ul>\n	<li id=\"menu-item-4014\"><a href=\"https://sa7717.dev34.info/portfolio-grid/\">Portfolio Grid</a></li>\n	<li id=\"menu-item-4013\"><a href=\"https://sa7717.dev34.info/portfolio-masonry/\">Portfolio Masonry</a></li>\n	<li id=\"menu-item-4021\"><a href=\"https://sa7717.dev34.info/portfolio/data-analytics/\">Portfolio Details</a></li>\n</ul>\n</li>\n<li id=\"menu-item-3994\"><a href=\"https://sa7717.dev34.info/blog-standard/\">Blog</a>\n<ul>\n	<li id=\"menu-item-3997\"><a href=\"https://sa7717.dev34.info/blog-carousel/\">Blog Carousel</a></li>\n	<li id=\"menu-item-3996\"><a href=\"https://sa7717.dev34.info/blog-grid-3-columns/\">Blog Grid</a>\n	<ul>\n		<li id=\"menu-item-4000\"><a href=\"https://sa7717.dev34.info/blog-grid-2-columns-sidebar-left/\">Left Sidebar</a></li>\n		<li id=\"menu-item-3998\"><a href=\"https://sa7717.dev34.info/blog-grid-3-columns/\">Without Sidebar</a></li>\n		<li id=\"menu-item-3999\"><a href=\"https://sa7717.dev34.info/blog-grid-2-columns-sidebar-right/\">Right Sidebar</a></li>\n	</ul>\n</li>\n	<li id=\"menu-item-3995\"><a href=\"https://sa7717.dev34.info/blog-standard/\">Blog Standard</a>\n	<ul>\n		<li id=\"menu-item-4002\"><a href=\"https://sa7717.dev34.info/blog-standard-left-sidebar/\">Left Sidebar</a></li>\n		<li id=\"menu-item-4001\"><a href=\"https://sa7717.dev34.info/blog-standard-without-sidebar/\">Without Sidebar</a></li>\n		<li id=\"menu-item-4003\"><a href=\"https://sa7717.dev34.info/blog-standard/\">Right Sidebar</a></li>\n	</ul>\n</li>\n	<li id=\"menu-item-4004\"><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Blog Details</a>\n	<ul>\n		<li id=\"menu-item-4006\"><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">Left Sidebar</a></li>\n		<li id=\"menu-item-4007\"><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">Without Sidebar</a></li>\n		<li id=\"menu-item-4005\"><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Right Sidebar</a></li>\n	</ul>\n</li>\n</ul>\n</li>\n<li id=\"menu-item-3976\"><a href=\"#\">Elements</a><ul><li><style>.elementor-3955 .elementor-element.elementor-element-4c3a6ff1 > .elementor-element-populated{padding:33px 40px 33px 40px;}.elementor-3955 .elementor-element.elementor-element-78d5ebb6 .ct-heading .item--title{font-size:16px;font-weight:600;margin-bottom:10px;}.elementor-3955 .elementor-element.elementor-element-78d5ebb6 .ct-heading .item--sub-title{margin-bottom:9px;}.elementor-3955 .elementor-element.elementor-element-6da39e70 > .elementor-element-populated{padding:33px 40px 33px 40px;}.elementor-3955 .elementor-element.elementor-element-35e5905d .ct-heading .item--title{font-size:16px;font-weight:600;margin-bottom:10px;}.elementor-3955 .elementor-element.elementor-element-35e5905d .ct-heading .item--sub-title{margin-bottom:9px;}.elementor-3955 .elementor-element.elementor-element-5064b5d4 > .elementor-element-populated{padding:33px 40px 33px 40px;}.elementor-3955 .elementor-element.elementor-element-1754edde .ct-heading .item--title{font-size:16px;font-weight:600;margin-bottom:10px;}.elementor-3955 .elementor-element.elementor-element-1754edde .ct-heading .item--sub-title{margin-bottom:9px;}.elementor-3955 .elementor-element.elementor-element-620e8e1c > .elementor-element-populated{padding:33px 40px 33px 40px;}.elementor-3955 .elementor-element.elementor-element-3d20498e .ct-heading .item--title{font-size:16px;font-weight:600;margin-bottom:10px;}.elementor-3955 .elementor-element.elementor-element-3d20498e .ct-heading .item--sub-title{margin-bottom:9px;}</style>		\n					        <section data-id=\"35d4a023\" data-element_type=\"section\">\n	    <h3>\n                        Interactive Elements                    \n            </h3>\n			    <ul>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/testimonials-2/\">\n                                                                                                                                Testimonials                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/blog-slider/\">\n                                                                                                                                Blog Slider                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/elements-portfolio-carousel/\">\n                                                                                                                                Portfolio Carousel                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/service-carousel/\">\n                                                                                                                                Service Carousel                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/clients/\">\n                                                                                                                                Clients                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/history/\">\n                                                                                                                                History                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/video-button/\">\n                                                                                                                                Video Button                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/columns/\">\n                                                                                                                                Columns                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/row-background/\">\n                                                                                                                                Row background                                            </a>\n                </li>\n            </ul>\n	    <h3>\n                        Standard Elements                    \n            </h3>\n			    <ul>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/team-variations/\">\n                                                                                                                                Team Variations                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/buttons/\">\n                                                                                                                                Buttons                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/tabs-tours/\">\n                                                                                                                                Tabs & Tours                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/accordions-toggles/\">\n                                                                                                                                Accordions & Toggles                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/google-maps/\">\n                                                                                                                                Google Maps                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/contact-forms-7/\">\n                                                                                                                                Contact Forms 7                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/dividers/\">\n                                                                                                                                Dividers                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/pricing-tables/\">\n                                                                                                                                Pricing Tables                                            </a>\n                </li>\n            </ul>\n	    <h3>\n                        Infographics                    \n            </h3>\n			    <ul>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/counters/\">\n                                                                                                                                Counters                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/progress-bars/\">\n                                                                                                                                Progress Bars                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/icon-with-text/\">\n                                                                                                                                Icon With Text                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/icon-grid/\">\n                                                                                                                                Icon Grid                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/image-box-fancy/\">\n                                                                                                                                Image Box Fancy                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/cover-boxes/\">\n                                                                                                                                Cover Boxes                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/newsletters/\">\n                                                                                                                                Newsletters                                            </a>\n                </li>\n            </ul>\n	    <h3>\n                        Typography                    \n            </h3>\n			    <ul>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/custom-fonts/\">\n                                                                                                                                Custom Fonts                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/highlights/\">\n                                                                                                                                Highlights                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/blockquote/\">\n                                                                                                                                Blockquote                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/dropcaps/\">\n                                                                                                                                Dropcaps                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/message-box/\">\n                                                                                                                                Message Box                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/lists/\">\n                                                                                                                                Lists                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/titles/\">\n                                                                                                                                Titles                                            </a>\n                </li>\n            </ul>\n        </section>\n		</li></ul></li>\n</ul>    \n										<img width=\"466\" height=\"178\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Screen-Shot-2021-03-26-at-1.45.54-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Screen-Shot-2021-03-26-at-1.45.54-PM.png 466w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Screen-Shot-2021-03-26-at-1.45.54-PM-300x115.png 300w\" sizes=\"(max-width: 466px) 100vw, 466px\" />											\n					<ul>\n							<li>\n					<a href=\"tel:%20509-993-4955\">						\n										509-993-4955\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:%20info@systemamusement.com\">						\n										info@systemamusement.com\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:%20info@systemamusement.com\">						\n										Mon - Sat: 8 am - 5 pm, Sunday: CLOSED\n											</a>\n									</li>\n						</ul>\n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		Send us a newsletter to get update		\n	   		    	<form action=\"https://sa7717.dev34.info/?na=s\" method=\"post\" onsubmit=\"return newsletter_check(this)\">\n		    	<input type=\"hidden\" name=\"nr\" value=\"widget-minimal\"/>\n		    		<label>Your mail address</label>\n		    		<input type=\"email\" required name=\"ne\" value=\"\" placeholder=\"Your mail address\">\n		    		<input type=\"submit\" value=\"Subscribe\">\n		    </form>\n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n		<p>2021 © System Amusements. All rights reserved.</p>','Footer Tax Consulting','','inherit','closed','closed','','3201-revision-v1','','','2021-03-27 21:33:06','2021-03-27 21:33:06','',3201,'https://sa7717.dev34.info/?p=4340',0,'revision','',0),(4341,1,'2021-03-27 21:33:18','2021-03-27 21:33:18','<h3>\n        Navigation\n        <i></i>\n    </h3>\n        <ul id=\"menu-main-menu\"><li id=\"menu-item-3973\"><a href=\"#\">Demos</a><ul><li><style>.elementor-3953 .elementor-element.elementor-element-7a0c59a5 > .elementor-element-populated{padding:33px 40px 33px 40px;}.elementor-3953 .elementor-element.elementor-element-744d686c .ct-heading .item--title{font-size:16px;font-weight:600;margin-bottom:10px;}.elementor-3953 .elementor-element.elementor-element-744d686c .ct-heading .item--sub-title{margin-bottom:9px;}.elementor-3953 .elementor-element.elementor-element-7ba31669 > .elementor-element-populated{padding:33px 40px 33px 40px;}.elementor-3953 .elementor-element.elementor-element-50713f58 .ct-heading .item--title{font-size:16px;font-weight:600;margin-bottom:10px;}.elementor-3953 .elementor-element.elementor-element-50713f58 .ct-heading .item--sub-title{margin-bottom:9px;}.elementor-3953 .elementor-element.elementor-element-4d5c5322 > .elementor-element-populated{padding:33px 40px 33px 40px;}.elementor-3953 .elementor-element.elementor-element-439b7e93 .ct-heading .item--title{font-size:16px;font-weight:600;margin-bottom:10px;}.elementor-3953 .elementor-element.elementor-element-439b7e93 .ct-heading .item--sub-title{margin-bottom:9px;}.elementor-3953 .elementor-element.elementor-element-5b10b01e > .elementor-element-populated{padding:33px 40px 33px 40px;}.elementor-3953 .elementor-element.elementor-element-329d154a .ct-heading .item--title{font-size:16px;font-weight:600;margin-bottom:10px;}.elementor-3953 .elementor-element.elementor-element-329d154a .ct-heading .item--sub-title{margin-bottom:9px;}</style>		\n					        <section data-id=\"7f745fa1\" data-element_type=\"section\">\n	    <h3>\n                        Multi Pages                    \n            </h3>\n			    <ul>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/\">\n                                                                                                                                Finance                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-finance2/\">\n                                                                                                                                Finance 2                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-rtl/\">\n                                                                                                                                Finance RTL                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-business/\">\n                                                                                                                                Business 1                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-business2/\">\n                                                                                                                                Business 2                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-corporate1\">\n                                                                                                                                Corporate 1                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-corporate2\">\n                                                                                                                                Corporate 2                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-corporate3\">\n                                                                                                                                Corporate 3                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-law/\">\n                                                                                                                                Law                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-startup/\">\n                                                                                                                                Startup                                            </a>\n                </li>\n            </ul>\n	    <h3>\n                        Multi Pages                    \n            </h3>\n			    <ul>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-hr/\">\n                                                                                                                                Human Resource                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-coach/\">\n                                                                                                                                Life Coach                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-marketing/\">\n                                                                                                                                Marketing                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-medical/\">\n                                                                                                                                Medical                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-it/\">\n                                                                                                                                IT Solution                                            </a>\n                </li>\n                        <li>\n                    <a href=\"https://demo.casethemes.net/consultio-tax/\">\n                                                                                                                                Tax Consulting                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-insurance/\">\n                                                                                                                                Insurance                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-corona/\">\n                                                                                                                                Corona                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-consulting/\">\n                                                                                                                                Consulting                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-software/\">\n                                                                                                                                Software                                            </a>\n                </li>\n            </ul>\n	    <h3>\n                        One Page                    \n            </h3>\n			    <ul>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/home-onepage\">\n                                                                                                                                Finance                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-finance2/home-onepage\">\n                                                                                                                                Finance 2                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-rtl/home-onepage\">\n                                                                                                                                Finance RTL                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-business/home-onepage\">\n                                                                                                                                Business 1                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-business2/home-onepage\">\n                                                                                                                                Business 2                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-corporate1/home-onepage\">\n                                                                                                                                Corporate 1                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-corporate2/home-onepage\">\n                                                                                                                                Corporate 2                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-corporate3/home-onepage\">\n                                                                                                                                Corporate 3                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-law/home-onepage\">\n                                                                                                                                Law                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-startup/home-onepage\">\n                                                                                                                                Startup                                            </a>\n                </li>\n            </ul>\n	    <h3>\n                        One Page                    \n            </h3>\n			    <ul>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-hr/home-onepage\">\n                                                                                                                                Human Resource                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-coach/home-onepage\">\n                                                                                                                                Life Coach                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-marketing/home-onepage\">\n                                                                                                                                Marketing                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-medical/home-onepage\">\n                                                                                                                                Medical                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-it/home-onepage\">\n                                                                                                                                IT Solution                                            </a>\n                </li>\n                        <li>\n                    <a href=\"https://demo.casethemes.net/consultio-tax/home-onepage\">\n                                                                                                                                Tax Consulting                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-insurance/home-onepage\">\n                                                                                                                                Insurance                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-corona/home-onepage\">\n                                                                                                                                Corona                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-consulting/home-onepage\">\n                                                                                                                                Consulting                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-software/home-onepage\">\n                                                                                                                                Software                                            </a>\n                </li>\n            </ul>\n        </section>\n		</li></ul></li>\n<li id=\"menu-item-4012\"><a href=\"https://sa7717.dev34.info/services-v-1/\">Services</a>\n<ul>\n	<li id=\"menu-item-4011\"><a href=\"https://sa7717.dev34.info/services-v-1/\">Services v.1</a></li>\n	<li id=\"menu-item-4010\"><a href=\"https://sa7717.dev34.info/services-v-2/\">Services v.2</a></li>\n	<li id=\"menu-item-4016\"><a href=\"https://sa7717.dev34.info/service/seo-optimization/\">Service Details</a></li>\n</ul>\n</li>\n<li id=\"menu-item-3968\"><a href=\"#\">Pages</a>\n<ul>\n	<li id=\"menu-item-3988\"><a href=\"https://sa7717.dev34.info/about/\">About us</a>\n	<ul>\n		<li id=\"menu-item-4094\"><a href=\"https://sa7717.dev34.info/about/\">About v.1</a></li>\n		<li id=\"menu-item-4093\"><a href=\"https://sa7717.dev34.info/about-v-2/\">About v.2</a></li>\n		<li id=\"menu-item-4092\"><a href=\"https://sa7717.dev34.info/about-v-3/\">About v.3</a></li>\n		<li id=\"menu-item-4091\"><a href=\"https://sa7717.dev34.info/about-v-4/\">About v.4</a></li>\n	</ul>\n</li>\n	<li id=\"menu-item-3987\"><a href=\"https://sa7717.dev34.info/team/\">Our Team</a>\n	<ul>\n		<li id=\"menu-item-4097\"><a href=\"https://sa7717.dev34.info/team/\">Team v.1</a></li>\n		<li id=\"menu-item-4083\"><a href=\"https://sa7717.dev34.info/team-v-2/\">Team v.2</a></li>\n		<li id=\"menu-item-4082\"><a href=\"https://sa7717.dev34.info/team-v-3/\">Team v.3</a></li>\n		<li id=\"menu-item-4081\"><a href=\"https://sa7717.dev34.info/team-v-4/\">Team v.4</a></li>\n	</ul>\n</li>\n	<li id=\"menu-item-4008\"><a href=\"https://sa7717.dev34.info/team-details/\">Team Details</a></li>\n	<li id=\"menu-item-4032\"><a href=\"https://sa7717.dev34.info/careers/\">Careers</a></li>\n	<li id=\"menu-item-4009\"><a href=\"https://sa7717.dev34.info/testimonials/\">Testimonials</a>\n	<ul>\n		<li id=\"menu-item-4098\"><a href=\"https://sa7717.dev34.info/testimonials/\">Testimonials v.1</a></li>\n		<li id=\"menu-item-4090\"><a href=\"https://sa7717.dev34.info/testimonials-v-2/\">Testimonials v.2</a></li>\n		<li id=\"menu-item-4089\"><a href=\"https://sa7717.dev34.info/testimonials-v-3/\">Testimonials v.3</a></li>\n		<li id=\"menu-item-4088\"><a href=\"https://sa7717.dev34.info/testimonials-v-4/\">Testimonials v.4</a></li>\n	</ul>\n</li>\n	<li id=\"menu-item-3985\"><a href=\"https://sa7717.dev34.info/pricing/\">Pricing</a>\n	<ul>\n		<li id=\"menu-item-4096\"><a href=\"https://sa7717.dev34.info/pricing/\">Pricing v.1</a></li>\n		<li id=\"menu-item-4087\"><a href=\"https://sa7717.dev34.info/pricing-v-2/\">Pricing v.2</a></li>\n	</ul>\n</li>\n	<li id=\"menu-item-3986\"><a href=\"https://sa7717.dev34.info/faq/\">FAQs</a></li>\n	<li id=\"menu-item-3989\"><a href=\"https://sa7717.dev34.info/contact/\">Contact us</a>\n	<ul>\n		<li id=\"menu-item-4095\"><a href=\"https://sa7717.dev34.info/contact/\">Contact v.1</a></li>\n		<li id=\"menu-item-4086\"><a href=\"https://sa7717.dev34.info/contact-v-2/\">Contact v.2</a></li>\n		<li id=\"menu-item-4085\"><a href=\"https://sa7717.dev34.info/contact-v-3/\">Contact v.3</a></li>\n		<li id=\"menu-item-4084\"><a href=\"https://sa7717.dev34.info/contact-v-4/\">Contact v.4</a></li>\n	</ul>\n</li>\n	<li id=\"menu-item-3970\"><a href=\"https://demo.casethemes.net/consultio-tax/404-page/\">Error 404</a></li>\n	<li id=\"menu-item-4024\"><a href=\"https://sa7717.dev34.info/shop/\">Shop</a>\n	<ul>\n		<li id=\"menu-item-4023\"><a href=\"https://sa7717.dev34.info/shop/\">Products</a></li>\n		<li id=\"menu-item-4026\"><a href=\"https://sa7717.dev34.info/product/black-suit/\">Product Details</a></li>\n		<li id=\"menu-item-4025\"><a href=\"https://sa7717.dev34.info/shop-wishlist/\">Wishlist</a></li>\n		<li id=\"menu-item-4022\"><a href=\"https://sa7717.dev34.info/cart/\">Cart</a></li>\n	</ul>\n</li>\n</ul>\n</li>\n<li id=\"menu-item-4015\"><a href=\"https://sa7717.dev34.info/portfolio-grid/\">Portfolio</a>\n<ul>\n	<li id=\"menu-item-4014\"><a href=\"https://sa7717.dev34.info/portfolio-grid/\">Portfolio Grid</a></li>\n	<li id=\"menu-item-4013\"><a href=\"https://sa7717.dev34.info/portfolio-masonry/\">Portfolio Masonry</a></li>\n	<li id=\"menu-item-4021\"><a href=\"https://sa7717.dev34.info/portfolio/data-analytics/\">Portfolio Details</a></li>\n</ul>\n</li>\n<li id=\"menu-item-3994\"><a href=\"https://sa7717.dev34.info/blog-standard/\">Blog</a>\n<ul>\n	<li id=\"menu-item-3997\"><a href=\"https://sa7717.dev34.info/blog-carousel/\">Blog Carousel</a></li>\n	<li id=\"menu-item-3996\"><a href=\"https://sa7717.dev34.info/blog-grid-3-columns/\">Blog Grid</a>\n	<ul>\n		<li id=\"menu-item-4000\"><a href=\"https://sa7717.dev34.info/blog-grid-2-columns-sidebar-left/\">Left Sidebar</a></li>\n		<li id=\"menu-item-3998\"><a href=\"https://sa7717.dev34.info/blog-grid-3-columns/\">Without Sidebar</a></li>\n		<li id=\"menu-item-3999\"><a href=\"https://sa7717.dev34.info/blog-grid-2-columns-sidebar-right/\">Right Sidebar</a></li>\n	</ul>\n</li>\n	<li id=\"menu-item-3995\"><a href=\"https://sa7717.dev34.info/blog-standard/\">Blog Standard</a>\n	<ul>\n		<li id=\"menu-item-4002\"><a href=\"https://sa7717.dev34.info/blog-standard-left-sidebar/\">Left Sidebar</a></li>\n		<li id=\"menu-item-4001\"><a href=\"https://sa7717.dev34.info/blog-standard-without-sidebar/\">Without Sidebar</a></li>\n		<li id=\"menu-item-4003\"><a href=\"https://sa7717.dev34.info/blog-standard/\">Right Sidebar</a></li>\n	</ul>\n</li>\n	<li id=\"menu-item-4004\"><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Blog Details</a>\n	<ul>\n		<li id=\"menu-item-4006\"><a href=\"https://sa7717.dev34.info/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">Left Sidebar</a></li>\n		<li id=\"menu-item-4007\"><a href=\"https://sa7717.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">Without Sidebar</a></li>\n		<li id=\"menu-item-4005\"><a href=\"https://sa7717.dev34.info/2019/11/05/food-industry-leaders-often-change-their-profound/\">Right Sidebar</a></li>\n	</ul>\n</li>\n</ul>\n</li>\n<li id=\"menu-item-3976\"><a href=\"#\">Elements</a><ul><li><style>.elementor-3955 .elementor-element.elementor-element-4c3a6ff1 > .elementor-element-populated{padding:33px 40px 33px 40px;}.elementor-3955 .elementor-element.elementor-element-78d5ebb6 .ct-heading .item--title{font-size:16px;font-weight:600;margin-bottom:10px;}.elementor-3955 .elementor-element.elementor-element-78d5ebb6 .ct-heading .item--sub-title{margin-bottom:9px;}.elementor-3955 .elementor-element.elementor-element-6da39e70 > .elementor-element-populated{padding:33px 40px 33px 40px;}.elementor-3955 .elementor-element.elementor-element-35e5905d .ct-heading .item--title{font-size:16px;font-weight:600;margin-bottom:10px;}.elementor-3955 .elementor-element.elementor-element-35e5905d .ct-heading .item--sub-title{margin-bottom:9px;}.elementor-3955 .elementor-element.elementor-element-5064b5d4 > .elementor-element-populated{padding:33px 40px 33px 40px;}.elementor-3955 .elementor-element.elementor-element-1754edde .ct-heading .item--title{font-size:16px;font-weight:600;margin-bottom:10px;}.elementor-3955 .elementor-element.elementor-element-1754edde .ct-heading .item--sub-title{margin-bottom:9px;}.elementor-3955 .elementor-element.elementor-element-620e8e1c > .elementor-element-populated{padding:33px 40px 33px 40px;}.elementor-3955 .elementor-element.elementor-element-3d20498e .ct-heading .item--title{font-size:16px;font-weight:600;margin-bottom:10px;}.elementor-3955 .elementor-element.elementor-element-3d20498e .ct-heading .item--sub-title{margin-bottom:9px;}</style>		\n					        <section data-id=\"35d4a023\" data-element_type=\"section\">\n	    <h3>\n                        Interactive Elements                    \n            </h3>\n			    <ul>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/testimonials-2/\">\n                                                                                                                                Testimonials                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/blog-slider/\">\n                                                                                                                                Blog Slider                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/elements-portfolio-carousel/\">\n                                                                                                                                Portfolio Carousel                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/service-carousel/\">\n                                                                                                                                Service Carousel                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/clients/\">\n                                                                                                                                Clients                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/history/\">\n                                                                                                                                History                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/video-button/\">\n                                                                                                                                Video Button                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/columns/\">\n                                                                                                                                Columns                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/row-background/\">\n                                                                                                                                Row background                                            </a>\n                </li>\n            </ul>\n	    <h3>\n                        Standard Elements                    \n            </h3>\n			    <ul>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/team-variations/\">\n                                                                                                                                Team Variations                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/buttons/\">\n                                                                                                                                Buttons                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/tabs-tours/\">\n                                                                                                                                Tabs & Tours                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/accordions-toggles/\">\n                                                                                                                                Accordions & Toggles                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/google-maps/\">\n                                                                                                                                Google Maps                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/contact-forms-7/\">\n                                                                                                                                Contact Forms 7                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/dividers/\">\n                                                                                                                                Dividers                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/pricing-tables/\">\n                                                                                                                                Pricing Tables                                            </a>\n                </li>\n            </ul>\n	    <h3>\n                        Infographics                    \n            </h3>\n			    <ul>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/counters/\">\n                                                                                                                                Counters                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/progress-bars/\">\n                                                                                                                                Progress Bars                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/icon-with-text/\">\n                                                                                                                                Icon With Text                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/icon-grid/\">\n                                                                                                                                Icon Grid                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/image-box-fancy/\">\n                                                                                                                                Image Box Fancy                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/cover-boxes/\">\n                                                                                                                                Cover Boxes                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/newsletters/\">\n                                                                                                                                Newsletters                                            </a>\n                </li>\n            </ul>\n	    <h3>\n                        Typography                    \n            </h3>\n			    <ul>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/custom-fonts/\">\n                                                                                                                                Custom Fonts                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/highlights/\">\n                                                                                                                                Highlights                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/blockquote/\">\n                                                                                                                                Blockquote                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/dropcaps/\">\n                                                                                                                                Dropcaps                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/message-box/\">\n                                                                                                                                Message Box                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/lists/\">\n                                                                                                                                Lists                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/elements/titles/\">\n                                                                                                                                Titles                                            </a>\n                </li>\n            </ul>\n        </section>\n		</li></ul></li>\n</ul>    \n										<img width=\"466\" height=\"178\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Screen-Shot-2021-03-26-at-1.45.54-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Screen-Shot-2021-03-26-at-1.45.54-PM.png 466w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Screen-Shot-2021-03-26-at-1.45.54-PM-300x115.png 300w\" sizes=\"(max-width: 466px) 100vw, 466px\" />											\n					<ul>\n							<li>\n					<a href=\"tel:%20509-993-4955\">						\n										509-993-4955\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:%20info@systemamusement.com\">						\n										info@systemamusement.com\n											</a>\n									</li>\n								<li>\n					<a href=\"mailto:%20info@systemamusement.com\">						\n										Mon - Sat: 8 am - 5 pm, Sunday: CLOSED\n											</a>\n									</li>\n						</ul>\n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		Send us a newsletter to get update		\n	   		    	<form action=\"https://sa7717.dev34.info/?na=s\" method=\"post\" onsubmit=\"return newsletter_check(this)\">\n		    	<input type=\"hidden\" name=\"nr\" value=\"widget-minimal\"/>\n		    		<label>Your mail address</label>\n		    		<input type=\"email\" required name=\"ne\" value=\"\" placeholder=\"Your mail address\">\n		    		<input type=\"submit\" value=\"Subscribe\">\n		    </form>\n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n		<p>2021 © System Amusements. All rights reserved.</p>','Footer Tax Consulting','','inherit','closed','closed','','3201-revision-v1','','','2021-03-27 21:33:18','2021-03-27 21:33:18','',3201,'https://sa7717.dev34.info/?p=4341',0,'revision','',0),(4343,1,'2021-05-20 00:30:34','2021-03-27 21:35:33','','About','','publish','closed','closed','','about','','','2021-05-20 00:30:34','2021-05-20 00:30:34','',0,'https://sa7717.dev34.info/?p=4343',1,'nav_menu_item','',0),(4344,1,'2021-05-20 00:30:34','2021-03-27 21:35:33','','Services','','publish','closed','closed','','services-5','','','2021-05-20 00:30:34','2021-05-20 00:30:34','',0,'https://sa7717.dev34.info/?p=4344',2,'nav_menu_item','',0),(4345,1,'2021-05-20 00:30:35','2021-03-27 21:35:33','','Equipment','','publish','closed','closed','','equipment','','','2021-05-20 00:30:35','2021-05-20 00:30:35','',0,'https://sa7717.dev34.info/?p=4345',4,'nav_menu_item','',0),(4349,1,'2021-05-20 00:30:35','2021-03-27 21:35:33','','Contact','','publish','closed','closed','','contact-us-2','','','2021-05-20 00:30:35','2021-05-20 00:30:35','',0,'https://sa7717.dev34.info/?p=4349',7,'nav_menu_item','',0),(4350,1,'2021-05-20 00:30:35','2021-03-27 21:35:33','','Pinball Locator','','publish','closed','closed','','pinball-locator','','','2021-05-20 00:30:35','2021-05-20 00:30:35','',0,'https://sa7717.dev34.info/?p=4350',6,'nav_menu_item','',0),(4441,1,'2021-04-28 22:07:28','2021-04-28 22:07:28','Services\n	    <h3>\n                We position our clients at the forefront of their field by advancing an agenda.    </h3>\n		Easily apply to multiple jobs with one click! Quick Apply shows you recommended jobs based off your most recent search and allows you to apply to 25+ jobs in a matter of seconds!		\n                                    <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/theme-20-450x450.jpg\" width=\"450\" height=\"450\" alt=\"theme-20\" title=\"theme-20\" />                                \n                                                                            <h3>Counsel Services</h3>\n                                                                                    <h3>Counsel Services</h3>\n                                                We can provide you business with house counsel services for a monthly fee.                                            \n                                                <a href=\"https://demo.casethemes.net/consultio-tax/service/counsel-services/\">\n                                                    Read more                                                </a>\n                                    <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/theme-22-450x450.jpg\" width=\"450\" height=\"450\" alt=\"theme-22\" title=\"theme-22\" />                                \n                                                                            <h3>Securitization Law</h3>\n                                                                                    <h3>Securitization Law</h3>\n                                                We can provide you business with house counsel services for a monthly fee.                                            \n                                                <a href=\"https://demo.casethemes.net/consultio-tax/service/securitization-law/\">\n                                                    Read more                                                </a>\n                                    <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/theme-21-450x450.jpg\" width=\"450\" height=\"450\" alt=\"theme-21\" title=\"theme-21\" />                                \n                                                                            <h3>Commertial Law</h3>\n                                                                                    <h3>Commertial Law</h3>\n                                                We can provide you business with house counsel services for a monthly fee.                                            \n                                                <a href=\"https://demo.casethemes.net/consultio-tax/service/commertial-law/\">\n                                                    Read more                                                </a>\n                                    <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/theme-18-450x450.jpg\" width=\"450\" height=\"450\" alt=\"theme-18\" title=\"theme-18\" />                                \n                                                                            <h3>Succession Planning</h3>\n                                                                                    <h3>Succession Planning</h3>\n                                                We can provide you business with house counsel services for a monthly fee.                                            \n                                                <a href=\"https://demo.casethemes.net/consultio-tax/service/succession-planning/\">\n                                                    Read more                                                </a>\n                                    <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/theme-23-450x450.jpg\" width=\"450\" height=\"450\" alt=\"theme-23\" title=\"theme-23\" />                                \n                                                                            <h3>Legal Analytics</h3>\n                                                                                    <h3>Legal Analytics</h3>\n                                                We can provide you business with house counsel services for a monthly fee.                                            \n                                                <a href=\"https://demo.casethemes.net/consultio-tax/service/legal-analytics/\">\n                                                    Read more                                                </a>\n                                    <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/theme-17-450x450.jpg\" width=\"450\" height=\"450\" alt=\"theme-17\" title=\"theme-17\" />                                \n                                                                            <h3>Legal Assessment</h3>\n                                                                                    <h3>Legal Assessment</h3>\n                                                We can provide you business with house counsel services for a monthly fee.                                            \n                                                <a href=\"https://demo.casethemes.net/consultio-tax/service/legal-assessment/\">\n                                                    Read more                                                </a>\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Services v.2','','inherit','closed','closed','','409-revision-v1','','','2021-04-28 22:07:28','2021-04-28 22:07:28','',409,'https://sa7717.dev34.info/?p=4441',0,'revision','',0),(4351,1,'2021-03-27 21:36:26','2021-03-27 21:36:26','','Home','','publish','closed','closed','','home-3','','','2021-03-27 21:36:26','2021-03-27 21:36:26','',0,'https://sa7717.dev34.info/?p=4351',1,'nav_menu_item','',0),(4352,1,'2021-03-27 21:36:26','2021-03-27 21:36:26','','About','','publish','closed','closed','','about-2','','','2021-03-27 21:36:26','2021-03-27 21:36:26','',0,'https://sa7717.dev34.info/?p=4352',2,'nav_menu_item','',0),(4353,1,'2021-03-27 21:36:26','2021-03-27 21:36:26','','Services','','publish','closed','closed','','services-6','','','2021-03-27 21:36:26','2021-03-27 21:36:26','',0,'https://sa7717.dev34.info/?p=4353',3,'nav_menu_item','',0),(4354,1,'2021-03-27 21:36:26','2021-03-27 21:36:26','','Equipment','','publish','closed','closed','','equipment-2','','','2021-03-27 21:36:26','2021-03-27 21:36:26','',0,'https://sa7717.dev34.info/?p=4354',4,'nav_menu_item','',0),(4355,1,'2021-03-27 21:37:31','2021-03-27 21:37:31','','Pool League','','publish','closed','closed','','pool-league-2','','','2021-03-27 21:37:31','2021-03-27 21:37:31','',0,'https://sa7717.dev34.info/?p=4355',1,'nav_menu_item','',0),(4356,1,'2021-03-27 21:37:31','2021-03-27 21:37:31','','Dart League','','publish','closed','closed','','dart-league-2','','','2021-03-27 21:37:31','2021-03-27 21:37:31','',0,'https://sa7717.dev34.info/?p=4356',2,'nav_menu_item','',0),(4357,1,'2021-03-27 21:37:31','2021-03-27 21:37:31','','Pinball Locator','','publish','closed','closed','','pinball-locator-2','','','2021-03-27 21:37:31','2021-03-27 21:37:31','',0,'https://sa7717.dev34.info/?p=4357',3,'nav_menu_item','',0),(4358,1,'2021-03-27 21:37:31','2021-03-27 21:37:31','','Contact','','publish','closed','closed','','contact','','','2021-03-27 21:37:31','2021-03-27 21:37:31','',0,'https://sa7717.dev34.info/?p=4358',4,'nav_menu_item','',0),(4374,1,'2021-04-14 22:36:43','2021-04-14 22:36:43','[rev_slider alias=\"tax-consulting\"][/rev_slider]\nReady to discuss taking your business to the next level?\n<h3>\n                        Contact us today for a free consultation!</h3>\n<a href=\"#\" role=\"button\">\nContact Us Today\n</a>\nOur Equipment Lineup\n<h3>\n                        System Amusement has solutions for every business!</h3>\n[ess_grid alias=\"home grid 1\"]\n<h3>\n                        Karaoke Machines</h3>\nKaraoke is fun&nbsp;for people because of many reasons. It allows for a chance to socialize with friends while acting as silly as you want.&nbsp;Karaoke is also a great stress reliever after a stressful day of work or a depressing streak of boredom. System Amusements offers the best Karaoke machines for your business that can help to drive extra revenue.\n\n<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-768x513.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/attractive-cheerful-women-singing-with-microphone-8GXPEDG-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\">\n<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\">\n<h3>\n                        Shuffleboard</h3>\nShuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.\n<h3>\n                        Pool</h3>\nEveryone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn’t heard “Lets meet of with friends and play pool”. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.\n\n<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\">\n<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\">\n<h3>\n                        Claw Machines</h3>\nA Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.\n<h3>\n                        Dart Boards</h3>\nDarts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!\n\n<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\">\nWhat Makes System Amusement Different?\n<h3>\n                        Our 50+ Years of Dedication to our Clients!</h3>\nYour success is our success!\n\n1\n%\nQuality Equipment\n1\n%\nAttention to Detail\n1\n%\nReliable Support\n1\n%\nClient Dedication\nCustomer Reviews\n<h3>\n                            <i></i>\nWhat Our Clients Are Saying</h3>\n<img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\">\n\"These guys will bend over backwards for your bar or place of business. Thanks guys\"\n<h3>\n                                        Logan</h3>\nBar Owner\n<img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\">\n\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\"\n<h3>\n                                        Rebecca</h3>\nBar Owner\n<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\">\nFeatured Equipment\n<h3>\n                        Touch Tunes Audio and TV</h3>\n<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p>\n<p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>\nhttps://youtu.be/taZaMKbW5VQ\nTake your game to the next level and join our Dart League!\n<h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!</h3>\n<a href=\"#\" role=\"button\">\nDiscover More\n</a>\n<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\">\n<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\">\nDo you play pool?\n<h3>\n                        Learn About Our Pool League, and Get Signed Up Today!</h3>\n<a href=\"#\" role=\"button\">\nDiscover More\n</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-04-14 22:36:43','2021-04-14 22:36:43','',3193,'https://sa7717.dev34.info/?p=4374',0,'revision','',0),(4378,1,'2021-04-14 22:37:28','2021-04-14 22:37:28','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Pinball Machines                    \n            </h3>\n		<p>Pinball is a type of arcade game in which a player uses paddles (called flippers) to manipulate one or more balls inside a pinball machine. A pinball machine is a glass-covered cabinet containing a play field populated with lights, targets, bumpers, ramps, and various other objects depending on its design. The primary objective of the game is to score as many points as possible by hitting targets and making various shots with the flippers, before all balls &#8220;drain&#8221; at an exit usually situated at the bottom of the play field.</p>		\n										<img width=\"640\" height=\"428\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-1024x684.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-1024x684.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-300x200.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-768x513.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-1536x1025.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-2048x1367.jpeg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-600x401.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our 50+ Years of Dedication to our Clients!                    \n            </h3>\n		<p>Your success is our success!</p>		\n                1\n                %\n                            Quality Equipment\n                1\n                %\n                            Attention to Detail\n                1\n                %\n                            Reliable Support\n                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Learn About Our Pool League, and Get Signed Up Today!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-04-14 22:37:28','2021-04-14 22:37:28','',3193,'https://sa7717.dev34.info/?p=4378',0,'revision','',0),(4375,1,'2021-04-14 22:36:44','2021-04-14 22:36:44','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Pinball Machines                    \n            </h3>\n		<p>Pinball is a type of arcade game in which a player uses paddles (called flippers) to manipulate one or more balls inside a pinball machine. A pinball machine is a glass-covered cabinet containing a play field populated with lights, targets, bumpers, ramps, and various other objects depending on its design. The primary objective of the game is to score as many points as possible by hitting targets and making various shots with the flippers, before all balls &#8220;drain&#8221; at an exit usually situated at the bottom of the play field.</p>		\n										<img width=\"640\" height=\"428\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-1024x684.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-1024x684.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-300x200.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-768x513.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-1536x1025.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-2048x1367.jpeg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-600x401.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our 50+ Years of Dedication to our Clients!                    \n            </h3>\n		<p>Your success is our success!</p>		\n                1\n                %\n                            Quality Equipment\n                1\n                %\n                            Attention to Detail\n                1\n                %\n                            Reliable Support\n                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Learn About Our Pool League, and Get Signed Up Today!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-04-14 22:36:44','2021-04-14 22:36:44','',3193,'https://sa7717.dev34.info/?p=4375',0,'revision','',0),(4376,1,'2021-04-14 22:37:27','2021-04-14 22:37:27','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Pinball Machines                    \n            </h3>\n		<p>Pinball is a type of arcade game in which a player uses paddles (called flippers) to manipulate one or more balls inside a pinball machine. A pinball machine is a glass-covered cabinet containing a play field populated with lights, targets, bumpers, ramps, and various other objects depending on its design. The primary objective of the game is to score as many points as possible by hitting targets and making various shots with the flippers, before all balls &#8220;drain&#8221; at an exit usually situated at the bottom of the play field.</p>		\n										<img width=\"640\" height=\"428\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-1024x684.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-1024x684.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-300x200.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-768x513.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-1536x1025.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-2048x1367.jpeg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-600x401.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our 50+ Years of Dedication to our Clients!                    \n            </h3>\n		<p>Your success is our success!</p>		\n                1\n                %\n                            Quality Equipment\n                1\n                %\n                            Attention to Detail\n                1\n                %\n                            Reliable Support\n                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Learn About Our Pool League, and Get Signed Up Today!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-04-14 22:37:27','2021-04-14 22:37:27','',3193,'https://sa7717.dev34.info/?p=4376',0,'revision','',0),(4377,1,'2021-04-14 22:37:27','2021-04-14 22:37:27','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Pinball Machines                    \n            </h3>\n		<p>Pinball is a type of arcade game in which a player uses paddles (called flippers) to manipulate one or more balls inside a pinball machine. A pinball machine is a glass-covered cabinet containing a play field populated with lights, targets, bumpers, ramps, and various other objects depending on its design. The primary objective of the game is to score as many points as possible by hitting targets and making various shots with the flippers, before all balls &#8220;drain&#8221; at an exit usually situated at the bottom of the play field.</p>		\n										<img width=\"640\" height=\"428\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-1024x684.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-1024x684.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-300x200.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-768x513.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-1536x1025.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-2048x1367.jpeg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-600x401.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1024x576.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-300x169.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-768x432.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-1536x864.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-2048x1152.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/i-am-blue-C3X74HU-600x338.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Shuffleboard                    \n            </h3>\n		<p>Shuffleboard is very popular game. Table shuffleboard has many different game rules. Even though the game was invented close to five hundred years ago, you can still find it has an avid following. The reason for this is the game itself. Very few games can match up to the pleasure of playing a good shuffleboard game. System Amusement can add a high quality shuffle board in your location to give a new, fun feature to your establishment.</p>		\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our 50+ Years of Dedication to our Clients!                    \n            </h3>\n		<p>Your success is our success!</p>		\n                1\n                %\n                            Quality Equipment\n                1\n                %\n                            Attention to Detail\n                1\n                %\n                            Reliable Support\n                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Learn About Our Pool League, and Get Signed Up Today!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-04-14 22:37:27','2021-04-14 22:37:27','',3193,'https://sa7717.dev34.info/?p=4377',0,'revision','',0),(4379,1,'2021-04-14 22:40:49','2021-04-14 22:40:49','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Pinball Machines                    \n            </h3>\n		<p>Pinball is a type of arcade game in which a player uses paddles (called flippers) to manipulate one or more balls inside a pinball machine. A pinball machine is a glass-covered cabinet containing a play field populated with lights, targets, bumpers, ramps, and various other objects depending on its design. The primary objective of the game is to score as many points as possible by hitting targets and making various shots with the flippers, before all balls &#8220;drain&#8221; at an exit usually situated at the bottom of the play field.</p>		\n										<img width=\"640\" height=\"428\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-1024x684.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-1024x684.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-300x200.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-768x513.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-1536x1025.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-2048x1367.jpeg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-600x401.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our 50+ Years of Dedication to our Clients!                    \n            </h3>\n		<p>Your success is our success!</p>		\n                1\n                %\n                            Quality Equipment\n                1\n                %\n                            Attention to Detail\n                1\n                %\n                            Reliable Support\n                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Learn About Our Pool League, and Get Signed Up Today!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-04-14 22:40:49','2021-04-14 22:40:49','',3193,'https://sa7717.dev34.info/?p=4379',0,'revision','',0),(4380,1,'2021-04-14 22:40:49','2021-04-14 22:40:49','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        System Amusement has solutions for every business!                    \n            </h3>\n		[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Pinball Machines                    \n            </h3>\n		<p>Pinball is a type of arcade game in which a player uses paddles (called flippers) to manipulate one or more balls inside a pinball machine. A pinball machine is a glass-covered cabinet containing a play field populated with lights, targets, bumpers, ramps, and various other objects depending on its design. The primary objective of the game is to score as many points as possible by hitting targets and making various shots with the flippers, before all balls &#8220;drain&#8221; at an exit usually situated at the bottom of the play field.</p>		\n										<img width=\"640\" height=\"428\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-1024x684.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-1024x684.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-300x200.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-768x513.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-1536x1025.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-2048x1367.jpeg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-600x401.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our 50+ Years of Dedication to our Clients!                    \n            </h3>\n		<p>Your success is our success!</p>		\n                1\n                %\n                            Quality Equipment\n                1\n                %\n                            Attention to Detail\n                1\n                %\n                            Reliable Support\n                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Learn About Our Pool League, and Get Signed Up Today!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-04-14 22:40:49','2021-04-14 22:40:49','',3193,'https://sa7717.dev34.info/?p=4380',0,'revision','',0),(4426,1,'2021-04-28 20:10:53','2021-04-28 20:10:53','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        Entertainment Solutions for Every Business!                    \n            </h3>\n		<p style=\"text-align: center;\">System Amusement is your partner in providing top of the line entertainment and activities to your customers. We provide complete Keep-filled services and provide a Fully maintained solution for your business. Provide the very best entertainment and activities at a fraction of the cost!</p>[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Pinball Machines                    \n            </h3>\n		<p>Pinball is a type of arcade game in which a player uses paddles (called flippers) to manipulate one or more balls inside a pinball machine. A pinball machine is a glass-covered cabinet containing a play field populated with lights, targets, bumpers, ramps, and various other objects depending on its design. The primary objective of the game is to score as many points as possible by hitting targets and making various shots with the flippers, before all balls &#8220;drain&#8221; at an exit usually situated at the bottom of the play field.</p>		\n															<img width=\"640\" height=\"428\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-1024x684.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-1024x684.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-300x200.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-768x513.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-1536x1025.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-2048x1367.jpeg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-600x401.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n															<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n															<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our 50+ Years of Dedication to our Clients!                    \n            </h3>\n		<p>Your success is our success!</p>		\n                1\n                %\n                            Quality Equipment\n                1\n                %\n                            Attention to Detail\n                1\n                %\n                            Reliable Support\n                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n															<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n															<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n															<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n            Do you play pool?                                \n	    <h3>\n                        Learn About Our Pool League, and Get Signed Up Today!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-04-28 20:10:53','2021-04-28 20:10:53','',3193,'https://sa7717.dev34.info/?p=4426',0,'revision','',0),(4381,1,'2021-04-14 22:40:50','2021-04-14 22:40:50','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        Entertainment Solutions for Every Business!                    \n            </h3>\n		<p style=\"text-align: center;\">System Amusement is your partner in providing top of the line entertainment and activities to your customers. We provide complete Keep-filled services and provide a Fully maintained solution for your business. Provide the very best entertainment and activities at a fraction of the cost!</p>[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Pinball Machines                    \n            </h3>\n		<p>Pinball is a type of arcade game in which a player uses paddles (called flippers) to manipulate one or more balls inside a pinball machine. A pinball machine is a glass-covered cabinet containing a play field populated with lights, targets, bumpers, ramps, and various other objects depending on its design. The primary objective of the game is to score as many points as possible by hitting targets and making various shots with the flippers, before all balls &#8220;drain&#8221; at an exit usually situated at the bottom of the play field.</p>		\n										<img width=\"640\" height=\"428\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-1024x684.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-1024x684.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-300x200.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-768x513.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-1536x1025.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-2048x1367.jpeg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-600x401.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our 50+ Years of Dedication to our Clients!                    \n            </h3>\n		<p>Your success is our success!</p>		\n                1\n                %\n                            Quality Equipment\n                1\n                %\n                            Attention to Detail\n                1\n                %\n                            Reliable Support\n                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Learn About Our Pool League, and Get Signed Up Today!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-04-14 22:40:50','2021-04-14 22:40:50','',3193,'https://sa7717.dev34.info/?p=4381',0,'revision','',0),(4395,1,'2021-04-14 23:37:07','2021-04-14 23:37:07','Is Your Pinball Machine Broken?                                \n	    <h3>\n                        We Offer Top Notch Pinball Machine Service and Repairs                    \n            </h3>\n		<p>System Amusement is happy to offer pinball machine repair and service to customers located throughout Eastern Washington and Western Idaho. Contact our support team today to setup an appointment.</p>		\n										<img width=\"1000\" height=\"667\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home-.jpeg 1000w, https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home--300x200.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home--768x512.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home--600x400.jpeg 600w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n            Contact our support team today!\n            Click to call\n            <a href=\"te:509-326-1551\">\n                                                                    509-326-1551            </a>','About v.2','','inherit','closed','closed','','3491-revision-v1','','','2021-04-14 23:37:07','2021-04-14 23:37:07','',3491,'https://sa7717.dev34.info/?p=4395',0,'revision','',0),(4396,1,'2021-04-14 23:37:07','2021-04-14 23:37:07','Is Your Pinball Machine Broken?                                \n	    <h3>\n                        We Offer Top Notch Pinball Machine Service and Repairs                    \n            </h3>\n		<p>System Amusement is happy to offer pinball machine repair and service to customers located throughout Eastern Washington and Western Idaho. Contact our support team today to setup an appointment.</p>		\n										<img width=\"1000\" height=\"667\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home-.jpeg 1000w, https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home--300x200.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home--768x512.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home--600x400.jpeg 600w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n            Contact our support team today!\n            Click to call\n            <a href=\"te:509-326-1551\">\n                                                                    509-326-1551            </a>','About v.2','','inherit','closed','closed','','3491-revision-v1','','','2021-04-14 23:37:07','2021-04-14 23:37:07','',3491,'https://sa7717.dev34.info/?p=4396',0,'revision','',0),(4401,1,'2021-04-15 00:23:15','2021-04-15 00:23:15','Is Your Pinball Machine Broken?\n<h3>\n                        We Offer Top Notch Pinball Machine Service and Repairs</h3>\nSystem Amusement is happy to offer pinball machine repair and service to customers located throughout Eastern Washington and Western Idaho. Contact our support team today to setup an appointment.\n\n<img width=\"1000\" height=\"667\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home-.jpeg 1000w, https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home--300x200.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home--768x512.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home--600x400.jpeg 600w\" sizes=\"(max-width: 1000px) 100vw, 1000px\">\n<h3>\n                        Complete the form below or call us today</h3>\nContact our support team today!\nClick to call\n<a href=\"te:509-326-1551\">\n509-326-1551            </a>\nWhat Makes System Amusement Different?\n<h3>\n                        Our 50+ Years of Dedication to our Clients!</h3>\nYour success is our success!\n\n1\n%\nQuality Equipment\n1\n%\nAttention to Detail\n1\n%\nReliable Support\n1\n%\nClient Dedication\nCustomer Reviews\n<h3>\n                            <i></i>\nWhat Our Clients Are Saying</h3>\n<img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\">\n\"These guys will bend over backwards for your bar or place of business. Thanks guys\"\n<h3>\n                                        Logan</h3>\nBar Owner\n<img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\">\n\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\"\n<h3>\n                                        Rebecca</h3>\nBar Owner\n<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\">','About v.2','','inherit','closed','closed','','3491-revision-v1','','','2021-04-15 00:23:15','2021-04-15 00:23:15','',3491,'https://sa7717.dev34.info/?p=4401',0,'revision','',0),(4400,1,'2021-04-14 23:38:54','2021-04-14 23:38:54','Is Your Pinball Machine Broken?                                \n	    <h3>\n                        We Offer Top Notch Pinball Machine Service and Repairs                    \n            </h3>\n		<p>System Amusement is happy to offer pinball machine repair and service to customers located throughout Eastern Washington and Western Idaho. Contact our support team today to setup an appointment.</p>		\n										<img width=\"1000\" height=\"667\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home-.jpeg 1000w, https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home--300x200.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home--768x512.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home--600x400.jpeg 600w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n	    <h3>\n                        Complete the form below or call us today                    \n            </h3>\n            Contact our support team today!\n            Click to call\n            <a href=\"te:509-326-1551\">\n                                                                    509-326-1551            </a>\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our 50+ Years of Dedication to our Clients!                    \n            </h3>\n		<p>Your success is our success!</p>		\n                1\n                %\n                            Quality Equipment\n                1\n                %\n                            Attention to Detail\n                1\n                %\n                            Reliable Support\n                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />','About v.2','','inherit','closed','closed','','3491-revision-v1','','','2021-04-14 23:38:54','2021-04-14 23:38:54','',3491,'https://sa7717.dev34.info/?p=4400',0,'revision','',0),(4398,1,'2021-04-14 23:38:54','2021-04-14 23:38:54','Is Your Pinball Machine Broken?                                \n	    <h3>\n                        We Offer Top Notch Pinball Machine Service and Repairs                    \n            </h3>\n		<p>System Amusement is happy to offer pinball machine repair and service to customers located throughout Eastern Washington and Western Idaho. Contact our support team today to setup an appointment.</p>		\n										<img width=\"1000\" height=\"667\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home-.jpeg 1000w, https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home--300x200.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home--768x512.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home--600x400.jpeg 600w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n            Contact our support team today!\n            Click to call\n            <a href=\"te:509-326-1551\">\n                                                                    509-326-1551            </a>','About v.2','','inherit','closed','closed','','3491-revision-v1','','','2021-04-14 23:38:54','2021-04-14 23:38:54','',3491,'https://sa7717.dev34.info/?p=4398',0,'revision','',0),(4399,1,'2021-04-14 23:38:54','2021-04-14 23:38:54','Is Your Pinball Machine Broken?                                \n	    <h3>\n                        We Offer Top Notch Pinball Machine Service and Repairs                    \n            </h3>\n		<p>System Amusement is happy to offer pinball machine repair and service to customers located throughout Eastern Washington and Western Idaho. Contact our support team today to setup an appointment.</p>		\n										<img width=\"1000\" height=\"667\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home-.jpeg 1000w, https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home--300x200.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home--768x512.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home--600x400.jpeg 600w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n            Contact our support team today!\n            Click to call\n            <a href=\"te:509-326-1551\">\n                                                                    509-326-1551            </a>','About v.2','','inherit','closed','closed','','3491-revision-v1','','','2021-04-14 23:38:54','2021-04-14 23:38:54','',3491,'https://sa7717.dev34.info/?p=4399',0,'revision','',0),(4383,1,'2021-04-14 23:26:20','2021-04-14 23:26:20','','Screen Shot 2021-04-14 at 3.43.33 PM','','inherit','open','closed','','screen-shot-2021-04-14-at-3-43-33-pm','','','2021-04-14 23:26:20','2021-04-14 23:26:20','',0,'https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png',0,'attachment','image/png',0),(4384,1,'2021-04-14 23:27:15','2021-04-14 23:27:15','','pinball at home','','inherit','open','closed','','pinball-at-home','','','2021-04-14 23:27:15','2021-04-14 23:27:15','',3491,'https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home-.jpeg',0,'attachment','image/jpeg',0),(4385,1,'2021-04-14 23:32:06','2021-04-14 23:32:06','About us\n	    <h3>\n                        Consulting is a law firm specialising in corporate finance work                    \n    </h3>\n		Advice on comprehensive legal solutions and legal planning on all aspects of business, including: issues under Company Law & Exchange Control Regulations.		\n        80%\n    <h3>Work<br/> Development</h3>\n        90%\n    <h3>Plan<br/> Fulfilled</h3>\n        50%\n    <h3>UI/UX<br/> Desigining</h3>\n										<img width=\"535\" height=\"519\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h4-about1-1.png\" alt=\"\" srcset=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h4-about1-1.png 535w, https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h4-about1-1-300x291.png 300w\" sizes=\"(max-width: 535px) 100vw, 535px\" />											\n            Want to know more about us?\n            Just download brochure...\n            <a href=\"#\">\n                                                                    Download Brochure            </a>\n			Services\n	    <h3>\n                        We deals with many services to take extra care of your problem solutions.                    \n    </h3>\n		Business services is a general term that describes work that supports a business but does not produce a tangible commodity. Information technology is important.		\n                                <img width=\"60\" height=\"65\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-service-icon4.png\" alt=\"\" />                            \n                        <h3>    \n                            Tax Consultancy                        </h3>\n                        This is one of many areas of\nprofessional services where our firm is well ahead of the competition.\n                                                    <a href=\"https://demo.casethemes.net/consultio-tax/service/business-strategy/\"></a>\n                                <img width=\"74\" height=\"65\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-service-icon5.png\" alt=\"\" />                            \n                        <h3>    \n                            Audit & assurance                        </h3>\n                        People are only as good as the tools they possess. So, to consistently deliver high-quality auditing services.\n                                                    <a href=\"https://demo.casethemes.net/consultio-tax/service/business-strategy/\"></a>\n                                <img width=\"51\" height=\"65\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-service-icon6.png\" alt=\"\" />                            \n                        <h3>    \n                            Value Added Tax                        </h3>\n                        We are providing and dealing with all sorts of legal and professional services and matters to operate.\n                                                    <a href=\"https://demo.casethemes.net/consultio-tax/service/business-strategy/\"></a>\n                                <img width=\"57\" height=\"65\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-service-icon7.png\" alt=\"\" />                            \n                        <h3>    \n                            Accounting Services                        </h3>\n                        Our professionals provide a range of accounting and assurance services of the highest standards.\n                                                    <a href=\"https://demo.casethemes.net/consultio-tax/service/business-strategy/\"></a>\n                                <img width=\"58\" height=\"65\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-service-icon8.png\" alt=\"\" />                            \n                        <h3>    \n                            Tax Outsourcing                        </h3>\n                        Unlike our competitors we have in house qualified lawyers and accountants who can help you.\n                                                    <a href=\"https://demo.casethemes.net/consultio-tax/service/business-strategy/\"></a>\n                                <img width=\"63\" height=\"65\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-service-icon9.png\" alt=\"\" />                            \n                        <h3>    \n                            Amazing Strategy                        </h3>\n                        Operates an atmosphere that promote creative approach for clients needs.\n                                                    <a href=\"https://demo.casethemes.net/consultio-tax/service/business-strategy/\"></a>\n			Funfact\n	    <h3>\n                        Don’t misread here we have random &amp; interesting facts.                    \n    </h3>\n		Starfish can re-grow their arms. In fact, a single arm can regenerate a whole body. Google\'s founders were willing\nto sell & consult.		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n            1\n            +\n                    Team members\n            1\n            +\n                    Winning Awards\n            1\n            +\n                    Client’s Feedback\n            1\n            +\n                    Completed Works\n			Testimonial\n	    <h3>\n                        It’s always a joy to hear that the work we do, has positively reviews.                    \n    </h3>\n		We have spent 9 years working for one of Australia’s most\nrecognised and successful retailers so we have many good\nreview of works.		\n                                I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24/24.\n                                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/testimonial-04.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-04\" title=\"testimonial-04\" />                                        \n                                        <h3>    \n                                            Maria Silverii                                        </h3>\n                                        CEO of Blue Illusion\n                                I love Consultio! It really looks more original than many others.Support deserves 7 stars but, unfortunately, you do not have that option. I really suggest you to work with them.\n                                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/testimonial-05.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-05\" title=\"testimonial-05\" />                                        \n                                        <h3>    \n                                            Phillip Macintyre                                        </h3>\n                                        CEO of Blue Illusion\n                                Great, versatile theme with lots of customisability. But - above all that the customer support is amazing, useful and quick! I must recommand\nthem.\n                                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/team-01.jpg\" width=\"100\" height=\"100\" alt=\"team-01\" title=\"team-01\" />                                        \n                                        <h3>    \n                                            Amy Harrison                                        </h3>\n                                        Contiki Holidays\n                                I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24/24.\n                                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/testimonial-06.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-06\" title=\"testimonial-06\" />                                        \n                                        <h3>    \n                                            Maria Silverii                                        </h3>\n                                        CEO of Blue Illusion\n                                Great, versatile theme with lots of customisability. But - above all that the customer support is amazing, useful and quick! I must recommand\nthem.\n                                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/home-author-01-122x122.jpg\" width=\"122\" height=\"122\" alt=\"home-author-01\" title=\"home-author-01\" />                                        \n                                        <h3>    \n                                            Amy Harrison                                        </h3>\n                                        Contiki Holidays\n                                I love Consultio! It really looks more original than many others.Support deserves 7 stars but, unfortunately, you do not have that option. I really suggest you to work with them.\n                                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/home-author-02-122x122.jpg\" width=\"122\" height=\"122\" alt=\"home-author-02\" title=\"home-author-02\" />                                        \n                                        <h3>    \n                                            Phillip Macintyre                                        </h3>\n                                        CEO of Blue Illusion\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','About v.2','','inherit','closed','closed','','3491-revision-v1','','','2021-04-14 23:32:06','2021-04-14 23:32:06','',3491,'https://sa7717.dev34.info/?p=4385',0,'revision','',0),(4386,1,'2021-04-14 23:32:06','2021-04-14 23:32:06','About us\n	    <h3>\n                        Consulting is a law firm specialising in corporate finance work                    \n    </h3>\n		Advice on comprehensive legal solutions and legal planning on all aspects of business, including: issues under Company Law & Exchange Control Regulations.		\n        80%\n    <h3>Work<br/> Development</h3>\n        90%\n    <h3>Plan<br/> Fulfilled</h3>\n        50%\n    <h3>UI/UX<br/> Desigining</h3>\n										<img width=\"535\" height=\"519\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h4-about1-1.png\" alt=\"\" srcset=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h4-about1-1.png 535w, https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h4-about1-1-300x291.png 300w\" sizes=\"(max-width: 535px) 100vw, 535px\" />											\n            Want to know more about us?\n            Just download brochure...\n            <a href=\"#\">\n                                                                    Download Brochure            </a>\n			Services\n	    <h3>\n                        We deals with many services to take extra care of your problem solutions.                    \n    </h3>\n		Business services is a general term that describes work that supports a business but does not produce a tangible commodity. Information technology is important.		\n                                <img width=\"60\" height=\"65\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-service-icon4.png\" alt=\"\" />                            \n                        <h3>    \n                            Tax Consultancy                        </h3>\n                        This is one of many areas of\nprofessional services where our firm is well ahead of the competition.\n                                                    <a href=\"https://demo.casethemes.net/consultio-tax/service/business-strategy/\"></a>\n                                <img width=\"74\" height=\"65\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-service-icon5.png\" alt=\"\" />                            \n                        <h3>    \n                            Audit & assurance                        </h3>\n                        People are only as good as the tools they possess. So, to consistently deliver high-quality auditing services.\n                                                    <a href=\"https://demo.casethemes.net/consultio-tax/service/business-strategy/\"></a>\n                                <img width=\"51\" height=\"65\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-service-icon6.png\" alt=\"\" />                            \n                        <h3>    \n                            Value Added Tax                        </h3>\n                        We are providing and dealing with all sorts of legal and professional services and matters to operate.\n                                                    <a href=\"https://demo.casethemes.net/consultio-tax/service/business-strategy/\"></a>\n                                <img width=\"57\" height=\"65\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-service-icon7.png\" alt=\"\" />                            \n                        <h3>    \n                            Accounting Services                        </h3>\n                        Our professionals provide a range of accounting and assurance services of the highest standards.\n                                                    <a href=\"https://demo.casethemes.net/consultio-tax/service/business-strategy/\"></a>\n                                <img width=\"58\" height=\"65\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-service-icon8.png\" alt=\"\" />                            \n                        <h3>    \n                            Tax Outsourcing                        </h3>\n                        Unlike our competitors we have in house qualified lawyers and accountants who can help you.\n                                                    <a href=\"https://demo.casethemes.net/consultio-tax/service/business-strategy/\"></a>\n                                <img width=\"63\" height=\"65\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-service-icon9.png\" alt=\"\" />                            \n                        <h3>    \n                            Amazing Strategy                        </h3>\n                        Operates an atmosphere that promote creative approach for clients needs.\n                                                    <a href=\"https://demo.casethemes.net/consultio-tax/service/business-strategy/\"></a>\n			Funfact\n	    <h3>\n                        Don’t misread here we have random &amp; interesting facts.                    \n    </h3>\n		Starfish can re-grow their arms. In fact, a single arm can regenerate a whole body. Google\'s founders were willing\nto sell & consult.		\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n            1\n            +\n                    Team members\n            1\n            +\n                    Winning Awards\n            1\n            +\n                    Client’s Feedback\n            1\n            +\n                    Completed Works\n			Testimonial\n	    <h3>\n                        It’s always a joy to hear that the work we do, has positively reviews.                    \n    </h3>\n		We have spent 9 years working for one of Australia’s most\nrecognised and successful retailers so we have many good\nreview of works.		\n                                I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24/24.\n                                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/testimonial-04.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-04\" title=\"testimonial-04\" />                                        \n                                        <h3>    \n                                            Maria Silverii                                        </h3>\n                                        CEO of Blue Illusion\n                                I love Consultio! It really looks more original than many others.Support deserves 7 stars but, unfortunately, you do not have that option. I really suggest you to work with them.\n                                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/testimonial-05.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-05\" title=\"testimonial-05\" />                                        \n                                        <h3>    \n                                            Phillip Macintyre                                        </h3>\n                                        CEO of Blue Illusion\n                                Great, versatile theme with lots of customisability. But - above all that the customer support is amazing, useful and quick! I must recommand\nthem.\n                                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/team-01.jpg\" width=\"100\" height=\"100\" alt=\"team-01\" title=\"team-01\" />                                        \n                                        <h3>    \n                                            Amy Harrison                                        </h3>\n                                        Contiki Holidays\n                                I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24/24.\n                                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/testimonial-06.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-06\" title=\"testimonial-06\" />                                        \n                                        <h3>    \n                                            Maria Silverii                                        </h3>\n                                        CEO of Blue Illusion\n                                Great, versatile theme with lots of customisability. But - above all that the customer support is amazing, useful and quick! I must recommand\nthem.\n                                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/home-author-01-122x122.jpg\" width=\"122\" height=\"122\" alt=\"home-author-01\" title=\"home-author-01\" />                                        \n                                        <h3>    \n                                            Amy Harrison                                        </h3>\n                                        Contiki Holidays\n                                I love Consultio! It really looks more original than many others.Support deserves 7 stars but, unfortunately, you do not have that option. I really suggest you to work with them.\n                                            <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/home-author-02-122x122.jpg\" width=\"122\" height=\"122\" alt=\"home-author-02\" title=\"home-author-02\" />                                        \n                                        <h3>    \n                                            Phillip Macintyre                                        </h3>\n                                        CEO of Blue Illusion\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','About v.2','','inherit','closed','closed','','3491-revision-v1','','','2021-04-14 23:32:06','2021-04-14 23:32:06','',3491,'https://sa7717.dev34.info/?p=4386',0,'revision','',0),(4402,1,'2021-04-15 01:11:20','2021-04-15 01:11:20','Is Your Pinball Machine Broken?\n<h3>\n                        We Offer Top Notch Pinball Machine Service and Repairs</h3>\nSystem Amusement is happy to offer pinball machine repair and service to customers located throughout Eastern Washington and Western Idaho. Contact our support team today to setup an appointment.\n\n<img width=\"1000\" height=\"667\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home-.jpeg 1000w, https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home--300x200.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home--768x512.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home--600x400.jpeg 600w\" sizes=\"(max-width: 1000px) 100vw, 1000px\">\n<h3>\n                        Complete the form below or call us today</h3>\nContact our support team today!\nClick to call\n<a href=\"te:509-326-1551\">\n509-326-1551            </a>\nWhat Makes System Amusement Different?\n<h3>\n                        Our 50+ Years of Dedication to our Clients!</h3>\nYour success is our success!\n\n1\n%\nQuality Equipment\n1\n%\nAttention to Detail\n1\n%\nReliable Support\n1\n%\nClient Dedication\nCustomer Reviews\n<h3>\n                            <i></i>\nWhat Our Clients Are Saying</h3>\n<img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\">\n\"These guys will bend over backwards for your bar or place of business. Thanks guys\"\n<h3>\n                                        Logan</h3>\nBar Owner\n<img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\">\n\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\"\n<h3>\n                                        Rebecca</h3>\nBar Owner\n<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\">','About v.2','','inherit','closed','closed','','3491-revision-v1','','','2021-04-15 01:11:20','2021-04-15 01:11:20','',3491,'https://sa7717.dev34.info/?p=4402',0,'revision','',0),(4403,1,'2021-04-15 01:11:20','2021-04-15 01:11:20','Is Your Pinball Machine Broken?\n<h3>\n                        We Offer Top Notch Pinball Machine Service and Repairs</h3>\nSystem Amusement is happy to offer pinball machine repair and service to customers located throughout Eastern Washington and Western Idaho. Contact our support team today to setup an appointment.\n\n<img width=\"1000\" height=\"667\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home-.jpeg 1000w, https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home--300x200.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home--768x512.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home--600x400.jpeg 600w\" sizes=\"(max-width: 1000px) 100vw, 1000px\">\n<h3>\n                        Complete the form below or call us today</h3>\nContact our support team today!\nClick to call\n<a href=\"te:509-326-1551\">\n509-326-1551            </a>\nWhat Makes System Amusement Different?\n<h3>\n                        Our 50+ Years of Dedication to our Clients!</h3>\nYour success is our success!\n\n1\n%\nQuality Equipment\n1\n%\nAttention to Detail\n1\n%\nReliable Support\n1\n%\nClient Dedication\nCustomer Reviews\n<h3>\n                            <i></i>\nWhat Our Clients Are Saying</h3>\n<img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\">\n\"These guys will bend over backwards for your bar or place of business. Thanks guys\"\n<h3>\n                                        Logan</h3>\nBar Owner\n<img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\">\n\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\"\n<h3>\n                                        Rebecca</h3>\nBar Owner\n<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\">','About v.2','','inherit','closed','closed','','3491-revision-v1','','','2021-04-15 01:11:20','2021-04-15 01:11:20','',3491,'https://sa7717.dev34.info/?p=4403',0,'revision','',0),(4408,1,'2021-04-15 01:13:21','2021-04-15 01:13:21','Is Your Pinball Machine Broken?\n<h3>\n                        We Offer Top Notch Pinball Machine Service and Repairs</h3>\nSystem Amusement is happy to offer pinball machine repair and service to customers located throughout Eastern Washington and Western Idaho. Contact our support team today to setup an appointment.\n\n<img width=\"1000\" height=\"667\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home-.jpeg 1000w, https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home--300x200.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home--768x512.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home--600x400.jpeg 600w\" sizes=\"(max-width: 1000px) 100vw, 1000px\">\n<h3>\n                        Complete The Form Below or Call or Email us Today</h3>\n<img width=\"640\" height=\"428\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-1024x684.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-1024x684.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-300x200.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-768x513.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-1536x1025.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-2048x1367.jpeg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-600x401.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\">\nContact our support team today!\nClick to call\n<a href=\"te:509-326-1551\">\n509-326-1551            </a>\nWhat Makes System Amusement Different?\n<h3>\n                        Our 50+ Years of Dedication to our Clients!</h3>\nYour success is our success!\n\n1\n%\nQuality Equipment\n1\n%\nAttention to Detail\n1\n%\nReliable Support\n1\n%\nClient Dedication\nCustomer Reviews\n<h3>\n                            <i></i>\nWhat Our Clients Are Saying</h3>\n<img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\">\n\"These guys will bend over backwards for your bar or place of business. Thanks guys\"\n<h3>\n                                        Logan</h3>\nBar Owner\n<img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\">\n\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\"\n<h3>\n                                        Rebecca</h3>\nBar Owner\n<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\">','Pinball Repairs and Service','','inherit','closed','closed','','3491-revision-v1','','','2021-04-15 01:13:21','2021-04-15 01:13:21','',3491,'https://sa7717.dev34.info/?p=4408',0,'revision','',0),(4404,1,'2021-04-15 01:11:20','2021-04-15 01:11:20','Is Your Pinball Machine Broken?                                \n	    <h3>\n                        We Offer Top Notch Pinball Machine Service and Repairs                    \n            </h3>\n		<p>System Amusement is happy to offer pinball machine repair and service to customers located throughout Eastern Washington and Western Idaho. Contact our support team today to setup an appointment.</p>		\n										<img width=\"1000\" height=\"667\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home-.jpeg 1000w, https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home--300x200.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home--768x512.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home--600x400.jpeg 600w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n	    <h3>\n                        Complete The Form Below or Call or Email us Today                    \n            </h3>\n										<img width=\"640\" height=\"428\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-1024x684.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-1024x684.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-300x200.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-768x513.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-1536x1025.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-2048x1367.jpeg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-600x401.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Contact our support team today!\n            Click to call\n            <a href=\"te:509-326-1551\">\n                                                                    509-326-1551            </a>\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our 50+ Years of Dedication to our Clients!                    \n            </h3>\n		<p>Your success is our success!</p>		\n                1\n                %\n                            Quality Equipment\n                1\n                %\n                            Attention to Detail\n                1\n                %\n                            Reliable Support\n                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />','About v.2','','inherit','closed','closed','','3491-revision-v1','','','2021-04-15 01:11:20','2021-04-15 01:11:20','',3491,'https://sa7717.dev34.info/?p=4404',0,'revision','',0),(4405,1,'2021-04-15 01:12:13','2021-04-15 01:12:13','Is Your Pinball Machine Broken?                                \n	    <h3>\n                        We Offer Top Notch Pinball Machine Service and Repairs                    \n            </h3>\n		<p>System Amusement is happy to offer pinball machine repair and service to customers located throughout Eastern Washington and Western Idaho. Contact our support team today to setup an appointment.</p>		\n										<img width=\"1000\" height=\"667\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home-.jpeg 1000w, https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home--300x200.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home--768x512.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home--600x400.jpeg 600w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n	    <h3>\n                        Complete The Form Below or Call or Email us Today                    \n            </h3>\n										<img width=\"640\" height=\"428\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-1024x684.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-1024x684.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-300x200.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-768x513.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-1536x1025.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-2048x1367.jpeg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-600x401.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Contact our support team today!\n            Click to call\n            <a href=\"te:509-326-1551\">\n                                                                    509-326-1551            </a>\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our 50+ Years of Dedication to our Clients!                    \n            </h3>\n		<p>Your success is our success!</p>		\n                1\n                %\n                            Quality Equipment\n                1\n                %\n                            Attention to Detail\n                1\n                %\n                            Reliable Support\n                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />','About v.2','','inherit','closed','closed','','3491-revision-v1','','','2021-04-15 01:12:13','2021-04-15 01:12:13','',3491,'https://sa7717.dev34.info/?p=4405',0,'revision','',0),(4406,1,'2021-04-15 01:12:13','2021-04-15 01:12:13','Is Your Pinball Machine Broken?                                \n	    <h3>\n                        We Offer Top Notch Pinball Machine Service and Repairs                    \n            </h3>\n		<p>System Amusement is happy to offer pinball machine repair and service to customers located throughout Eastern Washington and Western Idaho. Contact our support team today to setup an appointment.</p>		\n										<img width=\"1000\" height=\"667\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home-.jpeg 1000w, https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home--300x200.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home--768x512.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home--600x400.jpeg 600w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n	    <h3>\n                        Complete The Form Below or Call or Email us Today                    \n            </h3>\n										<img width=\"640\" height=\"428\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-1024x684.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-1024x684.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-300x200.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-768x513.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-1536x1025.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-2048x1367.jpeg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-600x401.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Contact our support team today!\n            Click to call\n            <a href=\"te:509-326-1551\">\n                                                                    509-326-1551            </a>\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our 50+ Years of Dedication to our Clients!                    \n            </h3>\n		<p>Your success is our success!</p>		\n                1\n                %\n                            Quality Equipment\n                1\n                %\n                            Attention to Detail\n                1\n                %\n                            Reliable Support\n                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />','About v.2','','inherit','closed','closed','','3491-revision-v1','','','2021-04-15 01:12:13','2021-04-15 01:12:13','',3491,'https://sa7717.dev34.info/?p=4406',0,'revision','',0),(4407,1,'2021-04-15 01:12:13','2021-04-15 01:12:13','Is Your Pinball Machine Broken?                                \n	    <h3>\n                        We Offer Top Notch Pinball Machine Service and Repairs                    \n            </h3>\n		<p>System Amusement is happy to offer pinball machine repair and service to customers located throughout Eastern Washington and Western Idaho. Contact our support team today to setup an appointment.</p>		\n										<img width=\"1000\" height=\"667\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home-.jpeg 1000w, https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home--300x200.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home--768x512.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/pinball-at-home--600x400.jpeg 600w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />											\n	    <h3>\n                        Complete The Form Below or Call or Email us Today                    \n            </h3>\n										<img width=\"640\" height=\"428\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-1024x684.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-1024x684.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-300x200.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-768x513.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-1536x1025.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-2048x1367.jpeg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-600x401.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Contact our support team today!\n            Click to call\n            <a href=\"te:509-326-1551\">\n                                                                    509-326-1551            </a>\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our 50+ Years of Dedication to our Clients!                    \n            </h3>\n		<p>Your success is our success!</p>		\n                1\n                %\n                            Quality Equipment\n                1\n                %\n                            Attention to Detail\n                1\n                %\n                            Reliable Support\n                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />','About v.2','','inherit','closed','closed','','3491-revision-v1','','','2021-04-15 01:12:13','2021-04-15 01:12:13','',3491,'https://sa7717.dev34.info/?p=4407',0,'revision','',0),(4409,1,'2021-05-20 00:30:35','2021-04-15 01:14:17','','Repairs','','publish','closed','closed','','repairs','','','2021-05-20 00:30:35','2021-05-20 00:30:35','',0,'https://sa7717.dev34.info/?p=4409',3,'nav_menu_item','',0),(4411,1,'2021-04-15 03:31:47','2021-04-15 03:31:47','<h3>\n            Head office address:</h3>\n3556 Hartford Way Vlg, Mount\nPleasant, SC, 29466, Australia.\n<h3>\n            Call for help:</h3>\n(734) 697-2907\n(843) 971-1906\n<h3>\n            Mail for information:</h3>\nnoreply@envato.com\nnoreply@consultio.com\n<img width=\"601\" height=\"706\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/contact-about1.png\" alt=\"\" srcset=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/contact-about1.png 601w, https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/contact-about1-255x300.png 255w\" sizes=\"(max-width: 601px) 100vw, 601px\">\n<h3>\n        Make a free consultation with our expert team to solve your prolems.</h3>\nFor any inquiries relating to my  Retail and Leadership Programs*\n\n<form action=\"/ctthemes/csuti/wp-admin/admin-ajax.php#wpcf7-f91-o1\" method=\"post\" novalidate=\"novalidate\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"91\">\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.1.6\">\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\">\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f91-o1\">\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\">\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\">\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail*\">\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone*\">\n<select name=\"your-subject\" aria-required=\"true\" aria-invalid=\"false\">\n<option value=\"Subject\">Subject</option>\n<option value=\"Success fullfill\">Success fullfill</option>\n<option value=\"StartUp business\">StartUp business</option>\n<option value=\"Leadership work\">Leadership work</option>\n<option value=\"Business Growth\">Business Growth</option>\n</select>\n<button type=\"submit\">Consult today</button>\n</form>                                <a href=\"#\"><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-01.png\" alt=\"\"></a>\n<a href=\"#\"><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-02.png\" alt=\"\"></a>\n<a href=\"#\"><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-03.png\" alt=\"\"></a>\n<a href=\"#\"><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-04.png\" alt=\"\"></a>\n<a href=\"#\"><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/client-05.png\" alt=\"\"></a>','Contact','','inherit','closed','closed','','24-revision-v1','','','2021-04-15 03:31:47','2021-04-15 03:31:47','',24,'https://sa7717.dev34.info/?p=4411',0,'revision','',0),(4412,1,'2021-04-15 03:31:47','2021-04-15 03:31:47','<h3>\n            Head office address:</h3>\n3556 Hartford Way Vlg, Mount\nPleasant, SC, 29466, Australia.\n<h3>\n            Call for help:</h3>\n(734) 697-2907\n(843) 971-1906\n<h3>\n            Mail for information:</h3>\nnoreply@envato.com\nnoreply@consultio.com\n<img width=\"601\" height=\"706\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/contact-about1.png\" alt=\"\" srcset=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/contact-about1.png 601w, https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/contact-about1-255x300.png 255w\" sizes=\"(max-width: 601px) 100vw, 601px\">\n<h3>\n        Make a free consultation with our expert team to solve your prolems.</h3>\nFor any inquiries relating to my  Retail and Leadership Programs*\n\n<form action=\"/ctthemes/csuti/wp-admin/admin-ajax.php#wpcf7-f91-o1\" method=\"post\" novalidate=\"novalidate\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"91\">\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.1.6\">\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\">\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f91-o1\">\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\">\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\">\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail*\">\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone*\">\n<select name=\"your-subject\" aria-required=\"true\" aria-invalid=\"false\">\n<option value=\"Subject\">Subject</option>\n<option value=\"Success fullfill\">Success fullfill</option>\n<option value=\"StartUp business\">StartUp business</option>\n<option value=\"Leadership work\">Leadership work</option>\n<option value=\"Business Growth\">Business Growth</option>\n</select>\n<button type=\"submit\">Consult today</button>\n</form>                                <a href=\"#\"><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-01.png\" alt=\"\"></a>\n<a href=\"#\"><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-02.png\" alt=\"\"></a>\n<a href=\"#\"><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-03.png\" alt=\"\"></a>\n<a href=\"#\"><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-04.png\" alt=\"\"></a>\n<a href=\"#\"><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/client-05.png\" alt=\"\"></a>','Contact','','inherit','closed','closed','','24-revision-v1','','','2021-04-15 03:31:47','2021-04-15 03:31:47','',24,'https://sa7717.dev34.info/?p=4412',0,'revision','',0),(4417,1,'2021-04-15 03:40:35','2021-04-15 03:40:35','<h3>\n                        Contact System Amusement Today                    \n            </h3>\n                    <h3>\n                Phone:            </h3>\n                509-326-1551 \n                    <h3>\n                Email:            </h3>\n                systemamusement@comcast.net\n                    <h3>\n                Hours:            </h3>\n                Mon - Sat: 8 am - 5 pm, <br>Sunday: CLOSED\n										<img width=\"2560\" height=\"1708\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-600x400.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our 50+ Years of Dedication to our Clients!                    \n            </h3>\n		<p>Your success is our success!</p>		\n                1\n                %\n                            Quality Equipment\n                1\n                %\n                            Attention to Detail\n                1\n                %\n                            Reliable Support\n                1\n                %\n                            Client Dedication','Contact','','inherit','closed','closed','','24-revision-v1','','','2021-04-15 03:40:35','2021-04-15 03:40:35','',24,'https://sa7717.dev34.info/?p=4417',0,'revision','',0),(4415,1,'2021-04-15 03:40:35','2021-04-15 03:40:35','<h3>\n                Hours:            </h3>\n                Mon - Sat: 8 am - 5 pm, <br>Sunday: CLOSED\n                    <h3>\n                Phone:            </h3>\n                509-326-1551 \n                    <h3>\n                Email:            </h3>\n                systemamusement@comcast.net\n	    <h3>\n                        Contact System Amusement Today                    \n            </h3>\n										<img width=\"2560\" height=\"1708\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-600x400.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />','Contact','','inherit','closed','closed','','24-revision-v1','','','2021-04-15 03:40:35','2021-04-15 03:40:35','',24,'https://sa7717.dev34.info/?p=4415',0,'revision','',0),(4416,1,'2021-04-15 03:40:35','2021-04-15 03:40:35','<h3>\n                Hours:            </h3>\n                Mon - Sat: 8 am - 5 pm, <br>Sunday: CLOSED\n                    <h3>\n                Phone:            </h3>\n                509-326-1551 \n                    <h3>\n                Email:            </h3>\n                systemamusement@comcast.net\n	    <h3>\n                        Contact System Amusement Today                    \n            </h3>\n										<img width=\"2560\" height=\"1708\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-600x400.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />','Contact','','inherit','closed','closed','','24-revision-v1','','','2021-04-15 03:40:35','2021-04-15 03:40:35','',24,'https://sa7717.dev34.info/?p=4416',0,'revision','',0),(4419,1,'2021-04-28 20:00:57','2021-04-28 20:00:57','','woocommerce-placeholder','','inherit','open','closed','','woocommerce-placeholder-2','','','2021-04-28 20:00:57','2021-04-28 20:00:57','',0,'https://sa7717.dev34.info/wp-content/uploads/2021/04/woocommerce-placeholder.png',0,'attachment','image/png',0),(4420,1,'2021-04-28 20:04:46','2021-04-28 20:04:46','<h3>\n                        Contact System Amusement Today                    \n            </h3>\n                    <h3>\n                Phone:            </h3>\n                509-326-1551 \n                    <h3>\n                Email:            </h3>\n                systemamusement@comcast.net\n                    <h3>\n                Hours:            </h3>\n                Mon - Sat: 8 am - 5 pm, <br>Sunday: CLOSED\n										<img width=\"2560\" height=\"1708\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-600x400.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our 50+ Years of Dedication to our Clients!                    \n            </h3>\n		<p>Your success is our success!</p>		\n                1\n                %\n                            Quality Equipment\n                1\n                %\n                            Attention to Detail\n                1\n                %\n                            Reliable Support\n                1\n                %\n                            Client Dedication','Contact','','inherit','closed','closed','','24-revision-v1','','','2021-04-28 20:04:46','2021-04-28 20:04:46','',24,'https://sa7717.dev34.info/?p=4420',0,'revision','',0),(4421,1,'2021-04-28 20:04:46','2021-04-28 20:04:46','<h3>\n                        Contact System Amusement Today                    \n            </h3>\n                    <h3>\n                Phone:            </h3>\n                509-326-1551 \n                    <h3>\n                Email:            </h3>\n                systemamusement@comcast.net\n                    <h3>\n                Hours:            </h3>\n                Mon - Sat: 8 am - 5 pm, <br>Sunday: CLOSED\n										<img width=\"2560\" height=\"1708\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-600x400.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our 50+ Years of Dedication to our Clients!                    \n            </h3>\n		<p>Your success is our success!</p>		\n                1\n                %\n                            Quality Equipment\n                1\n                %\n                            Attention to Detail\n                1\n                %\n                            Reliable Support\n                1\n                %\n                            Client Dedication','Contact','','inherit','closed','closed','','24-revision-v1','','','2021-04-28 20:04:46','2021-04-28 20:04:46','',24,'https://sa7717.dev34.info/?p=4421',0,'revision','',0),(4422,1,'2021-04-28 20:04:47','2021-04-28 20:04:47','<h3>\n                        Contact System Amusement Today                    \n            </h3>\n                    <h3>\n                Phone:            </h3>\n                509-326-1551 \n                    <h3>\n                Email:            </h3>\n                systemamusement@comcast.net\n                    <h3>\n                Hours:            </h3>\n                Mon - Sat: 8 am - 5 pm, <br>Sunday: CLOSED\n															<img width=\"2560\" height=\"1708\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-600x400.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our 50+ Years of Dedication to our Clients!                    \n            </h3>\n		<p>Your success is our success!</p>		\n                1\n                %\n                            Quality Equipment\n                1\n                %\n                            Attention to Detail\n                1\n                %\n                            Reliable Support\n                1\n                %\n                            Client Dedication','Contact','','inherit','closed','closed','','24-revision-v1','','','2021-04-28 20:04:47','2021-04-28 20:04:47','',24,'https://sa7717.dev34.info/?p=4422',0,'revision','',0),(4427,1,'2021-04-28 20:56:51','2021-04-28 20:56:51','<h3>\n        We’re a global stakeholder relations and partnership building consultancy.    </h3>\n		Collaborate Consulting exists to find the place where to being seemingly disparate interests meet. From that point of the connection, we create platforms.We bring more than 24 years’ senior experience forging of\ncollaborations across government.		\n	            		Praesent feugiat sem mattis.	            	\n	            		A wonderful serenity.	            	\n	            		Premium services for you.	            	\n	            		Set a link back to photo.	            	\n		Call to ask <a href=\"#\">any question</a>  540-325-1523		\n										<img width=\"350\" height=\"1\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/about-gap.png\" alt=\"\" srcset=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/about-gap.png 350w, https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/about-gap-300x1.png 300w, https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/about-gap-150x1.png 150w, https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/about-gap-250x1.png 250w\" sizes=\"(max-width: 350px) 100vw, 350px\" />											\n        	<img width=\"95\" height=\"85\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/signature.png\" alt=\"\" />        \n    	<h3>Natalia Duke</h3>\n    	(Chairman and founder)\n										<img width=\"558\" height=\"631\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/about1.png\" alt=\"\" srcset=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/about1.png 558w, https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/about1-265x300.png 265w\" sizes=\"(max-width: 558px) 100vw, 558px\" />											\n            Want to know more about us?\n            Just download brochure...\n            <a href=\"#\">\n                                                                    Download Brochure            </a>\n	    <h3>\n        We position our clients at the forefront of their field by advanced services.    </h3>\n		We bring more than 20 years’ senior experience forging\ncollaborations across government, private sector and\ninternational forums.		\n                                <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/theme-20-450x450.jpg\" width=\"450\" height=\"450\" alt=\"theme-20\" title=\"theme-20\" />                            \n                                                                    <h3>Counsel Services</h3>\n                                                                            <h3>Counsel Services</h3>\n                                            We can provide you business with house counsel services for a monthly fee.                                        \n                                            <a href=\"https://demo.casethemes.net/consultio-tax/service/counsel-services/\">\n                                                Read more                                            </a>\n                                <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/theme-22-450x450.jpg\" width=\"450\" height=\"450\" alt=\"theme-22\" title=\"theme-22\" />                            \n                                                                    <h3>Securitization Law</h3>\n                                                                            <h3>Securitization Law</h3>\n                                            We can provide you business with house counsel services for a monthly fee.                                        \n                                            <a href=\"https://demo.casethemes.net/consultio-tax/service/securitization-law/\">\n                                                Read more                                            </a>\n                                <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/theme-21-450x450.jpg\" width=\"450\" height=\"450\" alt=\"theme-21\" title=\"theme-21\" />                            \n                                                                    <h3>Commertial Law</h3>\n                                                                            <h3>Commertial Law</h3>\n                                            We can provide you business with house counsel services for a monthly fee.                                        \n                                            <a href=\"https://demo.casethemes.net/consultio-tax/service/commertial-law/\">\n                                                Read more                                            </a>\n                                <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/theme-18-450x450.jpg\" width=\"450\" height=\"450\" alt=\"theme-18\" title=\"theme-18\" />                            \n                                                                    <h3>Succession Planning</h3>\n                                                                            <h3>Succession Planning</h3>\n                                            We can provide you business with house counsel services for a monthly fee.                                        \n                                            <a href=\"https://demo.casethemes.net/consultio-tax/service/succession-planning/\">\n                                                Read more                                            </a>\n	    <h3>\n        Consultio is a professional consulting company    </h3>\n		At vero eos et accusamus et iusto odio digni goiku ssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. 		\n			Start		\n								<h3>2nd Feb, 2018</h3>\n								Exhibition Planning &amp; Exhibition Management\n								<h3>21st Jul, 2018</h3>\n								Growth internationallyfirst half of the 2018s\n								<h3>19th Aug, 2018</h3>\n								The purpose of the business plan\n								<h3>2nd Jan, 2019</h3>\n								Focus business history on what matters to planning\n								<h3>22nd Sep, 2019</h3>\n								History to Unite and Inspire People\n								<h3>12th Jan, 2018</h3>\n								Establishment of Constrio\n								<h3>8th Jul, 2018</h3>\n								Registered as a construction company\n								<h3>18th Aug, 2018</h3>\n								Construction bought the Greek company Delta\n								<h3>27th Sep, 2018</h3>\n								For lean business plans, operational plans, and strategic plans\n								<h3>8th Jul, 2019</h3>\n								Award winner\n			<img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/theme-15-150x150.jpg\" width=\"150\" height=\"150\" alt=\"theme-15\" title=\"theme-15\" />		\n	    <h3>\n        We have many reviews from our satisfied clients.    </h3>\n                                <i>”</i>\n                                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/testimonial-07.jpg\" width=\"130\" height=\"130\" alt=\"testimonial-07\" title=\"testimonial-07\" />                                    \n                                    We also bring a strong interest in coaching and capability building, with an emphasis on emotional.\n                                    <h3>    \n                                        Kathleen Smith                                    </h3>\n                                    Senior Director\n                                <i>”</i>\n                                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/testimonial-08.jpg\" width=\"130\" height=\"130\" alt=\"testimonial-08\" title=\"testimonial-08\" />                                    \n                                    I love that moment when we find the connections between organisations and envisage the initiative or platform.\n                                    <h3>    \n                                        Van Hunter                                    </h3>\n                                    Senior Director\n                                <i>”</i>\n                                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/testimonial-09.jpg\" width=\"130\" height=\"130\" alt=\"testimonial-09\" title=\"testimonial-09\" />                                    \n                                    He was great in planting the seed and allowing the group to transition into a collaborative discussion pertaining.\n                                    <h3>    \n                                        Macquarie Telecom                                    </h3>\n                                    Leadership Group\n                                <i>”</i>\n                                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/testimonial-06.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-06\" title=\"testimonial-06\" />                                    \n                                    We also bring a strong interest in coaching and capability building, with an emphasis on emotional.\n                                    <h3>    \n                                        Fred L Smith                                     </h3>\n                                    Senior Director\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','About','','inherit','closed','closed','','26-revision-v1','','','2021-04-28 20:56:51','2021-04-28 20:56:51','',26,'https://sa7717.dev34.info/?p=4427',0,'revision','',0);
INSERT INTO `wp9s_posts` VALUES (4424,1,'2021-04-28 20:10:52','2021-04-28 20:10:52','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        Entertainment Solutions for Every Business!                    \n            </h3>\n		<p style=\"text-align: center;\">System Amusement is your partner in providing top of the line entertainment and activities to your customers. We provide complete Keep-filled services and provide a Fully maintained solution for your business. Provide the very best entertainment and activities at a fraction of the cost!</p>[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Pinball Machines                    \n            </h3>\n		<p>Pinball is a type of arcade game in which a player uses paddles (called flippers) to manipulate one or more balls inside a pinball machine. A pinball machine is a glass-covered cabinet containing a play field populated with lights, targets, bumpers, ramps, and various other objects depending on its design. The primary objective of the game is to score as many points as possible by hitting targets and making various shots with the flippers, before all balls &#8220;drain&#8221; at an exit usually situated at the bottom of the play field.</p>		\n										<img width=\"640\" height=\"428\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-1024x684.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-1024x684.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-300x200.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-768x513.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-1536x1025.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-2048x1367.jpeg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-600x401.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our 50+ Years of Dedication to our Clients!                    \n            </h3>\n		<p>Your success is our success!</p>		\n                1\n                %\n                            Quality Equipment\n                1\n                %\n                            Attention to Detail\n                1\n                %\n                            Reliable Support\n                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Learn About Our Pool League, and Get Signed Up Today!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-04-28 20:10:52','2021-04-28 20:10:52','',3193,'https://sa7717.dev34.info/?p=4424',0,'revision','',0),(4425,1,'2021-04-28 20:10:52','2021-04-28 20:10:52','[rev_slider alias=\"tax-consulting\"][/rev_slider]		\n            Ready to discuss taking your business to the next level?                                \n	    <h3>\n                        Contact us today for a free consultation!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Contact Us Today\n					</a>\n            Our Equipment Lineup                                \n	    <h3>\n                        Entertainment Solutions for Every Business!                    \n            </h3>\n		<p style=\"text-align: center;\">System Amusement is your partner in providing top of the line entertainment and activities to your customers. We provide complete Keep-filled services and provide a Fully maintained solution for your business. Provide the very best entertainment and activities at a fraction of the cost!</p>[ess_grid alias=\"home grid 1\"]		\n	    <h3>\n                        Pinball Machines                    \n            </h3>\n		<p>Pinball is a type of arcade game in which a player uses paddles (called flippers) to manipulate one or more balls inside a pinball machine. A pinball machine is a glass-covered cabinet containing a play field populated with lights, targets, bumpers, ramps, and various other objects depending on its design. The primary objective of the game is to score as many points as possible by hitting targets and making various shots with the flippers, before all balls &#8220;drain&#8221; at an exit usually situated at the bottom of the play field.</p>		\n										<img width=\"640\" height=\"428\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-1024x684.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-1024x684.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-300x200.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-768x513.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-1536x1025.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-2048x1367.jpeg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Munsters-LE-Details-19-600x401.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/young-couple-playing-together-pool-in-bar-96FRQW7-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Pool                    \n            </h3>\n		<p>Everyone knows pool. It is the perfect game and attraction for people of all skill levels to enjoy. Who hasn&#8217;t heard &#8220;Lets meet of with friends and play pool&#8221;. Players must use their skills in both attack and safety play, and can even challenge each other with trick shots. Pool tables are a perfect addition to any location to help bring new life into a business.</p>		\n	    <h3>\n                        Dart Boards                    \n            </h3>\n		<p>Darts is a throwing game in which small missiles are thrown at a target, which is called a dartboard. Aside from being a competitive sport, dart is also a pub and bar game which is played across the entire world. Simply put, Dart is one of the most popular activities and sport that almost anyone can enjoy. Contact System Amusement today to learn how we can add a best in class Dart board into your business today!</p>		\n										<img width=\"640\" height=\"349\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1024x559.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-300x164.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-768x419.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-1536x839.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-2048x1118.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/business-target-background-marketing-and-advertisi-BPQH5CA-600x328.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"427\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-1536x1024.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-2048x1365.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/friends-playing-toy-grabbing-game-P5BQUY9-600x400.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n	    <h3>\n                        Claw Machines                    \n            </h3>\n		<p>A Claw Machine is the well-known arcade toy with the adjustable arm that you have to steer and drop a claw to pick up a toy and carry it to the chute. System Amusement can supply a claw machine to your location that will bring a unique money making activity to your business.</p>		\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our 50+ Years of Dedication to our Clients!                    \n            </h3>\n		<p>Your success is our success!</p>		\n                1\n                %\n                            Quality Equipment\n                1\n                %\n                            Attention to Detail\n                1\n                %\n                            Reliable Support\n                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n										<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n            Featured Equipment                                \n	    <h3>\n                        Touch Tunes Audio and TV                    \n            </h3>\n		<p style=\"text-align: center;\">Contact us today to get your location setup with Touch Tunes!</p><p style=\"text-align: center;\"><strong><a style=\"color: #ffce00;\" href=\"tel:509-993-4655\">509-993-4655</a></strong></p>https://youtu.be/taZaMKbW5VQ		\n            Take your game to the next level and join our Dart League!                                \n	    <h3>\n                        Make New Friends, Sharpen Your Skills, and Play For Prizes!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>\n										<img width=\"640\" height=\"424\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1-.jpeg 696w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--300x199.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/dart-throwing-1--600x397.jpeg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"360\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1024x576.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-300x169.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-768x432.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-1536x864.jpeg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers-600x338.jpeg 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/Billiards-Triangle-hd-wallpapers.jpeg 1920w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n            Do you play pool?                                \n	    <h3>\n                        Learn About Our Pool League, and Get Signed Up Today!                    \n            </h3>\n			<a href=\"#\" role=\"button\">\n						Discover More\n					</a>','Home','','inherit','closed','closed','','3193-revision-v1','','','2021-04-28 20:10:52','2021-04-28 20:10:52','',3193,'https://sa7717.dev34.info/?p=4425',0,'revision','',0),(4428,1,'2021-04-28 20:56:51','2021-04-28 20:56:51','<h3>\n        We’re a global stakeholder relations and partnership building consultancy.    </h3>\n		Collaborate Consulting exists to find the place where to being seemingly disparate interests meet. From that point of the connection, we create platforms.We bring more than 24 years’ senior experience forging of\ncollaborations across government.		\n	            		Praesent feugiat sem mattis.	            	\n	            		A wonderful serenity.	            	\n	            		Premium services for you.	            	\n	            		Set a link back to photo.	            	\n		Call to ask <a href=\"#\">any question</a>  540-325-1523		\n										<img width=\"350\" height=\"1\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/about-gap.png\" alt=\"\" srcset=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/about-gap.png 350w, https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/about-gap-300x1.png 300w, https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/about-gap-150x1.png 150w, https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/about-gap-250x1.png 250w\" sizes=\"(max-width: 350px) 100vw, 350px\" />											\n        	<img width=\"95\" height=\"85\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/signature.png\" alt=\"\" />        \n    	<h3>Natalia Duke</h3>\n    	(Chairman and founder)\n										<img width=\"558\" height=\"631\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/about1.png\" alt=\"\" srcset=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/about1.png 558w, https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/about1-265x300.png 265w\" sizes=\"(max-width: 558px) 100vw, 558px\" />											\n            Want to know more about us?\n            Just download brochure...\n            <a href=\"#\">\n                                                                    Download Brochure            </a>\n	    <h3>\n        We position our clients at the forefront of their field by advanced services.    </h3>\n		We bring more than 20 years’ senior experience forging\ncollaborations across government, private sector and\ninternational forums.		\n                                <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/theme-20-450x450.jpg\" width=\"450\" height=\"450\" alt=\"theme-20\" title=\"theme-20\" />                            \n                                                                    <h3>Counsel Services</h3>\n                                                                            <h3>Counsel Services</h3>\n                                            We can provide you business with house counsel services for a monthly fee.                                        \n                                            <a href=\"https://demo.casethemes.net/consultio-tax/service/counsel-services/\">\n                                                Read more                                            </a>\n                                <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/theme-22-450x450.jpg\" width=\"450\" height=\"450\" alt=\"theme-22\" title=\"theme-22\" />                            \n                                                                    <h3>Securitization Law</h3>\n                                                                            <h3>Securitization Law</h3>\n                                            We can provide you business with house counsel services for a monthly fee.                                        \n                                            <a href=\"https://demo.casethemes.net/consultio-tax/service/securitization-law/\">\n                                                Read more                                            </a>\n                                <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/theme-21-450x450.jpg\" width=\"450\" height=\"450\" alt=\"theme-21\" title=\"theme-21\" />                            \n                                                                    <h3>Commertial Law</h3>\n                                                                            <h3>Commertial Law</h3>\n                                            We can provide you business with house counsel services for a monthly fee.                                        \n                                            <a href=\"https://demo.casethemes.net/consultio-tax/service/commertial-law/\">\n                                                Read more                                            </a>\n                                <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/theme-18-450x450.jpg\" width=\"450\" height=\"450\" alt=\"theme-18\" title=\"theme-18\" />                            \n                                                                    <h3>Succession Planning</h3>\n                                                                            <h3>Succession Planning</h3>\n                                            We can provide you business with house counsel services for a monthly fee.                                        \n                                            <a href=\"https://demo.casethemes.net/consultio-tax/service/succession-planning/\">\n                                                Read more                                            </a>\n	    <h3>\n        Consultio is a professional consulting company    </h3>\n		At vero eos et accusamus et iusto odio digni goiku ssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. 		\n			Start		\n								<h3>2nd Feb, 2018</h3>\n								Exhibition Planning &amp; Exhibition Management\n								<h3>21st Jul, 2018</h3>\n								Growth internationallyfirst half of the 2018s\n								<h3>19th Aug, 2018</h3>\n								The purpose of the business plan\n								<h3>2nd Jan, 2019</h3>\n								Focus business history on what matters to planning\n								<h3>22nd Sep, 2019</h3>\n								History to Unite and Inspire People\n								<h3>12th Jan, 2018</h3>\n								Establishment of Constrio\n								<h3>8th Jul, 2018</h3>\n								Registered as a construction company\n								<h3>18th Aug, 2018</h3>\n								Construction bought the Greek company Delta\n								<h3>27th Sep, 2018</h3>\n								For lean business plans, operational plans, and strategic plans\n								<h3>8th Jul, 2019</h3>\n								Award winner\n			<img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/theme-15-150x150.jpg\" width=\"150\" height=\"150\" alt=\"theme-15\" title=\"theme-15\" />		\n	    <h3>\n        We have many reviews from our satisfied clients.    </h3>\n                                <i>”</i>\n                                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/testimonial-07.jpg\" width=\"130\" height=\"130\" alt=\"testimonial-07\" title=\"testimonial-07\" />                                    \n                                    We also bring a strong interest in coaching and capability building, with an emphasis on emotional.\n                                    <h3>    \n                                        Kathleen Smith                                    </h3>\n                                    Senior Director\n                                <i>”</i>\n                                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/testimonial-08.jpg\" width=\"130\" height=\"130\" alt=\"testimonial-08\" title=\"testimonial-08\" />                                    \n                                    I love that moment when we find the connections between organisations and envisage the initiative or platform.\n                                    <h3>    \n                                        Van Hunter                                    </h3>\n                                    Senior Director\n                                <i>”</i>\n                                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/testimonial-09.jpg\" width=\"130\" height=\"130\" alt=\"testimonial-09\" title=\"testimonial-09\" />                                    \n                                    He was great in planting the seed and allowing the group to transition into a collaborative discussion pertaining.\n                                    <h3>    \n                                        Macquarie Telecom                                    </h3>\n                                    Leadership Group\n                                <i>”</i>\n                                        <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/testimonial-06.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-06\" title=\"testimonial-06\" />                                    \n                                    We also bring a strong interest in coaching and capability building, with an emphasis on emotional.\n                                    <h3>    \n                                        Fred L Smith                                     </h3>\n                                    Senior Director\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','About','','inherit','closed','closed','','26-revision-v1','','','2021-04-28 20:56:51','2021-04-28 20:56:51','',26,'https://sa7717.dev34.info/?p=4428',0,'revision','',0),(4431,1,'2021-04-28 20:57:37','2021-04-28 20:57:37','<h3>\n                        Available Machines For Sale                    \n            </h3>\n		<p>If you are interested in any of the below machines, please contact the System Amusement team to inquire. We look forward to speaking with you soon!</p><h5><strong>Call today at: </strong><a href=\"tel:509-993-4655\"><strong>509-993-4655</strong></a></h5>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Munsters Pinball Machine</h3><p>Like new condition, with several new parts.\n</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Munsters Pinball Machine</h3><p>Like new condition, with several new parts.\n</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Munsters Pinball Machine</h3><p>Like new condition, with several new parts.\n</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Munsters Pinball Machine</h3><p>Like new condition, with several new parts.\n</p>		\n		We bring more than 24 years’ senior experience forging of\ncollaborations across government.		\n	            		Praesent feugiat sem mattis.	            	\n	            		A wonderful serenity.	            	\n	            		Premium services for you.	            	\n	            		Set a link back to photo.	            	\n		Call to ask <a href=\"#\">any question</a>  540-325-1523		\n															<img width=\"350\" height=\"1\" src=\"https://sa7717.dev34.info/wp-content/uploads/2019/12/about-gap.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2019/12/about-gap.png 350w, https://sa7717.dev34.info/wp-content/uploads/2019/12/about-gap-300x1.png 300w, https://sa7717.dev34.info/wp-content/uploads/2019/12/about-gap-150x1.png 150w, https://sa7717.dev34.info/wp-content/uploads/2019/12/about-gap-250x1.png 250w\" sizes=\"(max-width: 350px) 100vw, 350px\" />															\n        	<img width=\"95\" height=\"85\" src=\"https://sa7717.dev34.info/wp-content/uploads/2019/12/signature.png\" alt=\"\" />        \n    	<h3>Natalia Duke</h3>\n    	(Chairman and founder)\n            Want to know more about us?\n            Just download brochure...\n            <a href=\"#\">\n                                                                    Download Brochure            </a>','About','','inherit','closed','closed','','26-revision-v1','','','2021-04-28 20:57:37','2021-04-28 20:57:37','',26,'https://sa7717.dev34.info/?p=4431',0,'revision','',0),(4432,1,'2021-04-28 20:57:37','2021-04-28 20:57:37','<h3>\n                        Available Machines For Sale                    \n            </h3>\n		<p>If you are interested in any of the below machines, please contact the System Amusement team to inquire. We look forward to speaking with you soon!</p><h5><strong>Call today at: </strong><a href=\"tel:509-993-4655\"><strong>509-993-4655</strong></a></h5>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Munsters Pinball Machine</h3><p>Like new condition, with several new parts.\n</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Munsters Pinball Machine</h3><p>Like new condition, with several new parts.\n</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Munsters Pinball Machine</h3><p>Like new condition, with several new parts.\n</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Munsters Pinball Machine</h3><p>Like new condition, with several new parts.\n</p>		\n		We bring more than 24 years’ senior experience forging of\ncollaborations across government.		\n	            		Praesent feugiat sem mattis.	            	\n	            		A wonderful serenity.	            	\n	            		Premium services for you.	            	\n	            		Set a link back to photo.	            	\n		Call to ask <a href=\"#\">any question</a>  540-325-1523		\n															<img width=\"350\" height=\"1\" src=\"https://sa7717.dev34.info/wp-content/uploads/2019/12/about-gap.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2019/12/about-gap.png 350w, https://sa7717.dev34.info/wp-content/uploads/2019/12/about-gap-300x1.png 300w, https://sa7717.dev34.info/wp-content/uploads/2019/12/about-gap-150x1.png 150w, https://sa7717.dev34.info/wp-content/uploads/2019/12/about-gap-250x1.png 250w\" sizes=\"(max-width: 350px) 100vw, 350px\" />															\n        	<img width=\"95\" height=\"85\" src=\"https://sa7717.dev34.info/wp-content/uploads/2019/12/signature.png\" alt=\"\" />        \n    	<h3>Natalia Duke</h3>\n    	(Chairman and founder)\n            Want to know more about us?\n            Just download brochure...\n            <a href=\"#\">\n                                                                    Download Brochure            </a>','About','','inherit','closed','closed','','26-revision-v1','','','2021-04-28 20:57:37','2021-04-28 20:57:37','',26,'https://sa7717.dev34.info/?p=4432',0,'revision','',0),(4433,1,'2021-04-28 21:00:16','2021-04-28 21:00:16','<h3>\n                        Available Machines For Sale                    \n            </h3>\n		<p>If you are interested in any of the below machines, please contact the System Amusement team to inquire. We look forward to speaking with you soon!</p><h5><strong>Call today at: </strong><a href=\"tel:509-993-4655\"><strong>509-993-4655</strong></a></h5>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Munsters Pinball Machine</h3><p>Like new condition, with several new parts.\n</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Munsters Pinball Machine</h3><p>Like new condition, with several new parts.\n</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Munsters Pinball Machine</h3><p>Like new condition, with several new parts.\n</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Munsters Pinball Machine</h3><p>Like new condition, with several new parts.\n</p>		\n		We bring more than 24 years’ senior experience forging of\ncollaborations across government.		\n	            		Praesent feugiat sem mattis.	            	\n	            		A wonderful serenity.	            	\n	            		Premium services for you.	            	\n	            		Set a link back to photo.	            	\n		Call to ask <a href=\"#\">any question</a>  540-325-1523		\n															<img width=\"350\" height=\"1\" src=\"https://sa7717.dev34.info/wp-content/uploads/2019/12/about-gap.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2019/12/about-gap.png 350w, https://sa7717.dev34.info/wp-content/uploads/2019/12/about-gap-300x1.png 300w, https://sa7717.dev34.info/wp-content/uploads/2019/12/about-gap-150x1.png 150w, https://sa7717.dev34.info/wp-content/uploads/2019/12/about-gap-250x1.png 250w\" sizes=\"(max-width: 350px) 100vw, 350px\" />															\n        	<img width=\"95\" height=\"85\" src=\"https://sa7717.dev34.info/wp-content/uploads/2019/12/signature.png\" alt=\"\" />        \n    	<h3>Natalia Duke</h3>\n    	(Chairman and founder)\n            Want to know more about us?\n            Just download brochure...\n            <a href=\"#\">\n                                                                    Download Brochure            </a>','About','','inherit','closed','closed','','26-revision-v1','','','2021-04-28 21:00:16','2021-04-28 21:00:16','',26,'https://sa7717.dev34.info/?p=4433',0,'revision','',0),(4434,1,'2021-04-28 21:00:16','2021-04-28 21:00:16','<h3>\n                        Available Machines For Sale                    \n            </h3>\n		<p>If you are interested in any of the below machines, please contact the System Amusement team to inquire. We look forward to speaking with you soon!</p><h5><strong>Call today at: </strong><a href=\"tel:509-993-4655\"><strong>509-993-4655</strong></a></h5>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Munsters Pinball Machine</h3><p>Like new condition, with several new parts.\n</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Munsters Pinball Machine</h3><p>Like new condition, with several new parts.\n</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Munsters Pinball Machine</h3><p>Like new condition, with several new parts.\n</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Munsters Pinball Machine</h3><p>Like new condition, with several new parts.\n</p>		\n		We bring more than 24 years’ senior experience forging of\ncollaborations across government.		\n	            		Praesent feugiat sem mattis.	            	\n	            		A wonderful serenity.	            	\n	            		Premium services for you.	            	\n	            		Set a link back to photo.	            	\n		Call to ask <a href=\"#\">any question</a>  540-325-1523		\n															<img width=\"350\" height=\"1\" src=\"https://sa7717.dev34.info/wp-content/uploads/2019/12/about-gap.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2019/12/about-gap.png 350w, https://sa7717.dev34.info/wp-content/uploads/2019/12/about-gap-300x1.png 300w, https://sa7717.dev34.info/wp-content/uploads/2019/12/about-gap-150x1.png 150w, https://sa7717.dev34.info/wp-content/uploads/2019/12/about-gap-250x1.png 250w\" sizes=\"(max-width: 350px) 100vw, 350px\" />															\n        	<img width=\"95\" height=\"85\" src=\"https://sa7717.dev34.info/wp-content/uploads/2019/12/signature.png\" alt=\"\" />        \n    	<h3>Natalia Duke</h3>\n    	(Chairman and founder)\n            Want to know more about us?\n            Just download brochure...\n            <a href=\"#\">\n                                                                    Download Brochure            </a>','About','','inherit','closed','closed','','26-revision-v1','','','2021-04-28 21:00:16','2021-04-28 21:00:16','',26,'https://sa7717.dev34.info/?p=4434',0,'revision','',0),(4435,1,'2021-04-28 21:00:16','2021-04-28 21:00:16','<h3>\n                        Available Machines For Sale                    \n            </h3>\n		<p>If you are interested in any of the below machines, please contact the System Amusement team to inquire. We look forward to speaking with you soon!</p><h5><strong>Call today at: </strong><a href=\"tel:509-993-4655\"><strong>509-993-4655</strong></a></h5>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Munsters Pinball Machine</h3><p>Like new condition, with several new parts.\n</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Munsters Pinball Machine</h3><p>Like new condition, with several new parts.\n</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Munsters Pinball Machine</h3><p>Like new condition, with several new parts.\n</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Munsters Pinball Machine</h3><p>Like new condition, with several new parts.\n</p>		\n		We bring more than 24 years’ senior experience forging of\ncollaborations across government.		\n	            		Praesent feugiat sem mattis.	            	\n	            		A wonderful serenity.	            	\n	            		Premium services for you.	            	\n	            		Set a link back to photo.	            	\n		Call to ask <a href=\"#\">any question</a>  540-325-1523		\n															<img width=\"350\" height=\"1\" src=\"https://sa7717.dev34.info/wp-content/uploads/2019/12/about-gap.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2019/12/about-gap.png 350w, https://sa7717.dev34.info/wp-content/uploads/2019/12/about-gap-300x1.png 300w, https://sa7717.dev34.info/wp-content/uploads/2019/12/about-gap-150x1.png 150w, https://sa7717.dev34.info/wp-content/uploads/2019/12/about-gap-250x1.png 250w\" sizes=\"(max-width: 350px) 100vw, 350px\" />															\n        	<img width=\"95\" height=\"85\" src=\"https://sa7717.dev34.info/wp-content/uploads/2019/12/signature.png\" alt=\"\" />        \n    	<h3>Natalia Duke</h3>\n    	(Chairman and founder)\n            Want to know more about us?\n            Just download brochure...\n            <a href=\"#\">\n                                                                    Download Brochure            </a>','About','','inherit','closed','closed','','26-revision-v1','','','2021-04-28 21:00:16','2021-04-28 21:00:16','',26,'https://sa7717.dev34.info/?p=4435',0,'revision','',0),(4436,1,'2021-04-28 21:10:17','2021-04-28 21:10:17','<h3>\n                        Available Machines For Sale                    \n            </h3>\n		<p>If you are interested in any of the below machines, please contact the System Amusement team to inquire. We look forward to speaking with you soon!</p><h5><strong>Call today at: </strong><a href=\"tel:509-993-4655\"><strong>509-993-4655</strong></a></h5>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Munsters Pinball Machine</h3><p>Like new condition, with several new parts.\n</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Munsters Pinball Machine</h3><p>Like new condition, with several new parts.\n</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Munsters Pinball Machine</h3><p>Like new condition, with several new parts.\n</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Munsters Pinball Machine</h3><p>Like new condition, with several new parts.\n</p>		\n		We bring more than 24 years’ senior experience forging of\ncollaborations across government.		\n	            		Praesent feugiat sem mattis.	            	\n	            		A wonderful serenity.	            	\n	            		Premium services for you.	            	\n	            		Set a link back to photo.	            	\n		Call to ask <a href=\"#\">any question</a>  540-325-1523		\n															<img width=\"350\" height=\"1\" src=\"https://sa7717.dev34.info/wp-content/uploads/2019/12/about-gap.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2019/12/about-gap.png 350w, https://sa7717.dev34.info/wp-content/uploads/2019/12/about-gap-300x1.png 300w, https://sa7717.dev34.info/wp-content/uploads/2019/12/about-gap-150x1.png 150w, https://sa7717.dev34.info/wp-content/uploads/2019/12/about-gap-250x1.png 250w\" sizes=\"(max-width: 350px) 100vw, 350px\" />															\n        	<img width=\"95\" height=\"85\" src=\"https://sa7717.dev34.info/wp-content/uploads/2019/12/signature.png\" alt=\"\" />        \n    	<h3>Natalia Duke</h3>\n    	(Chairman and founder)\n            Want to know more about us?\n            Just download brochure...\n            <a href=\"#\">\n                                                                    Download Brochure            </a>','About','','inherit','closed','closed','','26-revision-v1','','','2021-04-28 21:10:17','2021-04-28 21:10:17','',26,'https://sa7717.dev34.info/?p=4436',0,'revision','',0),(4437,1,'2021-04-28 21:10:17','2021-04-28 21:10:17','<h3>\n                        Available Machines For Sale                    \n            </h3>\n		<p>If you are interested in any of the below machines, please contact the System Amusement team to inquire. We look forward to speaking with you soon!</p><h5><strong>Call today at: </strong><a href=\"tel:509-993-4655\"><strong>509-993-4655</strong></a></h5>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Munsters Pinball Machine</h3><p>Like new condition, with several new parts.\n</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Munsters Pinball Machine</h3><p>Like new condition, with several new parts.\n</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Munsters Pinball Machine</h3><p>Like new condition, with several new parts.\n</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Munsters Pinball Machine</h3><p>Like new condition, with several new parts.\n</p>		\n		We bring more than 24 years’ senior experience forging of\ncollaborations across government.		\n	            		Praesent feugiat sem mattis.	            	\n	            		A wonderful serenity.	            	\n	            		Premium services for you.	            	\n	            		Set a link back to photo.	            	\n		Call to ask <a href=\"#\">any question</a>  540-325-1523		\n															<img width=\"350\" height=\"1\" src=\"https://sa7717.dev34.info/wp-content/uploads/2019/12/about-gap.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2019/12/about-gap.png 350w, https://sa7717.dev34.info/wp-content/uploads/2019/12/about-gap-300x1.png 300w, https://sa7717.dev34.info/wp-content/uploads/2019/12/about-gap-150x1.png 150w, https://sa7717.dev34.info/wp-content/uploads/2019/12/about-gap-250x1.png 250w\" sizes=\"(max-width: 350px) 100vw, 350px\" />															\n        	<img width=\"95\" height=\"85\" src=\"https://sa7717.dev34.info/wp-content/uploads/2019/12/signature.png\" alt=\"\" />        \n    	<h3>Natalia Duke</h3>\n    	(Chairman and founder)\n            Want to know more about us?\n            Just download brochure...\n            <a href=\"#\">\n                                                                    Download Brochure            </a>','About','','inherit','closed','closed','','26-revision-v1','','','2021-04-28 21:10:17','2021-04-28 21:10:17','',26,'https://sa7717.dev34.info/?p=4437',0,'revision','',0),(4440,1,'2021-04-28 21:28:33','2021-04-28 21:28:33','<h3>\n                        Available Machines For Sale</h3>\nIf you are interested in any of the below machines, please contact the System Amusement team to inquire. We look forward to speaking with you soon!\n<h5><strong>Call today at: </strong><a href=\"tel:509-993-4655\"><strong>509-993-4655</strong></a></h5>\n<figure><img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" width=\"600\" height=\"600\"></figure>\n<h3>Munsters Pinball Machine</h3>\nLike new condition, with several new parts.\n<figure><img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" width=\"600\" height=\"600\"></figure>\n<h3>Munsters Pinball Machine</h3>\nLike new condition, with several new parts.\n<figure><img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" width=\"600\" height=\"600\"></figure>\n<h3>Munsters Pinball Machine</h3>\nLike new condition, with several new parts.\n<figure><img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" width=\"600\" height=\"600\"></figure>\n<h3>Munsters Pinball Machine</h3>\nLike new condition, with several new parts.\n\nInterested in this equipment?\nCall us today!\n<a href=\"tel:509-993-4655\">\n509-993-4655            </a>','Equipment For Sale','','inherit','closed','closed','','26-revision-v1','','','2021-04-28 21:28:33','2021-04-28 21:28:33','',26,'https://sa7717.dev34.info/?p=4440',0,'revision','',0),(4442,1,'2021-04-28 22:07:28','2021-04-28 22:07:28','Services\n	    <h3>\n                We position our clients at the forefront of their field by advancing an agenda.    </h3>\n		Easily apply to multiple jobs with one click! Quick Apply shows you recommended jobs based off your most recent search and allows you to apply to 25+ jobs in a matter of seconds!		\n                                    <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/theme-20-450x450.jpg\" width=\"450\" height=\"450\" alt=\"theme-20\" title=\"theme-20\" />                                \n                                                                            <h3>Counsel Services</h3>\n                                                                                    <h3>Counsel Services</h3>\n                                                We can provide you business with house counsel services for a monthly fee.                                            \n                                                <a href=\"https://demo.casethemes.net/consultio-tax/service/counsel-services/\">\n                                                    Read more                                                </a>\n                                    <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/theme-22-450x450.jpg\" width=\"450\" height=\"450\" alt=\"theme-22\" title=\"theme-22\" />                                \n                                                                            <h3>Securitization Law</h3>\n                                                                                    <h3>Securitization Law</h3>\n                                                We can provide you business with house counsel services for a monthly fee.                                            \n                                                <a href=\"https://demo.casethemes.net/consultio-tax/service/securitization-law/\">\n                                                    Read more                                                </a>\n                                    <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/theme-21-450x450.jpg\" width=\"450\" height=\"450\" alt=\"theme-21\" title=\"theme-21\" />                                \n                                                                            <h3>Commertial Law</h3>\n                                                                                    <h3>Commertial Law</h3>\n                                                We can provide you business with house counsel services for a monthly fee.                                            \n                                                <a href=\"https://demo.casethemes.net/consultio-tax/service/commertial-law/\">\n                                                    Read more                                                </a>\n                                    <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/theme-18-450x450.jpg\" width=\"450\" height=\"450\" alt=\"theme-18\" title=\"theme-18\" />                                \n                                                                            <h3>Succession Planning</h3>\n                                                                                    <h3>Succession Planning</h3>\n                                                We can provide you business with house counsel services for a monthly fee.                                            \n                                                <a href=\"https://demo.casethemes.net/consultio-tax/service/succession-planning/\">\n                                                    Read more                                                </a>\n                                    <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/theme-23-450x450.jpg\" width=\"450\" height=\"450\" alt=\"theme-23\" title=\"theme-23\" />                                \n                                                                            <h3>Legal Analytics</h3>\n                                                                                    <h3>Legal Analytics</h3>\n                                                We can provide you business with house counsel services for a monthly fee.                                            \n                                                <a href=\"https://demo.casethemes.net/consultio-tax/service/legal-analytics/\">\n                                                    Read more                                                </a>\n                                    <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/theme-17-450x450.jpg\" width=\"450\" height=\"450\" alt=\"theme-17\" title=\"theme-17\" />                                \n                                                                            <h3>Legal Assessment</h3>\n                                                                                    <h3>Legal Assessment</h3>\n                                                We can provide you business with house counsel services for a monthly fee.                                            \n                                                <a href=\"https://demo.casethemes.net/consultio-tax/service/legal-assessment/\">\n                                                    Read more                                                </a>\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Services v.2','','inherit','closed','closed','','409-revision-v1','','','2021-04-28 22:07:28','2021-04-28 22:07:28','',409,'https://sa7717.dev34.info/?p=4442',0,'revision','',0),(4451,1,'2021-04-28 23:01:27','2021-04-28 23:01:27','<h3>\n                        Our Services                    \n            </h3>\n		<p style=\"text-align: center;\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. </p><p style=\"text-align: center;\"><strong>Call now: <a href=\"tel:509-993-4655\">509-993-4655</a></strong></p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Pinball Machines</h3><p>We offer some of the most cutting edge and popular pinball machines you can have in your location. </p>		\n			<figure><img width=\"300\" height=\"320\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221-281x300.jpeg 281w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></figure><h3>ATM Machines</h3><p>This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!</p>		\n			<figure><img width=\"692\" height=\"848\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png 692w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-245x300.png 245w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-600x735.png 600w\" sizes=\"(max-width: 692px) 100vw, 692px\" /></figure><h3>Ski Ball</h3><p>Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.</p>		\n			<figure><img width=\"1080\" height=\"1080\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/darts.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/darts.jpeg 1080w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-300x300.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-1024x1024.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-150x150.jpeg 150w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-768x768.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-600x600.jpeg 600w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></figure><h3>Dart Boards</h3><p>System Amusement offers the best dart boards such as the Arachnid Bullshooter. Dart boards provide a classic game that everyone loves, yet our cutting edge equipment gives a modern and interactive twist.</p>		\n			<figure><img width=\"300\" height=\"320\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221-281x300.jpeg 281w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></figure><h3>ATM Machines</h3><p>This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!</p>		\n			<figure><img width=\"692\" height=\"848\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png 692w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-245x300.png 245w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-600x735.png 600w\" sizes=\"(max-width: 692px) 100vw, 692px\" /></figure><h3>Ski Ball</h3><p>Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.</p>','Services v.2','','inherit','closed','closed','','409-revision-v1','','','2021-04-28 23:01:27','2021-04-28 23:01:27','',409,'https://sa7717.dev34.info/?p=4451',0,'revision','',0),(4449,1,'2021-04-28 23:01:26','2021-04-28 23:01:26','<h3>\n                        Our Services                    \n            </h3>\n		<p style=\"text-align: center;\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. </p><p style=\"text-align: center;\"><strong>Call now: <a href=\"tel:509-993-4655\">509-993-4655</a></strong></p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Pinball Machines</h3><p>We offer some of the most cutting edge and popular pinball machines you can have in your location. </p>		\n			<figure><img width=\"300\" height=\"320\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221-281x300.jpeg 281w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></figure><h3>ATM Machines</h3><p>This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Pinball Machines</h3><p>We offer some of the most cutting edge and popular pinball machines you can have in your location. </p>','Services v.2','','inherit','closed','closed','','409-revision-v1','','','2021-04-28 23:01:26','2021-04-28 23:01:26','',409,'https://sa7717.dev34.info/?p=4449',0,'revision','',0),(4450,1,'2021-04-28 23:01:26','2021-04-28 23:01:26','<h3>\n                        Our Services                    \n            </h3>\n		<p style=\"text-align: center;\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. </p><p style=\"text-align: center;\"><strong>Call now: <a href=\"tel:509-993-4655\">509-993-4655</a></strong></p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Pinball Machines</h3><p>We offer some of the most cutting edge and popular pinball machines you can have in your location. </p>		\n			<figure><img width=\"300\" height=\"320\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221-281x300.jpeg 281w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></figure><h3>ATM Machines</h3><p>This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Pinball Machines</h3><p>We offer some of the most cutting edge and popular pinball machines you can have in your location. </p>','Services v.2','','inherit','closed','closed','','409-revision-v1','','','2021-04-28 23:01:26','2021-04-28 23:01:26','',409,'https://sa7717.dev34.info/?p=4450',0,'revision','',0),(4452,1,'2021-04-28 23:04:34','2021-04-28 23:04:34','<h3>\n                        Our Services                    \n            </h3>\n		<p style=\"text-align: center;\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. </p><p style=\"text-align: center;\"><strong>Call now: <a href=\"tel:509-993-4655\">509-993-4655</a></strong></p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Pinball Machines</h3><p>We offer some of the most cutting edge and popular pinball machines you can have in your location. </p>		\n			<figure><img width=\"300\" height=\"320\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221-281x300.jpeg 281w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></figure><h3>ATM Machines</h3><p>This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!</p>		\n			<figure><img width=\"692\" height=\"848\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png 692w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-245x300.png 245w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-600x735.png 600w\" sizes=\"(max-width: 692px) 100vw, 692px\" /></figure><h3>Ski Ball</h3><p>Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.</p>		\n			<figure><img width=\"1080\" height=\"1080\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/darts.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/darts.jpeg 1080w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-300x300.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-1024x1024.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-150x150.jpeg 150w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-768x768.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-600x600.jpeg 600w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></figure><h3>Dart Boards</h3><p>System Amusement offers the best dart boards such as the Arachnid Bullshooter. Dart boards provide a classic game that everyone loves, yet our cutting edge equipment gives a modern and interactive twist.</p>		\n			<figure><img width=\"300\" height=\"320\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221-281x300.jpeg 281w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></figure><h3>ATM Machines</h3><p>This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!</p>		\n			<figure><img width=\"692\" height=\"848\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png 692w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-245x300.png 245w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-600x735.png 600w\" sizes=\"(max-width: 692px) 100vw, 692px\" /></figure><h3>Ski Ball</h3><p>Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.</p>','Services v.2','','inherit','closed','closed','','409-revision-v1','','','2021-04-28 23:04:34','2021-04-28 23:04:34','',409,'https://sa7717.dev34.info/?p=4452',0,'revision','',0),(4453,1,'2021-04-28 23:04:35','2021-04-28 23:04:35','<h3>\n                        Our Services                    \n            </h3>\n		<p style=\"text-align: center;\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. </p><p style=\"text-align: center;\"><strong>Call now: <a href=\"tel:509-993-4655\">509-993-4655</a></strong></p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Pinball Machines</h3><p>We offer some of the most cutting edge and popular pinball machines you can have in your location. </p>		\n			<figure><img width=\"300\" height=\"320\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221-281x300.jpeg 281w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></figure><h3>ATM Machines</h3><p>This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!</p>		\n			<figure><img width=\"692\" height=\"848\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png 692w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-245x300.png 245w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-600x735.png 600w\" sizes=\"(max-width: 692px) 100vw, 692px\" /></figure><h3>Ski Ball</h3><p>Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.</p>		\n			<figure><img width=\"1080\" height=\"1080\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/darts.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/darts.jpeg 1080w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-300x300.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-1024x1024.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-150x150.jpeg 150w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-768x768.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-600x600.jpeg 600w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></figure><h3>Dart Boards</h3><p>System Amusement offers the best dart boards such as the Arachnid Bullshooter. Dart boards provide a classic game that everyone loves, yet our cutting edge equipment gives a modern and interactive twist.</p>		\n			<figure><img width=\"300\" height=\"320\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221-281x300.jpeg 281w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></figure><h3>ATM Machines</h3><p>This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!</p>		\n			<figure><img width=\"692\" height=\"848\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png 692w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-245x300.png 245w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-600x735.png 600w\" sizes=\"(max-width: 692px) 100vw, 692px\" /></figure><h3>Ski Ball</h3><p>Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.</p>','Services v.2','','inherit','closed','closed','','409-revision-v1','','','2021-04-28 23:04:35','2021-04-28 23:04:35','',409,'https://sa7717.dev34.info/?p=4453',0,'revision','',0),(4454,1,'2021-04-28 23:04:35','2021-04-28 23:04:35','<h3>\n                        Our Services                    \n            </h3>\n		<p style=\"text-align: center;\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. </p><p style=\"text-align: center;\"><strong>Call now: <a href=\"tel:509-993-4655\">509-993-4655</a></strong></p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Pinball Machines</h3><p>We offer some of the most cutting edge and popular pinball machines you can have in your location. </p>		\n			<figure><img width=\"300\" height=\"320\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221-281x300.jpeg 281w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></figure><h3>ATM Machines</h3><p>This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!</p>		\n			<figure><img width=\"692\" height=\"848\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png 692w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-245x300.png 245w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-600x735.png 600w\" sizes=\"(max-width: 692px) 100vw, 692px\" /></figure><h3>Ski Ball</h3><p>Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.</p>		\n			<figure><img width=\"1080\" height=\"1080\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/darts.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/darts.jpeg 1080w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-300x300.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-1024x1024.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-150x150.jpeg 150w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-768x768.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-600x600.jpeg 600w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></figure><h3>Dart Boards</h3><p>System Amusement offers the best dart boards such as the Arachnid Bullshooter. Dart boards provide a classic game that everyone loves, yet our cutting edge equipment gives a modern and interactive twist.</p>		\n			<figure><img width=\"1000\" height=\"1495\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody.png 1000w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-201x300.png 201w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-685x1024.png 685w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-768x1148.png 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-600x897.png 600w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></figure><h3>Pool Tables</h3><p>Pool tables are a must for successful bars. We offer quarter pool machines that will keep your customers excited and in your location for hours.</p>		\n			<figure><img width=\"1210\" height=\"1182\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM.png 1210w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-300x293.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-1024x1000.png 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-768x750.png 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-600x586.png 600w\" sizes=\"(max-width: 1210px) 100vw, 1210px\" /></figure><h3>Juke Boxes</h3><p>These have been a classic for literally decades. System Amusement carries the highest tech juke boxes in the industry. Contact us today to order yours</p>','Services v.2','','inherit','closed','closed','','409-revision-v1','','','2021-04-28 23:04:35','2021-04-28 23:04:35','',409,'https://sa7717.dev34.info/?p=4454',0,'revision','',0),(4455,1,'2021-04-28 23:04:59','2021-04-28 23:04:59','<h3>\n                        Our Services                    \n            </h3>\n		<p style=\"text-align: center;\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. </p><p style=\"text-align: center;\"><strong>Call now: <a href=\"tel:509-993-4655\">509-993-4655</a></strong></p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Pinball Machines</h3><p>We offer some of the most cutting edge and popular pinball machines you can have in your location. </p>		\n			<figure><img width=\"300\" height=\"320\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221-281x300.jpeg 281w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></figure><h3>ATM Machines</h3><p>This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!</p>		\n			<figure><img width=\"692\" height=\"848\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png 692w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-245x300.png 245w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-600x735.png 600w\" sizes=\"(max-width: 692px) 100vw, 692px\" /></figure><h3>Ski Ball</h3><p>Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.</p>		\n			<figure><img width=\"1080\" height=\"1080\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/darts.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/darts.jpeg 1080w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-300x300.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-1024x1024.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-150x150.jpeg 150w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-768x768.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-600x600.jpeg 600w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></figure><h3>Dart Boards</h3><p>System Amusement offers the best dart boards such as the Arachnid Bullshooter. Dart boards provide a classic game that everyone loves, yet our cutting edge equipment gives a modern and interactive twist.</p>		\n			<figure><img width=\"1000\" height=\"1495\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody.png 1000w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-201x300.png 201w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-685x1024.png 685w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-768x1148.png 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-600x897.png 600w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></figure><h3>Pool Tables</h3><p>Pool tables are a must for successful bars. We offer quarter pool machines that will keep your customers excited and in your location for hours.</p>		\n			<figure><img width=\"1210\" height=\"1182\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM.png 1210w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-300x293.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-1024x1000.png 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-768x750.png 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-600x586.png 600w\" sizes=\"(max-width: 1210px) 100vw, 1210px\" /></figure><h3>Juke Boxes</h3><p>These have been a classic for literally decades. System Amusement carries the highest tech juke boxes in the industry. Contact us today to order yours</p>','Services v.2','','inherit','closed','closed','','409-revision-v1','','','2021-04-28 23:04:59','2021-04-28 23:04:59','',409,'https://sa7717.dev34.info/?p=4455',0,'revision','',0),(4456,1,'2021-04-28 23:04:59','2021-04-28 23:04:59','<h3>\n                        Our Services                    \n            </h3>\n		<p style=\"text-align: center;\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. </p><p style=\"text-align: center;\"><strong>Call now: <a href=\"tel:509-993-4655\">509-993-4655</a></strong></p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Pinball Machines</h3><p>We offer some of the most cutting edge and popular pinball machines you can have in your location. </p>		\n			<figure><img width=\"300\" height=\"320\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221-281x300.jpeg 281w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></figure><h3>ATM Machines</h3><p>This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!</p>		\n			<figure><img width=\"692\" height=\"848\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png 692w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-245x300.png 245w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-600x735.png 600w\" sizes=\"(max-width: 692px) 100vw, 692px\" /></figure><h3>Ski Ball</h3><p>Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.</p>		\n			<figure><img width=\"1080\" height=\"1080\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/darts.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/darts.jpeg 1080w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-300x300.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-1024x1024.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-150x150.jpeg 150w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-768x768.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-600x600.jpeg 600w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></figure><h3>Dart Boards</h3><p>System Amusement offers the best dart boards such as the Arachnid Bullshooter. Dart boards provide a classic game that everyone loves, yet our cutting edge equipment gives a modern and interactive twist.</p>		\n			<figure><img width=\"1000\" height=\"1495\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody.png 1000w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-201x300.png 201w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-685x1024.png 685w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-768x1148.png 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-600x897.png 600w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></figure><h3>Pool Tables</h3><p>Pool tables are a must for successful bars. We offer quarter pool machines that will keep your customers excited and in your location for hours.</p>		\n			<figure><img width=\"1210\" height=\"1182\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM.png 1210w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-300x293.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-1024x1000.png 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-768x750.png 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-600x586.png 600w\" sizes=\"(max-width: 1210px) 100vw, 1210px\" /></figure><h3>Juke Boxes</h3><p>These have been a classic for literally decades. System Amusement carries the highest tech juke boxes in the industry. Contact us today to order yours</p>','Services v.2','','inherit','closed','closed','','409-revision-v1','','','2021-04-28 23:04:59','2021-04-28 23:04:59','',409,'https://sa7717.dev34.info/?p=4456',0,'revision','',0),(4462,1,'2021-04-28 23:09:53','2021-04-28 23:09:53','<h3>\n                        Our Services                    \n            </h3>\n		<p style=\"text-align: center;\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. </p><p style=\"text-align: center;\"><strong>Call now: <a href=\"tel:509-993-4655\">509-993-4655</a></strong></p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Pinball Machines</h3><p>We offer some of the most cutting edge and popular pinball machines you can have in your location. </p>		\n			<figure><img width=\"300\" height=\"320\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221-281x300.jpeg 281w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></figure><h3>ATM Machines</h3><p>This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!</p>		\n			<figure><img width=\"692\" height=\"848\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png 692w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-245x300.png 245w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-600x735.png 600w\" sizes=\"(max-width: 692px) 100vw, 692px\" /></figure><h3>Ski Ball</h3><p>Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.</p>		\n			<figure><img width=\"933\" height=\"1432\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee.jpeg 933w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-195x300.jpeg 195w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-667x1024.jpeg 667w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-768x1179.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-600x921.jpeg 600w\" sizes=\"(max-width: 933px) 100vw, 933px\" /></figure><h3>Games</h3><p>We have the most poplur bar games of all time like Buck Hunter and Golden Tee Golf. Get your location setup with these modern classics.</p>		\n			<figure><img width=\"1080\" height=\"1080\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/darts.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/darts.jpeg 1080w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-300x300.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-1024x1024.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-150x150.jpeg 150w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-768x768.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-600x600.jpeg 600w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></figure><h3>Dart Boards</h3><p>System Amusement offers the best dart boards such as the Arachnid Bullshooter. Dart boards provide a classic game that everyone loves, yet our cutting edge equipment gives a modern and interactive twist.</p>		\n			<figure><img width=\"1000\" height=\"1495\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody.png 1000w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-201x300.png 201w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-685x1024.png 685w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-768x1148.png 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-600x897.png 600w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></figure><h3>Pool Tables</h3><p>Pool tables are a must for successful bars. We offer quarter pool machines that will keep your customers excited and in your location for hours.</p>		\n			<figure><img width=\"352\" height=\"459\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717.jpg 352w, https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717-230x300.jpg 230w\" sizes=\"(max-width: 352px) 100vw, 352px\" /></figure><h3>Touch Tunes</h3><p>System Amusement proudly provides the Touch Tunes music system, that will bring the entertainment in your location to a whole new level!</p>		\n			<figure><img width=\"1210\" height=\"1182\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM.png 1210w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-300x293.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-1024x1000.png 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-768x750.png 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-600x586.png 600w\" sizes=\"(max-width: 1210px) 100vw, 1210px\" /></figure><h3>Juke Boxes</h3><p>These have been a classic for literally decades. System Amusement carries the highest tech juke boxes in the industry. Contact us today to order yours.</p>','Services v.2','','inherit','closed','closed','','409-revision-v1','','','2021-04-28 23:09:53','2021-04-28 23:09:53','',409,'https://sa7717.dev34.info/?p=4462',0,'revision','',0),(4457,1,'2021-04-28 23:05:00','2021-04-28 23:05:00','<h3>\n                        Our Services                    \n            </h3>\n		<p style=\"text-align: center;\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. </p><p style=\"text-align: center;\"><strong>Call now: <a href=\"tel:509-993-4655\">509-993-4655</a></strong></p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Pinball Machines</h3><p>We offer some of the most cutting edge and popular pinball machines you can have in your location. </p>		\n			<figure><img width=\"300\" height=\"320\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221-281x300.jpeg 281w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></figure><h3>ATM Machines</h3><p>This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!</p>		\n			<figure><img width=\"692\" height=\"848\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png 692w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-245x300.png 245w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-600x735.png 600w\" sizes=\"(max-width: 692px) 100vw, 692px\" /></figure><h3>Ski Ball</h3><p>Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.</p>		\n			<figure><img width=\"692\" height=\"848\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png 692w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-245x300.png 245w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-600x735.png 600w\" sizes=\"(max-width: 692px) 100vw, 692px\" /></figure><h3>Ski Ball</h3><p>Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.</p>		\n			<figure><img width=\"1080\" height=\"1080\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/darts.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/darts.jpeg 1080w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-300x300.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-1024x1024.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-150x150.jpeg 150w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-768x768.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-600x600.jpeg 600w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></figure><h3>Dart Boards</h3><p>System Amusement offers the best dart boards such as the Arachnid Bullshooter. Dart boards provide a classic game that everyone loves, yet our cutting edge equipment gives a modern and interactive twist.</p>		\n			<figure><img width=\"1000\" height=\"1495\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody.png 1000w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-201x300.png 201w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-685x1024.png 685w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-768x1148.png 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-600x897.png 600w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></figure><h3>Pool Tables</h3><p>Pool tables are a must for successful bars. We offer quarter pool machines that will keep your customers excited and in your location for hours.</p>		\n			<figure><img width=\"1210\" height=\"1182\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM.png 1210w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-300x293.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-1024x1000.png 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-768x750.png 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-600x586.png 600w\" sizes=\"(max-width: 1210px) 100vw, 1210px\" /></figure><h3>Juke Boxes</h3><p>These have been a classic for literally decades. System Amusement carries the highest tech juke boxes in the industry. Contact us today to order yours</p>		\n			<figure><img width=\"1210\" height=\"1182\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM.png 1210w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-300x293.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-1024x1000.png 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-768x750.png 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-600x586.png 600w\" sizes=\"(max-width: 1210px) 100vw, 1210px\" /></figure><h3>Juke Boxes</h3><p>These have been a classic for literally decades. System Amusement carries the highest tech juke boxes in the industry. Contact us today to order yours</p>','Services v.2','','inherit','closed','closed','','409-revision-v1','','','2021-04-28 23:05:00','2021-04-28 23:05:00','',409,'https://sa7717.dev34.info/?p=4457',0,'revision','',0),(4459,1,'2021-04-28 23:09:01','2021-04-28 23:09:01','','touch tunes 717','','inherit','open','closed','','touch-tunes-717','','','2021-04-28 23:09:01','2021-04-28 23:09:01','',409,'https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717.jpg',0,'attachment','image/jpeg',0),(4460,1,'2021-04-28 23:09:53','2021-04-28 23:09:53','<h3>\n                        Our Services                    \n            </h3>\n		<p style=\"text-align: center;\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. </p><p style=\"text-align: center;\"><strong>Call now: <a href=\"tel:509-993-4655\">509-993-4655</a></strong></p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Pinball Machines</h3><p>We offer some of the most cutting edge and popular pinball machines you can have in your location. </p>		\n			<figure><img width=\"300\" height=\"320\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221-281x300.jpeg 281w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></figure><h3>ATM Machines</h3><p>This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!</p>		\n			<figure><img width=\"692\" height=\"848\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png 692w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-245x300.png 245w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-600x735.png 600w\" sizes=\"(max-width: 692px) 100vw, 692px\" /></figure><h3>Ski Ball</h3><p>Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.</p>		\n			<figure><img width=\"692\" height=\"848\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png 692w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-245x300.png 245w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-600x735.png 600w\" sizes=\"(max-width: 692px) 100vw, 692px\" /></figure><h3>Ski Ball</h3><p>Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.</p>		\n			<figure><img width=\"1080\" height=\"1080\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/darts.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/darts.jpeg 1080w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-300x300.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-1024x1024.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-150x150.jpeg 150w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-768x768.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-600x600.jpeg 600w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></figure><h3>Dart Boards</h3><p>System Amusement offers the best dart boards such as the Arachnid Bullshooter. Dart boards provide a classic game that everyone loves, yet our cutting edge equipment gives a modern and interactive twist.</p>		\n			<figure><img width=\"1000\" height=\"1495\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody.png 1000w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-201x300.png 201w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-685x1024.png 685w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-768x1148.png 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-600x897.png 600w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></figure><h3>Pool Tables</h3><p>Pool tables are a must for successful bars. We offer quarter pool machines that will keep your customers excited and in your location for hours.</p>		\n			<figure><img width=\"1210\" height=\"1182\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM.png 1210w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-300x293.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-1024x1000.png 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-768x750.png 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-600x586.png 600w\" sizes=\"(max-width: 1210px) 100vw, 1210px\" /></figure><h3>Juke Boxes</h3><p>These have been a classic for literally decades. System Amusement carries the highest tech juke boxes in the industry. Contact us today to order yours</p>		\n			<figure><img width=\"1210\" height=\"1182\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM.png 1210w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-300x293.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-1024x1000.png 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-768x750.png 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-600x586.png 600w\" sizes=\"(max-width: 1210px) 100vw, 1210px\" /></figure><h3>Juke Boxes</h3><p>These have been a classic for literally decades. System Amusement carries the highest tech juke boxes in the industry. Contact us today to order yours</p>','Services v.2','','inherit','closed','closed','','409-revision-v1','','','2021-04-28 23:09:53','2021-04-28 23:09:53','',409,'https://sa7717.dev34.info/?p=4460',0,'revision','',0),(4461,1,'2021-04-28 23:09:53','2021-04-28 23:09:53','<h3>\n                        Our Services                    \n            </h3>\n		<p style=\"text-align: center;\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. </p><p style=\"text-align: center;\"><strong>Call now: <a href=\"tel:509-993-4655\">509-993-4655</a></strong></p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Pinball Machines</h3><p>We offer some of the most cutting edge and popular pinball machines you can have in your location. </p>		\n			<figure><img width=\"300\" height=\"320\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221-281x300.jpeg 281w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></figure><h3>ATM Machines</h3><p>This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!</p>		\n			<figure><img width=\"692\" height=\"848\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png 692w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-245x300.png 245w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-600x735.png 600w\" sizes=\"(max-width: 692px) 100vw, 692px\" /></figure><h3>Ski Ball</h3><p>Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.</p>		\n			<figure><img width=\"692\" height=\"848\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png 692w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-245x300.png 245w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-600x735.png 600w\" sizes=\"(max-width: 692px) 100vw, 692px\" /></figure><h3>Ski Ball</h3><p>Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.</p>		\n			<figure><img width=\"1080\" height=\"1080\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/darts.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/darts.jpeg 1080w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-300x300.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-1024x1024.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-150x150.jpeg 150w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-768x768.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-600x600.jpeg 600w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></figure><h3>Dart Boards</h3><p>System Amusement offers the best dart boards such as the Arachnid Bullshooter. Dart boards provide a classic game that everyone loves, yet our cutting edge equipment gives a modern and interactive twist.</p>		\n			<figure><img width=\"1000\" height=\"1495\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody.png 1000w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-201x300.png 201w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-685x1024.png 685w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-768x1148.png 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-600x897.png 600w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></figure><h3>Pool Tables</h3><p>Pool tables are a must for successful bars. We offer quarter pool machines that will keep your customers excited and in your location for hours.</p>		\n			<figure><img width=\"1210\" height=\"1182\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM.png 1210w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-300x293.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-1024x1000.png 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-768x750.png 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-600x586.png 600w\" sizes=\"(max-width: 1210px) 100vw, 1210px\" /></figure><h3>Juke Boxes</h3><p>These have been a classic for literally decades. System Amusement carries the highest tech juke boxes in the industry. Contact us today to order yours</p>		\n			<figure><img width=\"1210\" height=\"1182\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM.png 1210w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-300x293.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-1024x1000.png 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-768x750.png 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-600x586.png 600w\" sizes=\"(max-width: 1210px) 100vw, 1210px\" /></figure><h3>Juke Boxes</h3><p>These have been a classic for literally decades. System Amusement carries the highest tech juke boxes in the industry. Contact us today to order yours</p>','Services v.2','','inherit','closed','closed','','409-revision-v1','','','2021-04-28 23:09:53','2021-04-28 23:09:53','',409,'https://sa7717.dev34.info/?p=4461',0,'revision','',0),(4466,1,'2021-04-28 23:10:32','2021-04-28 23:10:32','<h3>\n                        Our Services                    \n            </h3>\n		<p style=\"text-align: center;\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. </p><p style=\"text-align: center;\"><strong>Call now: <a href=\"tel:509-993-4655\">509-993-4655</a></strong></p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Pinball Machines</h3><p>We offer some of the most cutting edge and popular pinball machines you can have in your location. </p>		\n			<figure><img width=\"300\" height=\"320\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221-281x300.jpeg 281w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></figure><h3>ATM Machines</h3><p>This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!</p>		\n			<figure><img width=\"692\" height=\"848\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png 692w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-245x300.png 245w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-600x735.png 600w\" sizes=\"(max-width: 692px) 100vw, 692px\" /></figure><h3>Ski Ball</h3><p>Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.</p>		\n			<figure><img width=\"933\" height=\"1432\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee.jpeg 933w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-195x300.jpeg 195w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-667x1024.jpeg 667w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-768x1179.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-600x921.jpeg 600w\" sizes=\"(max-width: 933px) 100vw, 933px\" /></figure><h3>Games</h3><p>We have the most poplur bar games of all time like Buck Hunter and Golden Tee Golf. Get your location setup with these modern classics.</p>		\n			<figure><img width=\"1080\" height=\"1080\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/darts.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/darts.jpeg 1080w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-300x300.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-1024x1024.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-150x150.jpeg 150w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-768x768.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-600x600.jpeg 600w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></figure><h3>Dart Boards</h3><p>System Amusement offers the best dart boards such as the Arachnid Bullshooter. Dart boards provide a classic game that everyone loves, yet our cutting edge equipment gives a modern and interactive twist.</p>		\n			<figure><img width=\"1000\" height=\"1495\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody.png 1000w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-201x300.png 201w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-685x1024.png 685w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-768x1148.png 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-600x897.png 600w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></figure><h3>Pool Tables</h3><p>Pool tables are a must for successful bars. We offer quarter pool machines that will keep your customers excited and in your location for hours.</p>		\n			<figure><img width=\"352\" height=\"459\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717.jpg 352w, https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717-230x300.jpg 230w\" sizes=\"(max-width: 352px) 100vw, 352px\" /></figure><h3>Touch Tunes</h3><p>System Amusement proudly provides the Touch Tunes music system, that will bring the entertainment in your location to a whole new level!</p>		\n			<figure><img width=\"1210\" height=\"1182\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM.png 1210w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-300x293.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-1024x1000.png 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-768x750.png 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-600x586.png 600w\" sizes=\"(max-width: 1210px) 100vw, 1210px\" /></figure><h3>Juke Boxes</h3><p>These have been a classic for literally decades. System Amusement carries the highest tech juke boxes in the industry. Contact us today to order yours.</p>		\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our 50+ Years of Dedication to our Clients!                    \n            </h3>\n		<p>Your success is our success!</p>		\n                1\n                %\n                            Quality Equipment\n                1\n                %\n                            Attention to Detail\n                1\n                %\n                            Reliable Support\n                1\n                %\n                            Client Dedication','Services v.2','','inherit','closed','closed','','409-revision-v1','','','2021-04-28 23:10:32','2021-04-28 23:10:32','',409,'https://sa7717.dev34.info/?p=4466',0,'revision','',0),(4464,1,'2021-04-28 23:10:30','2021-04-28 23:10:30','<h3>\n                        Our Services                    \n            </h3>\n		<p style=\"text-align: center;\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. </p><p style=\"text-align: center;\"><strong>Call now: <a href=\"tel:509-993-4655\">509-993-4655</a></strong></p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Pinball Machines</h3><p>We offer some of the most cutting edge and popular pinball machines you can have in your location. </p>		\n			<figure><img width=\"300\" height=\"320\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221-281x300.jpeg 281w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></figure><h3>ATM Machines</h3><p>This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!</p>		\n			<figure><img width=\"692\" height=\"848\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png 692w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-245x300.png 245w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-600x735.png 600w\" sizes=\"(max-width: 692px) 100vw, 692px\" /></figure><h3>Ski Ball</h3><p>Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.</p>		\n			<figure><img width=\"933\" height=\"1432\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee.jpeg 933w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-195x300.jpeg 195w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-667x1024.jpeg 667w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-768x1179.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-600x921.jpeg 600w\" sizes=\"(max-width: 933px) 100vw, 933px\" /></figure><h3>Games</h3><p>We have the most poplur bar games of all time like Buck Hunter and Golden Tee Golf. Get your location setup with these modern classics.</p>		\n			<figure><img width=\"1080\" height=\"1080\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/darts.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/darts.jpeg 1080w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-300x300.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-1024x1024.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-150x150.jpeg 150w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-768x768.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-600x600.jpeg 600w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></figure><h3>Dart Boards</h3><p>System Amusement offers the best dart boards such as the Arachnid Bullshooter. Dart boards provide a classic game that everyone loves, yet our cutting edge equipment gives a modern and interactive twist.</p>		\n			<figure><img width=\"1000\" height=\"1495\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody.png 1000w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-201x300.png 201w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-685x1024.png 685w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-768x1148.png 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-600x897.png 600w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></figure><h3>Pool Tables</h3><p>Pool tables are a must for successful bars. We offer quarter pool machines that will keep your customers excited and in your location for hours.</p>		\n			<figure><img width=\"352\" height=\"459\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717.jpg 352w, https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717-230x300.jpg 230w\" sizes=\"(max-width: 352px) 100vw, 352px\" /></figure><h3>Touch Tunes</h3><p>System Amusement proudly provides the Touch Tunes music system, that will bring the entertainment in your location to a whole new level!</p>		\n			<figure><img width=\"1210\" height=\"1182\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM.png 1210w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-300x293.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-1024x1000.png 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-768x750.png 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-600x586.png 600w\" sizes=\"(max-width: 1210px) 100vw, 1210px\" /></figure><h3>Juke Boxes</h3><p>These have been a classic for literally decades. System Amusement carries the highest tech juke boxes in the industry. Contact us today to order yours.</p>','Services v.2','','inherit','closed','closed','','409-revision-v1','','','2021-04-28 23:10:30','2021-04-28 23:10:30','',409,'https://sa7717.dev34.info/?p=4464',0,'revision','',0),(4465,1,'2021-04-28 23:10:30','2021-04-28 23:10:30','<h3>\n                        Our Services                    \n            </h3>\n		<p style=\"text-align: center;\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. </p><p style=\"text-align: center;\"><strong>Call now: <a href=\"tel:509-993-4655\">509-993-4655</a></strong></p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Pinball Machines</h3><p>We offer some of the most cutting edge and popular pinball machines you can have in your location. </p>		\n			<figure><img width=\"300\" height=\"320\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221-281x300.jpeg 281w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></figure><h3>ATM Machines</h3><p>This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!</p>		\n			<figure><img width=\"692\" height=\"848\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png 692w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-245x300.png 245w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-600x735.png 600w\" sizes=\"(max-width: 692px) 100vw, 692px\" /></figure><h3>Ski Ball</h3><p>Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.</p>		\n			<figure><img width=\"933\" height=\"1432\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee.jpeg 933w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-195x300.jpeg 195w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-667x1024.jpeg 667w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-768x1179.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-600x921.jpeg 600w\" sizes=\"(max-width: 933px) 100vw, 933px\" /></figure><h3>Games</h3><p>We have the most poplur bar games of all time like Buck Hunter and Golden Tee Golf. Get your location setup with these modern classics.</p>		\n			<figure><img width=\"1080\" height=\"1080\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/darts.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/darts.jpeg 1080w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-300x300.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-1024x1024.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-150x150.jpeg 150w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-768x768.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-600x600.jpeg 600w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></figure><h3>Dart Boards</h3><p>System Amusement offers the best dart boards such as the Arachnid Bullshooter. Dart boards provide a classic game that everyone loves, yet our cutting edge equipment gives a modern and interactive twist.</p>		\n			<figure><img width=\"1000\" height=\"1495\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody.png 1000w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-201x300.png 201w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-685x1024.png 685w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-768x1148.png 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-600x897.png 600w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></figure><h3>Pool Tables</h3><p>Pool tables are a must for successful bars. We offer quarter pool machines that will keep your customers excited and in your location for hours.</p>		\n			<figure><img width=\"352\" height=\"459\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717.jpg 352w, https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717-230x300.jpg 230w\" sizes=\"(max-width: 352px) 100vw, 352px\" /></figure><h3>Touch Tunes</h3><p>System Amusement proudly provides the Touch Tunes music system, that will bring the entertainment in your location to a whole new level!</p>		\n			<figure><img width=\"1210\" height=\"1182\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM.png 1210w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-300x293.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-1024x1000.png 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-768x750.png 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-600x586.png 600w\" sizes=\"(max-width: 1210px) 100vw, 1210px\" /></figure><h3>Juke Boxes</h3><p>These have been a classic for literally decades. System Amusement carries the highest tech juke boxes in the industry. Contact us today to order yours.</p>','Services v.2','','inherit','closed','closed','','409-revision-v1','','','2021-04-28 23:10:30','2021-04-28 23:10:30','',409,'https://sa7717.dev34.info/?p=4465',0,'revision','',0),(4474,1,'2021-04-28 23:12:35','2021-04-28 23:12:35','<h3>\n                        Our Services                    \n            </h3>\n		<p style=\"text-align: center;\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. </p><p style=\"text-align: center;\"><strong>Call now: <a href=\"tel:509-993-4655\">509-993-4655</a></strong></p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Pinball Machines</h3><p>We offer some of the most cutting edge and popular pinball machines you can have in your location. </p>		\n			<figure><img width=\"300\" height=\"320\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221-281x300.jpeg 281w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></figure><h3>ATM Machines</h3><p>This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!</p>		\n			<figure><img width=\"692\" height=\"848\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png 692w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-245x300.png 245w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-600x735.png 600w\" sizes=\"(max-width: 692px) 100vw, 692px\" /></figure><h3>Ski Ball</h3><p>Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.</p>		\n			<figure><img width=\"933\" height=\"1432\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee.jpeg 933w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-195x300.jpeg 195w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-667x1024.jpeg 667w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-768x1179.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-600x921.jpeg 600w\" sizes=\"(max-width: 933px) 100vw, 933px\" /></figure><h3>Games</h3><p>We have the most poplur bar games of all time like Buck Hunter and Golden Tee Golf. Get your location setup with these modern classics.</p>		\n			<figure><img width=\"1080\" height=\"1080\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/darts.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/darts.jpeg 1080w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-300x300.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-1024x1024.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-150x150.jpeg 150w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-768x768.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-600x600.jpeg 600w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></figure><h3>Dart Boards</h3><p>System Amusement offers the best dart boards such as the Arachnid Bullshooter. Dart boards provide a classic game that everyone loves, yet our cutting edge equipment gives a modern and interactive twist.</p>		\n			<figure><img width=\"578\" height=\"582\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-28-at-4.11.46-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-28-at-4.11.46-PM.png 578w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-28-at-4.11.46-PM-298x300.png 298w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-28-at-4.11.46-PM-150x150.png 150w\" sizes=\"(max-width: 578px) 100vw, 578px\" /></figure><h3>Pool Tables</h3><p>Pool tables are a must for successful bars. We offer quarter pool machines that will keep your customers excited and in your location for hours.</p>		\n			<figure><img width=\"352\" height=\"459\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717.jpg 352w, https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717-230x300.jpg 230w\" sizes=\"(max-width: 352px) 100vw, 352px\" /></figure><h3>Touch Tunes</h3><p>System Amusement proudly provides the Touch Tunes music system, that will bring the entertainment in your location to a whole new level!</p>		\n			<figure><img width=\"1210\" height=\"1182\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM.png 1210w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-300x293.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-1024x1000.png 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-768x750.png 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-600x586.png 600w\" sizes=\"(max-width: 1210px) 100vw, 1210px\" /></figure><h3>Juke Boxes</h3><p>These have been a classic for literally decades. System Amusement carries the highest tech juke boxes in the industry. Contact us today to order yours.</p>		\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our 50+ Years of Dedication to our Clients!                    \n            </h3>\n		<p>Your success is our success!</p>		\n                1\n                %\n                            Quality Equipment\n                1\n                %\n                            Attention to Detail\n                1\n                %\n                            Reliable Support\n                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n															<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />','Services v.2','','inherit','closed','closed','','409-revision-v1','','','2021-04-28 23:12:35','2021-04-28 23:12:35','',409,'https://sa7717.dev34.info/?p=4474',0,'revision','',0),(4470,1,'2021-04-28 23:11:02','2021-04-28 23:11:02','<h3>\n                        Our Services                    \n            </h3>\n		<p style=\"text-align: center;\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. </p><p style=\"text-align: center;\"><strong>Call now: <a href=\"tel:509-993-4655\">509-993-4655</a></strong></p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Pinball Machines</h3><p>We offer some of the most cutting edge and popular pinball machines you can have in your location. </p>		\n			<figure><img width=\"300\" height=\"320\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221-281x300.jpeg 281w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></figure><h3>ATM Machines</h3><p>This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!</p>		\n			<figure><img width=\"692\" height=\"848\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png 692w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-245x300.png 245w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-600x735.png 600w\" sizes=\"(max-width: 692px) 100vw, 692px\" /></figure><h3>Ski Ball</h3><p>Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.</p>		\n			<figure><img width=\"933\" height=\"1432\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee.jpeg 933w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-195x300.jpeg 195w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-667x1024.jpeg 667w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-768x1179.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-600x921.jpeg 600w\" sizes=\"(max-width: 933px) 100vw, 933px\" /></figure><h3>Games</h3><p>We have the most poplur bar games of all time like Buck Hunter and Golden Tee Golf. Get your location setup with these modern classics.</p>		\n			<figure><img width=\"1080\" height=\"1080\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/darts.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/darts.jpeg 1080w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-300x300.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-1024x1024.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-150x150.jpeg 150w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-768x768.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-600x600.jpeg 600w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></figure><h3>Dart Boards</h3><p>System Amusement offers the best dart boards such as the Arachnid Bullshooter. Dart boards provide a classic game that everyone loves, yet our cutting edge equipment gives a modern and interactive twist.</p>		\n			<figure><img width=\"1000\" height=\"1495\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody.png 1000w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-201x300.png 201w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-685x1024.png 685w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-768x1148.png 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-600x897.png 600w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></figure><h3>Pool Tables</h3><p>Pool tables are a must for successful bars. We offer quarter pool machines that will keep your customers excited and in your location for hours.</p>		\n			<figure><img width=\"352\" height=\"459\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717.jpg 352w, https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717-230x300.jpg 230w\" sizes=\"(max-width: 352px) 100vw, 352px\" /></figure><h3>Touch Tunes</h3><p>System Amusement proudly provides the Touch Tunes music system, that will bring the entertainment in your location to a whole new level!</p>		\n			<figure><img width=\"1210\" height=\"1182\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM.png 1210w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-300x293.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-1024x1000.png 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-768x750.png 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-600x586.png 600w\" sizes=\"(max-width: 1210px) 100vw, 1210px\" /></figure><h3>Juke Boxes</h3><p>These have been a classic for literally decades. System Amusement carries the highest tech juke boxes in the industry. Contact us today to order yours.</p>		\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our 50+ Years of Dedication to our Clients!                    \n            </h3>\n		<p>Your success is our success!</p>		\n                1\n                %\n                            Quality Equipment\n                1\n                %\n                            Attention to Detail\n                1\n                %\n                            Reliable Support\n                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n															<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />','Services v.2','','inherit','closed','closed','','409-revision-v1','','','2021-04-28 23:11:02','2021-04-28 23:11:02','',409,'https://sa7717.dev34.info/?p=4470',0,'revision','',0),(4468,1,'2021-04-28 23:11:01','2021-04-28 23:11:01','<h3>\n                        Our Services                    \n            </h3>\n		<p style=\"text-align: center;\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. </p><p style=\"text-align: center;\"><strong>Call now: <a href=\"tel:509-993-4655\">509-993-4655</a></strong></p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Pinball Machines</h3><p>We offer some of the most cutting edge and popular pinball machines you can have in your location. </p>		\n			<figure><img width=\"300\" height=\"320\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221-281x300.jpeg 281w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></figure><h3>ATM Machines</h3><p>This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!</p>		\n			<figure><img width=\"692\" height=\"848\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png 692w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-245x300.png 245w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-600x735.png 600w\" sizes=\"(max-width: 692px) 100vw, 692px\" /></figure><h3>Ski Ball</h3><p>Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.</p>		\n			<figure><img width=\"933\" height=\"1432\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee.jpeg 933w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-195x300.jpeg 195w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-667x1024.jpeg 667w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-768x1179.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-600x921.jpeg 600w\" sizes=\"(max-width: 933px) 100vw, 933px\" /></figure><h3>Games</h3><p>We have the most poplur bar games of all time like Buck Hunter and Golden Tee Golf. Get your location setup with these modern classics.</p>		\n			<figure><img width=\"1080\" height=\"1080\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/darts.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/darts.jpeg 1080w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-300x300.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-1024x1024.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-150x150.jpeg 150w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-768x768.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-600x600.jpeg 600w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></figure><h3>Dart Boards</h3><p>System Amusement offers the best dart boards such as the Arachnid Bullshooter. Dart boards provide a classic game that everyone loves, yet our cutting edge equipment gives a modern and interactive twist.</p>		\n			<figure><img width=\"1000\" height=\"1495\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody.png 1000w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-201x300.png 201w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-685x1024.png 685w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-768x1148.png 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-600x897.png 600w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></figure><h3>Pool Tables</h3><p>Pool tables are a must for successful bars. We offer quarter pool machines that will keep your customers excited and in your location for hours.</p>		\n			<figure><img width=\"352\" height=\"459\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717.jpg 352w, https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717-230x300.jpg 230w\" sizes=\"(max-width: 352px) 100vw, 352px\" /></figure><h3>Touch Tunes</h3><p>System Amusement proudly provides the Touch Tunes music system, that will bring the entertainment in your location to a whole new level!</p>		\n			<figure><img width=\"1210\" height=\"1182\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM.png 1210w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-300x293.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-1024x1000.png 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-768x750.png 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-600x586.png 600w\" sizes=\"(max-width: 1210px) 100vw, 1210px\" /></figure><h3>Juke Boxes</h3><p>These have been a classic for literally decades. System Amusement carries the highest tech juke boxes in the industry. Contact us today to order yours.</p>		\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our 50+ Years of Dedication to our Clients!                    \n            </h3>\n		<p>Your success is our success!</p>		\n                1\n                %\n                            Quality Equipment\n                1\n                %\n                            Attention to Detail\n                1\n                %\n                            Reliable Support\n                1\n                %\n                            Client Dedication','Services v.2','','inherit','closed','closed','','409-revision-v1','','','2021-04-28 23:11:01','2021-04-28 23:11:01','',409,'https://sa7717.dev34.info/?p=4468',0,'revision','',0),(4469,1,'2021-04-28 23:11:01','2021-04-28 23:11:01','<h3>\n                        Our Services                    \n            </h3>\n		<p style=\"text-align: center;\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. </p><p style=\"text-align: center;\"><strong>Call now: <a href=\"tel:509-993-4655\">509-993-4655</a></strong></p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Pinball Machines</h3><p>We offer some of the most cutting edge and popular pinball machines you can have in your location. </p>		\n			<figure><img width=\"300\" height=\"320\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221-281x300.jpeg 281w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></figure><h3>ATM Machines</h3><p>This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!</p>		\n			<figure><img width=\"692\" height=\"848\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png 692w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-245x300.png 245w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-600x735.png 600w\" sizes=\"(max-width: 692px) 100vw, 692px\" /></figure><h3>Ski Ball</h3><p>Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.</p>		\n			<figure><img width=\"933\" height=\"1432\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee.jpeg 933w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-195x300.jpeg 195w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-667x1024.jpeg 667w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-768x1179.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-600x921.jpeg 600w\" sizes=\"(max-width: 933px) 100vw, 933px\" /></figure><h3>Games</h3><p>We have the most poplur bar games of all time like Buck Hunter and Golden Tee Golf. Get your location setup with these modern classics.</p>		\n			<figure><img width=\"1080\" height=\"1080\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/darts.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/darts.jpeg 1080w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-300x300.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-1024x1024.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-150x150.jpeg 150w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-768x768.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-600x600.jpeg 600w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></figure><h3>Dart Boards</h3><p>System Amusement offers the best dart boards such as the Arachnid Bullshooter. Dart boards provide a classic game that everyone loves, yet our cutting edge equipment gives a modern and interactive twist.</p>		\n			<figure><img width=\"1000\" height=\"1495\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody.png 1000w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-201x300.png 201w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-685x1024.png 685w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-768x1148.png 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-600x897.png 600w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></figure><h3>Pool Tables</h3><p>Pool tables are a must for successful bars. We offer quarter pool machines that will keep your customers excited and in your location for hours.</p>		\n			<figure><img width=\"352\" height=\"459\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717.jpg 352w, https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717-230x300.jpg 230w\" sizes=\"(max-width: 352px) 100vw, 352px\" /></figure><h3>Touch Tunes</h3><p>System Amusement proudly provides the Touch Tunes music system, that will bring the entertainment in your location to a whole new level!</p>		\n			<figure><img width=\"1210\" height=\"1182\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM.png 1210w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-300x293.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-1024x1000.png 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-768x750.png 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-600x586.png 600w\" sizes=\"(max-width: 1210px) 100vw, 1210px\" /></figure><h3>Juke Boxes</h3><p>These have been a classic for literally decades. System Amusement carries the highest tech juke boxes in the industry. Contact us today to order yours.</p>		\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our 50+ Years of Dedication to our Clients!                    \n            </h3>\n		<p>Your success is our success!</p>		\n                1\n                %\n                            Quality Equipment\n                1\n                %\n                            Attention to Detail\n                1\n                %\n                            Reliable Support\n                1\n                %\n                            Client Dedication','Services v.2','','inherit','closed','closed','','409-revision-v1','','','2021-04-28 23:11:01','2021-04-28 23:11:01','',409,'https://sa7717.dev34.info/?p=4469',0,'revision','',0),(4471,1,'2021-04-28 23:12:14','2021-04-28 23:12:14','','Screen Shot 2021-04-28 at 4.11.46 PM','','inherit','open','closed','','screen-shot-2021-04-28-at-4-11-46-pm','','','2021-04-28 23:12:14','2021-04-28 23:12:14','',409,'https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-28-at-4.11.46-PM.png',0,'attachment','image/png',0),(4472,1,'2021-04-28 23:12:34','2021-04-28 23:12:34','<h3>\n                        Our Services                    \n            </h3>\n		<p style=\"text-align: center;\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. </p><p style=\"text-align: center;\"><strong>Call now: <a href=\"tel:509-993-4655\">509-993-4655</a></strong></p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Pinball Machines</h3><p>We offer some of the most cutting edge and popular pinball machines you can have in your location. </p>		\n			<figure><img width=\"300\" height=\"320\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221-281x300.jpeg 281w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></figure><h3>ATM Machines</h3><p>This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!</p>		\n			<figure><img width=\"692\" height=\"848\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png 692w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-245x300.png 245w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-600x735.png 600w\" sizes=\"(max-width: 692px) 100vw, 692px\" /></figure><h3>Ski Ball</h3><p>Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.</p>		\n			<figure><img width=\"933\" height=\"1432\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee.jpeg 933w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-195x300.jpeg 195w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-667x1024.jpeg 667w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-768x1179.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-600x921.jpeg 600w\" sizes=\"(max-width: 933px) 100vw, 933px\" /></figure><h3>Games</h3><p>We have the most poplur bar games of all time like Buck Hunter and Golden Tee Golf. Get your location setup with these modern classics.</p>		\n			<figure><img width=\"1080\" height=\"1080\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/darts.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/darts.jpeg 1080w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-300x300.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-1024x1024.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-150x150.jpeg 150w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-768x768.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-600x600.jpeg 600w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></figure><h3>Dart Boards</h3><p>System Amusement offers the best dart boards such as the Arachnid Bullshooter. Dart boards provide a classic game that everyone loves, yet our cutting edge equipment gives a modern and interactive twist.</p>		\n			<figure><img width=\"1000\" height=\"1495\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody.png 1000w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-201x300.png 201w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-685x1024.png 685w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-768x1148.png 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-600x897.png 600w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></figure><h3>Pool Tables</h3><p>Pool tables are a must for successful bars. We offer quarter pool machines that will keep your customers excited and in your location for hours.</p>		\n			<figure><img width=\"352\" height=\"459\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717.jpg 352w, https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717-230x300.jpg 230w\" sizes=\"(max-width: 352px) 100vw, 352px\" /></figure><h3>Touch Tunes</h3><p>System Amusement proudly provides the Touch Tunes music system, that will bring the entertainment in your location to a whole new level!</p>		\n			<figure><img width=\"1210\" height=\"1182\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM.png 1210w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-300x293.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-1024x1000.png 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-768x750.png 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-600x586.png 600w\" sizes=\"(max-width: 1210px) 100vw, 1210px\" /></figure><h3>Juke Boxes</h3><p>These have been a classic for literally decades. System Amusement carries the highest tech juke boxes in the industry. Contact us today to order yours.</p>		\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our 50+ Years of Dedication to our Clients!                    \n            </h3>\n		<p>Your success is our success!</p>		\n                1\n                %\n                            Quality Equipment\n                1\n                %\n                            Attention to Detail\n                1\n                %\n                            Reliable Support\n                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n															<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />','Services v.2','','inherit','closed','closed','','409-revision-v1','','','2021-04-28 23:12:34','2021-04-28 23:12:34','',409,'https://sa7717.dev34.info/?p=4472',0,'revision','',0),(4473,1,'2021-04-28 23:12:35','2021-04-28 23:12:35','<h3>\n                        Our Services                    \n            </h3>\n		<p style=\"text-align: center;\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. </p><p style=\"text-align: center;\"><strong>Call now: <a href=\"tel:509-993-4655\">509-993-4655</a></strong></p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Pinball Machines</h3><p>We offer some of the most cutting edge and popular pinball machines you can have in your location. </p>		\n			<figure><img width=\"300\" height=\"320\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221-281x300.jpeg 281w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></figure><h3>ATM Machines</h3><p>This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!</p>		\n			<figure><img width=\"692\" height=\"848\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png 692w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-245x300.png 245w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-600x735.png 600w\" sizes=\"(max-width: 692px) 100vw, 692px\" /></figure><h3>Ski Ball</h3><p>Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.</p>		\n			<figure><img width=\"933\" height=\"1432\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee.jpeg 933w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-195x300.jpeg 195w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-667x1024.jpeg 667w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-768x1179.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-600x921.jpeg 600w\" sizes=\"(max-width: 933px) 100vw, 933px\" /></figure><h3>Games</h3><p>We have the most poplur bar games of all time like Buck Hunter and Golden Tee Golf. Get your location setup with these modern classics.</p>		\n			<figure><img width=\"1080\" height=\"1080\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/darts.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/darts.jpeg 1080w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-300x300.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-1024x1024.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-150x150.jpeg 150w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-768x768.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-600x600.jpeg 600w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></figure><h3>Dart Boards</h3><p>System Amusement offers the best dart boards such as the Arachnid Bullshooter. Dart boards provide a classic game that everyone loves, yet our cutting edge equipment gives a modern and interactive twist.</p>		\n			<figure><img width=\"1000\" height=\"1495\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody.png 1000w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-201x300.png 201w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-685x1024.png 685w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-768x1148.png 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/pantherhighlandmaplefullbody-600x897.png 600w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></figure><h3>Pool Tables</h3><p>Pool tables are a must for successful bars. We offer quarter pool machines that will keep your customers excited and in your location for hours.</p>		\n			<figure><img width=\"352\" height=\"459\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717.jpg 352w, https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717-230x300.jpg 230w\" sizes=\"(max-width: 352px) 100vw, 352px\" /></figure><h3>Touch Tunes</h3><p>System Amusement proudly provides the Touch Tunes music system, that will bring the entertainment in your location to a whole new level!</p>		\n			<figure><img width=\"1210\" height=\"1182\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM.png 1210w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-300x293.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-1024x1000.png 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-768x750.png 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-600x586.png 600w\" sizes=\"(max-width: 1210px) 100vw, 1210px\" /></figure><h3>Juke Boxes</h3><p>These have been a classic for literally decades. System Amusement carries the highest tech juke boxes in the industry. Contact us today to order yours.</p>		\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our 50+ Years of Dedication to our Clients!                    \n            </h3>\n		<p>Your success is our success!</p>		\n                1\n                %\n                            Quality Equipment\n                1\n                %\n                            Attention to Detail\n                1\n                %\n                            Reliable Support\n                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n															<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />','Services v.2','','inherit','closed','closed','','409-revision-v1','','','2021-04-28 23:12:35','2021-04-28 23:12:35','',409,'https://sa7717.dev34.info/?p=4473',0,'revision','',0),(4475,1,'2021-04-28 23:14:47','2021-04-28 23:14:47','<h3>\n                        Contact System Amusement Today                    \n            </h3>\n                    <h3>\n                Phone:            </h3>\n                509-326-1551 \n                    <h3>\n                Email:            </h3>\n                systemamusement@comcast.net\n                    <h3>\n                Hours:            </h3>\n                Mon - Sat: 8 am - 5 pm, <br>Sunday: CLOSED\n															<img width=\"2560\" height=\"1708\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-600x400.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />','contact form and info','','publish','closed','closed','','contact-form-and-info','','','2021-04-28 23:14:48','2021-04-28 23:14:48','',0,'https://sa7717.dev34.info/?elementor_library=contact-form-and-info',0,'elementor_library','',0),(4476,1,'2021-04-28 23:14:47','2021-04-28 23:14:47','','contact form and info','','inherit','closed','closed','','4475-revision-v1','','','2021-04-28 23:14:47','2021-04-28 23:14:47','',4475,'https://sa7717.dev34.info/?p=4476',0,'revision','',0),(4477,1,'2021-04-28 23:14:48','2021-04-28 23:14:48','<h3>\n                        Contact System Amusement Today                    \n            </h3>\n                    <h3>\n                Phone:            </h3>\n                509-326-1551 \n                    <h3>\n                Email:            </h3>\n                systemamusement@comcast.net\n                    <h3>\n                Hours:            </h3>\n                Mon - Sat: 8 am - 5 pm, <br>Sunday: CLOSED\n															<img width=\"2560\" height=\"1708\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-600x400.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />','contact form and info','','inherit','closed','closed','','4475-revision-v1','','','2021-04-28 23:14:48','2021-04-28 23:14:48','',4475,'https://sa7717.dev34.info/?p=4477',0,'revision','',0),(4485,1,'2021-04-28 23:18:41','2021-04-28 23:18:41','<h3>\n                        Our Services</h3>\n<p style=\"text-align: center;\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation.</p>\n<p style=\"text-align: center;\"><strong>Call now: <a href=\"tel:509-993-4655\">509-993-4655</a></strong></p>\n\n<figure><img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" width=\"600\" height=\"600\"></figure>\n<h3>Pinball Machines</h3>\nWe offer some of the most cutting edge and popular pinball machines you can have in your location.\n<figure><img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221-281x300.jpeg 281w\" sizes=\"(max-width: 300px) 100vw, 300px\" width=\"300\" height=\"320\"></figure>\n<h3>ATM Machines</h3>\nThis is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!\n<figure><img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png 692w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-245x300.png 245w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-600x735.png 600w\" sizes=\"(max-width: 692px) 100vw, 692px\" width=\"692\" height=\"848\"></figure>\n<h3>Ski Ball</h3>\nSki ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.\n<figure><img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee.jpeg 933w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-195x300.jpeg 195w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-667x1024.jpeg 667w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-768x1179.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-600x921.jpeg 600w\" sizes=\"(max-width: 933px) 100vw, 933px\" width=\"933\" height=\"1432\"></figure>\n<h3>Games</h3>\nWe have the most poplur bar games of all time like Buck Hunter and Golden Tee Golf. Get your location setup with these modern classics.\n<figure><img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/darts.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/darts.jpeg 1080w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-300x300.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-1024x1024.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-150x150.jpeg 150w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-768x768.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-600x600.jpeg 600w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" width=\"1080\" height=\"1080\"></figure>\n<h3>Dart Boards</h3>\nSystem Amusement offers the best dart boards such as the Arachnid Bullshooter. Dart boards provide a classic game that everyone loves, yet our cutting edge equipment gives a modern and interactive twist.\n<figure><img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-28-at-4.11.46-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-28-at-4.11.46-PM.png 578w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-28-at-4.11.46-PM-298x300.png 298w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-28-at-4.11.46-PM-150x150.png 150w\" sizes=\"(max-width: 578px) 100vw, 578px\" width=\"578\" height=\"582\"></figure>\n<h3>Pool Tables</h3>\nPool tables are a must for successful bars. We offer quarter pool machines that will keep your customers excited and in your location for hours.\n<figure><img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717.jpg 352w, https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717-230x300.jpg 230w\" sizes=\"(max-width: 352px) 100vw, 352px\" width=\"352\" height=\"459\"></figure>\n<h3>Touch Tunes</h3>\nSystem Amusement proudly provides the Touch Tunes music system, that will bring the entertainment in your location to a whole new level!\n<figure><img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM.png 1210w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-300x293.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-1024x1000.png 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-768x750.png 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-600x586.png 600w\" sizes=\"(max-width: 1210px) 100vw, 1210px\" width=\"1210\" height=\"1182\"></figure>\n<h3>Juke Boxes</h3>\nThese have been a classic for literally decades. System Amusement carries the highest tech juke boxes in the industry. Contact us today to order yours.\n<h3>\n                        Contact System Amusement Today</h3>\n<h3>\n                Phone:</h3>\n509-326-1551\n<h3>\n                Email:</h3>\nsystemamusement@comcast.net\n<h3>\n                Hours:</h3>\nMon - Sat: 8 am - 5 pm,\nSunday: CLOSED\n<img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-600x400.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" width=\"2560\" height=\"1708\">\nWhat Makes System Amusement Different?\n<h3>\n                        Our 50+ Years of Dedication to our Clients!</h3>\nYour success is our success!\n\n1\n%\nQuality Equipment\n1\n%\nAttention to Detail\n1\n%\nReliable Support\n1\n%\nClient Dedication\nCustomer Reviews\n<h3>\n                            <i></i>\nWhat Our Clients Are Saying</h3>\n<img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" alt=\"golden thumbsup\" title=\"golden thumbsup\" width=\"300\" height=\"300\">\n\"These guys will bend over backwards for your bar or place of business. Thanks guys\"\n<h3>\n                                        Logan</h3>\nBar Owner\n<img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" alt=\"golden thumbsup\" title=\"golden thumbsup\" width=\"300\" height=\"300\">\n\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\"\n<h3>\n                                        Rebecca</h3>\nBar Owner\n<img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" width=\"2560\" height=\"1699\">','Services v.2','','inherit','closed','closed','','409-revision-v1','','','2021-04-28 23:18:41','2021-04-28 23:18:41','',409,'https://sa7717.dev34.info/?p=4485',0,'revision','',0),(4481,1,'2021-04-28 23:15:57','2021-04-28 23:15:57','<h3>\n                        Our Services                    \n            </h3>\n		<p style=\"text-align: center;\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. </p><p style=\"text-align: center;\"><strong>Call now: <a href=\"tel:509-993-4655\">509-993-4655</a></strong></p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Pinball Machines</h3><p>We offer some of the most cutting edge and popular pinball machines you can have in your location. </p>		\n			<figure><img width=\"300\" height=\"320\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221-281x300.jpeg 281w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></figure><h3>ATM Machines</h3><p>This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!</p>		\n			<figure><img width=\"692\" height=\"848\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png 692w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-245x300.png 245w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-600x735.png 600w\" sizes=\"(max-width: 692px) 100vw, 692px\" /></figure><h3>Ski Ball</h3><p>Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.</p>		\n			<figure><img width=\"933\" height=\"1432\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee.jpeg 933w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-195x300.jpeg 195w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-667x1024.jpeg 667w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-768x1179.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-600x921.jpeg 600w\" sizes=\"(max-width: 933px) 100vw, 933px\" /></figure><h3>Games</h3><p>We have the most poplur bar games of all time like Buck Hunter and Golden Tee Golf. Get your location setup with these modern classics.</p>		\n			<figure><img width=\"1080\" height=\"1080\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/darts.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/darts.jpeg 1080w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-300x300.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-1024x1024.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-150x150.jpeg 150w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-768x768.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-600x600.jpeg 600w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></figure><h3>Dart Boards</h3><p>System Amusement offers the best dart boards such as the Arachnid Bullshooter. Dart boards provide a classic game that everyone loves, yet our cutting edge equipment gives a modern and interactive twist.</p>		\n			<figure><img width=\"578\" height=\"582\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-28-at-4.11.46-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-28-at-4.11.46-PM.png 578w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-28-at-4.11.46-PM-298x300.png 298w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-28-at-4.11.46-PM-150x150.png 150w\" sizes=\"(max-width: 578px) 100vw, 578px\" /></figure><h3>Pool Tables</h3><p>Pool tables are a must for successful bars. We offer quarter pool machines that will keep your customers excited and in your location for hours.</p>		\n			<figure><img width=\"352\" height=\"459\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717.jpg 352w, https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717-230x300.jpg 230w\" sizes=\"(max-width: 352px) 100vw, 352px\" /></figure><h3>Touch Tunes</h3><p>System Amusement proudly provides the Touch Tunes music system, that will bring the entertainment in your location to a whole new level!</p>		\n			<figure><img width=\"1210\" height=\"1182\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM.png 1210w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-300x293.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-1024x1000.png 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-768x750.png 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-600x586.png 600w\" sizes=\"(max-width: 1210px) 100vw, 1210px\" /></figure><h3>Juke Boxes</h3><p>These have been a classic for literally decades. System Amusement carries the highest tech juke boxes in the industry. Contact us today to order yours.</p>		\n	    <h3>\n                        Contact System Amusement Today                    \n            </h3>\n                    <h3>\n                Phone:            </h3>\n                509-326-1551 \n                    <h3>\n                Email:            </h3>\n                systemamusement@comcast.net\n                    <h3>\n                Hours:            </h3>\n                Mon - Sat: 8 am - 5 pm, <br>Sunday: CLOSED\n															<img width=\"2560\" height=\"1708\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-600x400.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our 50+ Years of Dedication to our Clients!                    \n            </h3>\n		<p>Your success is our success!</p>		\n                1\n                %\n                            Quality Equipment\n                1\n                %\n                            Attention to Detail\n                1\n                %\n                            Reliable Support\n                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n															<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />','Services v.2','','inherit','closed','closed','','409-revision-v1','','','2021-04-28 23:15:57','2021-04-28 23:15:57','',409,'https://sa7717.dev34.info/?p=4481',0,'revision','',0),(4479,1,'2021-04-28 23:15:56','2021-04-28 23:15:56','<h3>\n                        Our Services                    \n            </h3>\n		<p style=\"text-align: center;\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. </p><p style=\"text-align: center;\"><strong>Call now: <a href=\"tel:509-993-4655\">509-993-4655</a></strong></p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Pinball Machines</h3><p>We offer some of the most cutting edge and popular pinball machines you can have in your location. </p>		\n			<figure><img width=\"300\" height=\"320\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221-281x300.jpeg 281w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></figure><h3>ATM Machines</h3><p>This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!</p>		\n			<figure><img width=\"692\" height=\"848\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png 692w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-245x300.png 245w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-600x735.png 600w\" sizes=\"(max-width: 692px) 100vw, 692px\" /></figure><h3>Ski Ball</h3><p>Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.</p>		\n			<figure><img width=\"933\" height=\"1432\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee.jpeg 933w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-195x300.jpeg 195w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-667x1024.jpeg 667w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-768x1179.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-600x921.jpeg 600w\" sizes=\"(max-width: 933px) 100vw, 933px\" /></figure><h3>Games</h3><p>We have the most poplur bar games of all time like Buck Hunter and Golden Tee Golf. Get your location setup with these modern classics.</p>		\n			<figure><img width=\"1080\" height=\"1080\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/darts.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/darts.jpeg 1080w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-300x300.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-1024x1024.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-150x150.jpeg 150w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-768x768.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-600x600.jpeg 600w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></figure><h3>Dart Boards</h3><p>System Amusement offers the best dart boards such as the Arachnid Bullshooter. Dart boards provide a classic game that everyone loves, yet our cutting edge equipment gives a modern and interactive twist.</p>		\n			<figure><img width=\"578\" height=\"582\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-28-at-4.11.46-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-28-at-4.11.46-PM.png 578w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-28-at-4.11.46-PM-298x300.png 298w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-28-at-4.11.46-PM-150x150.png 150w\" sizes=\"(max-width: 578px) 100vw, 578px\" /></figure><h3>Pool Tables</h3><p>Pool tables are a must for successful bars. We offer quarter pool machines that will keep your customers excited and in your location for hours.</p>		\n			<figure><img width=\"352\" height=\"459\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717.jpg 352w, https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717-230x300.jpg 230w\" sizes=\"(max-width: 352px) 100vw, 352px\" /></figure><h3>Touch Tunes</h3><p>System Amusement proudly provides the Touch Tunes music system, that will bring the entertainment in your location to a whole new level!</p>		\n			<figure><img width=\"1210\" height=\"1182\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM.png 1210w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-300x293.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-1024x1000.png 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-768x750.png 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-600x586.png 600w\" sizes=\"(max-width: 1210px) 100vw, 1210px\" /></figure><h3>Juke Boxes</h3><p>These have been a classic for literally decades. System Amusement carries the highest tech juke boxes in the industry. Contact us today to order yours.</p>		\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our 50+ Years of Dedication to our Clients!                    \n            </h3>\n		<p>Your success is our success!</p>		\n                1\n                %\n                            Quality Equipment\n                1\n                %\n                            Attention to Detail\n                1\n                %\n                            Reliable Support\n                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n															<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />','Services v.2','','inherit','closed','closed','','409-revision-v1','','','2021-04-28 23:15:56','2021-04-28 23:15:56','',409,'https://sa7717.dev34.info/?p=4479',0,'revision','',0),(4480,1,'2021-04-28 23:15:57','2021-04-28 23:15:57','<h3>\n                        Our Services                    \n            </h3>\n		<p style=\"text-align: center;\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. </p><p style=\"text-align: center;\"><strong>Call now: <a href=\"tel:509-993-4655\">509-993-4655</a></strong></p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Pinball Machines</h3><p>We offer some of the most cutting edge and popular pinball machines you can have in your location. </p>		\n			<figure><img width=\"300\" height=\"320\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221-281x300.jpeg 281w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></figure><h3>ATM Machines</h3><p>This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!</p>		\n			<figure><img width=\"692\" height=\"848\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png 692w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-245x300.png 245w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-600x735.png 600w\" sizes=\"(max-width: 692px) 100vw, 692px\" /></figure><h3>Ski Ball</h3><p>Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.</p>		\n			<figure><img width=\"933\" height=\"1432\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee.jpeg 933w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-195x300.jpeg 195w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-667x1024.jpeg 667w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-768x1179.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-600x921.jpeg 600w\" sizes=\"(max-width: 933px) 100vw, 933px\" /></figure><h3>Games</h3><p>We have the most poplur bar games of all time like Buck Hunter and Golden Tee Golf. Get your location setup with these modern classics.</p>		\n			<figure><img width=\"1080\" height=\"1080\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/darts.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/darts.jpeg 1080w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-300x300.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-1024x1024.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-150x150.jpeg 150w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-768x768.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-600x600.jpeg 600w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></figure><h3>Dart Boards</h3><p>System Amusement offers the best dart boards such as the Arachnid Bullshooter. Dart boards provide a classic game that everyone loves, yet our cutting edge equipment gives a modern and interactive twist.</p>		\n			<figure><img width=\"578\" height=\"582\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-28-at-4.11.46-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-28-at-4.11.46-PM.png 578w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-28-at-4.11.46-PM-298x300.png 298w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-28-at-4.11.46-PM-150x150.png 150w\" sizes=\"(max-width: 578px) 100vw, 578px\" /></figure><h3>Pool Tables</h3><p>Pool tables are a must for successful bars. We offer quarter pool machines that will keep your customers excited and in your location for hours.</p>		\n			<figure><img width=\"352\" height=\"459\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717.jpg 352w, https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717-230x300.jpg 230w\" sizes=\"(max-width: 352px) 100vw, 352px\" /></figure><h3>Touch Tunes</h3><p>System Amusement proudly provides the Touch Tunes music system, that will bring the entertainment in your location to a whole new level!</p>		\n			<figure><img width=\"1210\" height=\"1182\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM.png 1210w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-300x293.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-1024x1000.png 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-768x750.png 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-600x586.png 600w\" sizes=\"(max-width: 1210px) 100vw, 1210px\" /></figure><h3>Juke Boxes</h3><p>These have been a classic for literally decades. System Amusement carries the highest tech juke boxes in the industry. Contact us today to order yours.</p>		\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our 50+ Years of Dedication to our Clients!                    \n            </h3>\n		<p>Your success is our success!</p>		\n                1\n                %\n                            Quality Equipment\n                1\n                %\n                            Attention to Detail\n                1\n                %\n                            Reliable Support\n                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n															<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />','Services v.2','','inherit','closed','closed','','409-revision-v1','','','2021-04-28 23:15:57','2021-04-28 23:15:57','',409,'https://sa7717.dev34.info/?p=4480',0,'revision','',0),(4482,1,'2021-04-28 23:16:08','2021-04-28 23:16:08','<h3>\n                        Our Services                    \n            </h3>\n		<p style=\"text-align: center;\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. </p><p style=\"text-align: center;\"><strong>Call now: <a href=\"tel:509-993-4655\">509-993-4655</a></strong></p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Pinball Machines</h3><p>We offer some of the most cutting edge and popular pinball machines you can have in your location. </p>		\n			<figure><img width=\"300\" height=\"320\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221-281x300.jpeg 281w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></figure><h3>ATM Machines</h3><p>This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!</p>		\n			<figure><img width=\"692\" height=\"848\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png 692w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-245x300.png 245w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-600x735.png 600w\" sizes=\"(max-width: 692px) 100vw, 692px\" /></figure><h3>Ski Ball</h3><p>Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.</p>		\n			<figure><img width=\"933\" height=\"1432\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee.jpeg 933w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-195x300.jpeg 195w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-667x1024.jpeg 667w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-768x1179.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-600x921.jpeg 600w\" sizes=\"(max-width: 933px) 100vw, 933px\" /></figure><h3>Games</h3><p>We have the most poplur bar games of all time like Buck Hunter and Golden Tee Golf. Get your location setup with these modern classics.</p>		\n			<figure><img width=\"1080\" height=\"1080\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/darts.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/darts.jpeg 1080w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-300x300.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-1024x1024.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-150x150.jpeg 150w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-768x768.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-600x600.jpeg 600w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></figure><h3>Dart Boards</h3><p>System Amusement offers the best dart boards such as the Arachnid Bullshooter. Dart boards provide a classic game that everyone loves, yet our cutting edge equipment gives a modern and interactive twist.</p>		\n			<figure><img width=\"578\" height=\"582\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-28-at-4.11.46-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-28-at-4.11.46-PM.png 578w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-28-at-4.11.46-PM-298x300.png 298w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-28-at-4.11.46-PM-150x150.png 150w\" sizes=\"(max-width: 578px) 100vw, 578px\" /></figure><h3>Pool Tables</h3><p>Pool tables are a must for successful bars. We offer quarter pool machines that will keep your customers excited and in your location for hours.</p>		\n			<figure><img width=\"352\" height=\"459\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717.jpg 352w, https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717-230x300.jpg 230w\" sizes=\"(max-width: 352px) 100vw, 352px\" /></figure><h3>Touch Tunes</h3><p>System Amusement proudly provides the Touch Tunes music system, that will bring the entertainment in your location to a whole new level!</p>		\n			<figure><img width=\"1210\" height=\"1182\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM.png 1210w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-300x293.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-1024x1000.png 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-768x750.png 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-600x586.png 600w\" sizes=\"(max-width: 1210px) 100vw, 1210px\" /></figure><h3>Juke Boxes</h3><p>These have been a classic for literally decades. System Amusement carries the highest tech juke boxes in the industry. Contact us today to order yours.</p>		\n	    <h3>\n                        Contact System Amusement Today                    \n            </h3>\n                    <h3>\n                Phone:            </h3>\n                509-326-1551 \n                    <h3>\n                Email:            </h3>\n                systemamusement@comcast.net\n                    <h3>\n                Hours:            </h3>\n                Mon - Sat: 8 am - 5 pm, <br>Sunday: CLOSED\n															<img width=\"2560\" height=\"1708\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-600x400.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our 50+ Years of Dedication to our Clients!                    \n            </h3>\n		<p>Your success is our success!</p>		\n                1\n                %\n                            Quality Equipment\n                1\n                %\n                            Attention to Detail\n                1\n                %\n                            Reliable Support\n                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n															<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />','Services v.2','','inherit','closed','closed','','409-revision-v1','','','2021-04-28 23:16:08','2021-04-28 23:16:08','',409,'https://sa7717.dev34.info/?p=4482',0,'revision','',0),(4483,1,'2021-04-28 23:16:08','2021-04-28 23:16:08','<h3>\n                        Our Services                    \n            </h3>\n		<p style=\"text-align: center;\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. </p><p style=\"text-align: center;\"><strong>Call now: <a href=\"tel:509-993-4655\">509-993-4655</a></strong></p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Pinball Machines</h3><p>We offer some of the most cutting edge and popular pinball machines you can have in your location. </p>		\n			<figure><img width=\"300\" height=\"320\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221-281x300.jpeg 281w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></figure><h3>ATM Machines</h3><p>This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!</p>		\n			<figure><img width=\"692\" height=\"848\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png 692w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-245x300.png 245w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-600x735.png 600w\" sizes=\"(max-width: 692px) 100vw, 692px\" /></figure><h3>Ski Ball</h3><p>Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.</p>		\n			<figure><img width=\"933\" height=\"1432\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee.jpeg 933w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-195x300.jpeg 195w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-667x1024.jpeg 667w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-768x1179.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-600x921.jpeg 600w\" sizes=\"(max-width: 933px) 100vw, 933px\" /></figure><h3>Games</h3><p>We have the most poplur bar games of all time like Buck Hunter and Golden Tee Golf. Get your location setup with these modern classics.</p>		\n			<figure><img width=\"1080\" height=\"1080\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/darts.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/darts.jpeg 1080w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-300x300.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-1024x1024.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-150x150.jpeg 150w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-768x768.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-600x600.jpeg 600w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></figure><h3>Dart Boards</h3><p>System Amusement offers the best dart boards such as the Arachnid Bullshooter. Dart boards provide a classic game that everyone loves, yet our cutting edge equipment gives a modern and interactive twist.</p>		\n			<figure><img width=\"578\" height=\"582\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-28-at-4.11.46-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-28-at-4.11.46-PM.png 578w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-28-at-4.11.46-PM-298x300.png 298w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-28-at-4.11.46-PM-150x150.png 150w\" sizes=\"(max-width: 578px) 100vw, 578px\" /></figure><h3>Pool Tables</h3><p>Pool tables are a must for successful bars. We offer quarter pool machines that will keep your customers excited and in your location for hours.</p>		\n			<figure><img width=\"352\" height=\"459\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717.jpg 352w, https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717-230x300.jpg 230w\" sizes=\"(max-width: 352px) 100vw, 352px\" /></figure><h3>Touch Tunes</h3><p>System Amusement proudly provides the Touch Tunes music system, that will bring the entertainment in your location to a whole new level!</p>		\n			<figure><img width=\"1210\" height=\"1182\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM.png 1210w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-300x293.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-1024x1000.png 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-768x750.png 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-600x586.png 600w\" sizes=\"(max-width: 1210px) 100vw, 1210px\" /></figure><h3>Juke Boxes</h3><p>These have been a classic for literally decades. System Amusement carries the highest tech juke boxes in the industry. Contact us today to order yours.</p>		\n	    <h3>\n                        Contact System Amusement Today                    \n            </h3>\n                    <h3>\n                Phone:            </h3>\n                509-326-1551 \n                    <h3>\n                Email:            </h3>\n                systemamusement@comcast.net\n                    <h3>\n                Hours:            </h3>\n                Mon - Sat: 8 am - 5 pm, <br>Sunday: CLOSED\n															<img width=\"2560\" height=\"1708\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-600x400.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our 50+ Years of Dedication to our Clients!                    \n            </h3>\n		<p>Your success is our success!</p>		\n                1\n                %\n                            Quality Equipment\n                1\n                %\n                            Attention to Detail\n                1\n                %\n                            Reliable Support\n                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n															<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />','Services v.2','','inherit','closed','closed','','409-revision-v1','','','2021-04-28 23:16:08','2021-04-28 23:16:08','',409,'https://sa7717.dev34.info/?p=4483',0,'revision','',0),(4484,1,'2021-04-28 23:16:08','2021-04-28 23:16:08','<h3>\n                        Our Services                    \n            </h3>\n		<p style=\"text-align: center;\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. </p><p style=\"text-align: center;\"><strong>Call now: <a href=\"tel:509-993-4655\">509-993-4655</a></strong></p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Pinball Machines</h3><p>We offer some of the most cutting edge and popular pinball machines you can have in your location. </p>		\n			<figure><img width=\"300\" height=\"320\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221-281x300.jpeg 281w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></figure><h3>ATM Machines</h3><p>This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!</p>		\n			<figure><img width=\"692\" height=\"848\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png 692w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-245x300.png 245w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-600x735.png 600w\" sizes=\"(max-width: 692px) 100vw, 692px\" /></figure><h3>Ski Ball</h3><p>Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.</p>		\n			<figure><img width=\"933\" height=\"1432\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee.jpeg 933w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-195x300.jpeg 195w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-667x1024.jpeg 667w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-768x1179.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-600x921.jpeg 600w\" sizes=\"(max-width: 933px) 100vw, 933px\" /></figure><h3>Games</h3><p>We have the most poplur bar games of all time like Buck Hunter and Golden Tee Golf. Get your location setup with these modern classics.</p>		\n			<figure><img width=\"1080\" height=\"1080\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/darts.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/darts.jpeg 1080w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-300x300.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-1024x1024.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-150x150.jpeg 150w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-768x768.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-600x600.jpeg 600w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></figure><h3>Dart Boards</h3><p>System Amusement offers the best dart boards such as the Arachnid Bullshooter. Dart boards provide a classic game that everyone loves, yet our cutting edge equipment gives a modern and interactive twist.</p>		\n			<figure><img width=\"578\" height=\"582\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-28-at-4.11.46-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-28-at-4.11.46-PM.png 578w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-28-at-4.11.46-PM-298x300.png 298w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-28-at-4.11.46-PM-150x150.png 150w\" sizes=\"(max-width: 578px) 100vw, 578px\" /></figure><h3>Pool Tables</h3><p>Pool tables are a must for successful bars. We offer quarter pool machines that will keep your customers excited and in your location for hours.</p>		\n			<figure><img width=\"352\" height=\"459\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717.jpg 352w, https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717-230x300.jpg 230w\" sizes=\"(max-width: 352px) 100vw, 352px\" /></figure><h3>Touch Tunes</h3><p>System Amusement proudly provides the Touch Tunes music system, that will bring the entertainment in your location to a whole new level!</p>		\n			<figure><img width=\"1210\" height=\"1182\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM.png 1210w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-300x293.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-1024x1000.png 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-768x750.png 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-600x586.png 600w\" sizes=\"(max-width: 1210px) 100vw, 1210px\" /></figure><h3>Juke Boxes</h3><p>These have been a classic for literally decades. System Amusement carries the highest tech juke boxes in the industry. Contact us today to order yours.</p>		\n	    <h3>\n                        Contact System Amusement Today                    \n            </h3>\n                    <h3>\n                Phone:            </h3>\n                509-326-1551 \n                    <h3>\n                Email:            </h3>\n                systemamusement@comcast.net\n                    <h3>\n                Hours:            </h3>\n                Mon - Sat: 8 am - 5 pm, <br>Sunday: CLOSED\n															<img width=\"2560\" height=\"1708\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-600x400.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our 50+ Years of Dedication to our Clients!                    \n            </h3>\n		<p>Your success is our success!</p>		\n                1\n                %\n                            Quality Equipment\n                1\n                %\n                            Attention to Detail\n                1\n                %\n                            Reliable Support\n                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n															<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />','Services v.2','','inherit','closed','closed','','409-revision-v1','','','2021-04-28 23:16:08','2021-04-28 23:16:08','',409,'https://sa7717.dev34.info/?p=4484',0,'revision','',0),(4486,1,'2021-04-28 23:18:52','2021-04-28 23:18:52','<h3>\n                        Our Services</h3>\n<p style=\"text-align: center;\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation.</p>\n<p style=\"text-align: center;\"><strong>Call now: <a href=\"tel:509-993-4655\">509-993-4655</a></strong></p>\n\n<figure><img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" width=\"600\" height=\"600\"></figure>\n<h3>Pinball Machines</h3>\nWe offer some of the most cutting edge and popular pinball machines you can have in your location.\n<figure><img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221-281x300.jpeg 281w\" sizes=\"(max-width: 300px) 100vw, 300px\" width=\"300\" height=\"320\"></figure>\n<h3>ATM Machines</h3>\nThis is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!\n<figure><img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png 692w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-245x300.png 245w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-600x735.png 600w\" sizes=\"(max-width: 692px) 100vw, 692px\" width=\"692\" height=\"848\"></figure>\n<h3>Ski Ball</h3>\nSki ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.\n<figure><img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee.jpeg 933w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-195x300.jpeg 195w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-667x1024.jpeg 667w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-768x1179.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-600x921.jpeg 600w\" sizes=\"(max-width: 933px) 100vw, 933px\" width=\"933\" height=\"1432\"></figure>\n<h3>Games</h3>\nWe have the most poplur bar games of all time like Buck Hunter and Golden Tee Golf. Get your location setup with these modern classics.\n<figure><img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/darts.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/darts.jpeg 1080w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-300x300.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-1024x1024.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-150x150.jpeg 150w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-768x768.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-600x600.jpeg 600w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" width=\"1080\" height=\"1080\"></figure>\n<h3>Dart Boards</h3>\nSystem Amusement offers the best dart boards such as the Arachnid Bullshooter. Dart boards provide a classic game that everyone loves, yet our cutting edge equipment gives a modern and interactive twist.\n<figure><img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-28-at-4.11.46-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-28-at-4.11.46-PM.png 578w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-28-at-4.11.46-PM-298x300.png 298w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-28-at-4.11.46-PM-150x150.png 150w\" sizes=\"(max-width: 578px) 100vw, 578px\" width=\"578\" height=\"582\"></figure>\n<h3>Pool Tables</h3>\nPool tables are a must for successful bars. We offer quarter pool machines that will keep your customers excited and in your location for hours.\n<figure><img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717.jpg 352w, https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717-230x300.jpg 230w\" sizes=\"(max-width: 352px) 100vw, 352px\" width=\"352\" height=\"459\"></figure>\n<h3>Touch Tunes</h3>\nSystem Amusement proudly provides the Touch Tunes music system, that will bring the entertainment in your location to a whole new level!\n<figure><img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM.png 1210w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-300x293.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-1024x1000.png 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-768x750.png 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-600x586.png 600w\" sizes=\"(max-width: 1210px) 100vw, 1210px\" width=\"1210\" height=\"1182\"></figure>\n<h3>Juke Boxes</h3>\nThese have been a classic for literally decades. System Amusement carries the highest tech juke boxes in the industry. Contact us today to order yours.\n<h3>\n                        Contact System Amusement Today</h3>\n<h3>\n                Phone:</h3>\n509-326-1551\n<h3>\n                Email:</h3>\nsystemamusement@comcast.net\n<h3>\n                Hours:</h3>\nMon - Sat: 8 am - 5 pm,\nSunday: CLOSED\n<img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-600x400.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" width=\"2560\" height=\"1708\">\nWhat Makes System Amusement Different?\n<h3>\n                        Our 50+ Years of Dedication to our Clients!</h3>\nYour success is our success!\n\n1\n%\nQuality Equipment\n1\n%\nAttention to Detail\n1\n%\nReliable Support\n1\n%\nClient Dedication\nCustomer Reviews\n<h3>\n                            <i></i>\nWhat Our Clients Are Saying</h3>\n<img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" alt=\"golden thumbsup\" title=\"golden thumbsup\" width=\"300\" height=\"300\">\n\"These guys will bend over backwards for your bar or place of business. Thanks guys\"\n<h3>\n                                        Logan</h3>\nBar Owner\n<img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" alt=\"golden thumbsup\" title=\"golden thumbsup\" width=\"300\" height=\"300\">\n\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\"\n<h3>\n                                        Rebecca</h3>\nBar Owner\n<img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" width=\"2560\" height=\"1699\">','Our Services','','inherit','closed','closed','','409-revision-v1','','','2021-04-28 23:18:52','2021-04-28 23:18:52','',409,'https://sa7717.dev34.info/?p=4486',0,'revision','',0),(4487,1,'2021-04-28 23:20:53','2021-04-28 23:20:53','<h3>\n                        Our Services</h3>\n<p style=\"text-align: center;\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation.</p>\n<p style=\"text-align: center;\"><strong>Call now: <a href=\"tel:509-993-4655\">509-993-4655</a></strong></p>\n\n<figure><img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" width=\"600\" height=\"600\"></figure>\n<h3>Pinball Machines</h3>\nWe offer some of the most cutting edge and popular pinball machines you can have in your location.\n<figure><img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221-281x300.jpeg 281w\" sizes=\"(max-width: 300px) 100vw, 300px\" width=\"300\" height=\"320\"></figure>\n<h3>ATM Machines</h3>\nThis is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!\n<figure><img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png 692w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-245x300.png 245w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-600x735.png 600w\" sizes=\"(max-width: 692px) 100vw, 692px\" width=\"692\" height=\"848\"></figure>\n<h3>Ski Ball</h3>\nSki ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.\n<figure><img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee.jpeg 933w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-195x300.jpeg 195w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-667x1024.jpeg 667w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-768x1179.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-600x921.jpeg 600w\" sizes=\"(max-width: 933px) 100vw, 933px\" width=\"933\" height=\"1432\"></figure>\n<h3>Games</h3>\nWe have the most poplur bar games of all time like Buck Hunter and Golden Tee Golf. Get your location setup with these modern classics.\n<figure><img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/darts.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/darts.jpeg 1080w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-300x300.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-1024x1024.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-150x150.jpeg 150w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-768x768.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-600x600.jpeg 600w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" width=\"1080\" height=\"1080\"></figure>\n<h3>Dart Boards</h3>\nSystem Amusement offers the best dart boards such as the Arachnid Bullshooter. Dart boards provide a classic game that everyone loves, yet our cutting edge equipment gives a modern and interactive twist.\n<figure><img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-28-at-4.11.46-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-28-at-4.11.46-PM.png 578w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-28-at-4.11.46-PM-298x300.png 298w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-28-at-4.11.46-PM-150x150.png 150w\" sizes=\"(max-width: 578px) 100vw, 578px\" width=\"578\" height=\"582\"></figure>\n<h3>Pool Tables</h3>\nPool tables are a must for successful bars. We offer quarter pool machines that will keep your customers excited and in your location for hours.\n<figure><img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717.jpg 352w, https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717-230x300.jpg 230w\" sizes=\"(max-width: 352px) 100vw, 352px\" width=\"352\" height=\"459\"></figure>\n<h3>Touch Tunes</h3>\nSystem Amusement proudly provides the Touch Tunes music system, that will bring the entertainment in your location to a whole new level!\n<figure><img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM.png 1210w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-300x293.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-1024x1000.png 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-768x750.png 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-600x586.png 600w\" sizes=\"(max-width: 1210px) 100vw, 1210px\" width=\"1210\" height=\"1182\"></figure>\n<h3>Juke Boxes</h3>\nThese have been a classic for literally decades. System Amusement carries the highest tech juke boxes in the industry. Contact us today to order yours.\n<h3>\n                        Contact System Amusement Today</h3>\n<h3>\n                Phone:</h3>\n509-326-1551\n<h3>\n                Email:</h3>\nsystemamusement@comcast.net\n<h3>\n                Hours:</h3>\nMon - Sat: 8 am - 5 pm,\nSunday: CLOSED\n<img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-600x400.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" width=\"2560\" height=\"1708\">\nWhat Makes System Amusement Different?\n<h3>\n                        Our 50+ Years of Dedication to our Clients!</h3>\nYour success is our success!\n\n1\n%\nQuality Equipment\n1\n%\nAttention to Detail\n1\n%\nReliable Support\n1\n%\nClient Dedication\nCustomer Reviews\n<h3>\n                            <i></i>\nWhat Our Clients Are Saying</h3>\n<img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" alt=\"golden thumbsup\" title=\"golden thumbsup\" width=\"300\" height=\"300\">\n\"These guys will bend over backwards for your bar or place of business. Thanks guys\"\n<h3>\n                                        Logan</h3>\nBar Owner\n<img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" alt=\"golden thumbsup\" title=\"golden thumbsup\" width=\"300\" height=\"300\">\n\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\"\n<h3>\n                                        Rebecca</h3>\nBar Owner\n<img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" width=\"2560\" height=\"1699\">','Our Services','','inherit','closed','closed','','409-revision-v1','','','2021-04-28 23:20:53','2021-04-28 23:20:53','',409,'https://sa7717.dev34.info/?p=4487',0,'revision','',0),(4488,1,'2021-04-28 23:20:53','2021-04-28 23:20:53','<h3>\n                        Our Services</h3>\n<p style=\"text-align: center;\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation.</p>\n<p style=\"text-align: center;\"><strong>Call now: <a href=\"tel:509-993-4655\">509-993-4655</a></strong></p>\n\n<figure><img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" width=\"600\" height=\"600\"></figure>\n<h3>Pinball Machines</h3>\nWe offer some of the most cutting edge and popular pinball machines you can have in your location.\n<figure><img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221-281x300.jpeg 281w\" sizes=\"(max-width: 300px) 100vw, 300px\" width=\"300\" height=\"320\"></figure>\n<h3>ATM Machines</h3>\nThis is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!\n<figure><img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png 692w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-245x300.png 245w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-600x735.png 600w\" sizes=\"(max-width: 692px) 100vw, 692px\" width=\"692\" height=\"848\"></figure>\n<h3>Ski Ball</h3>\nSki ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.\n<figure><img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee.jpeg 933w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-195x300.jpeg 195w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-667x1024.jpeg 667w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-768x1179.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-600x921.jpeg 600w\" sizes=\"(max-width: 933px) 100vw, 933px\" width=\"933\" height=\"1432\"></figure>\n<h3>Games</h3>\nWe have the most poplur bar games of all time like Buck Hunter and Golden Tee Golf. Get your location setup with these modern classics.\n<figure><img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/darts.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/darts.jpeg 1080w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-300x300.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-1024x1024.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-150x150.jpeg 150w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-768x768.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-600x600.jpeg 600w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" width=\"1080\" height=\"1080\"></figure>\n<h3>Dart Boards</h3>\nSystem Amusement offers the best dart boards such as the Arachnid Bullshooter. Dart boards provide a classic game that everyone loves, yet our cutting edge equipment gives a modern and interactive twist.\n<figure><img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-28-at-4.11.46-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-28-at-4.11.46-PM.png 578w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-28-at-4.11.46-PM-298x300.png 298w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-28-at-4.11.46-PM-150x150.png 150w\" sizes=\"(max-width: 578px) 100vw, 578px\" width=\"578\" height=\"582\"></figure>\n<h3>Pool Tables</h3>\nPool tables are a must for successful bars. We offer quarter pool machines that will keep your customers excited and in your location for hours.\n<figure><img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717.jpg 352w, https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717-230x300.jpg 230w\" sizes=\"(max-width: 352px) 100vw, 352px\" width=\"352\" height=\"459\"></figure>\n<h3>Touch Tunes</h3>\nSystem Amusement proudly provides the Touch Tunes music system, that will bring the entertainment in your location to a whole new level!\n<figure><img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM.png 1210w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-300x293.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-1024x1000.png 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-768x750.png 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-600x586.png 600w\" sizes=\"(max-width: 1210px) 100vw, 1210px\" width=\"1210\" height=\"1182\"></figure>\n<h3>Juke Boxes</h3>\nThese have been a classic for literally decades. System Amusement carries the highest tech juke boxes in the industry. Contact us today to order yours.\n<h3>\n                        Contact System Amusement Today</h3>\n<h3>\n                Phone:</h3>\n509-326-1551\n<h3>\n                Email:</h3>\nsystemamusement@comcast.net\n<h3>\n                Hours:</h3>\nMon - Sat: 8 am - 5 pm,\nSunday: CLOSED\n<img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-600x400.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" width=\"2560\" height=\"1708\">\nWhat Makes System Amusement Different?\n<h3>\n                        Our 50+ Years of Dedication to our Clients!</h3>\nYour success is our success!\n\n1\n%\nQuality Equipment\n1\n%\nAttention to Detail\n1\n%\nReliable Support\n1\n%\nClient Dedication\nCustomer Reviews\n<h3>\n                            <i></i>\nWhat Our Clients Are Saying</h3>\n<img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" alt=\"golden thumbsup\" title=\"golden thumbsup\" width=\"300\" height=\"300\">\n\"These guys will bend over backwards for your bar or place of business. Thanks guys\"\n<h3>\n                                        Logan</h3>\nBar Owner\n<img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" alt=\"golden thumbsup\" title=\"golden thumbsup\" width=\"300\" height=\"300\">\n\"System Amusement is the best company around for helping to being new life into a bar. Highly Recommended\"\n<h3>\n                                        Rebecca</h3>\nBar Owner\n<img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" width=\"2560\" height=\"1699\">','Our Services','','inherit','closed','closed','','409-revision-v1','','','2021-04-28 23:20:53','2021-04-28 23:20:53','',409,'https://sa7717.dev34.info/?p=4488',0,'revision','',0),(4489,1,'2021-04-28 23:20:53','2021-04-28 23:20:53','<h3>\n                        Our Services                    \n            </h3>\n		<p style=\"text-align: center;\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. </p><p style=\"text-align: center;\"><strong>Call now: <a href=\"tel:509-993-4655\">509-993-4655</a></strong></p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Pinball Machines</h3><p>We offer some of the most cutting edge and popular pinball machines you can have in your location. </p>		\n			<figure><img width=\"300\" height=\"320\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221-281x300.jpeg 281w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></figure><h3>ATM Machines</h3><p>This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!</p>		\n			<figure><img width=\"692\" height=\"848\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png 692w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-245x300.png 245w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-600x735.png 600w\" sizes=\"(max-width: 692px) 100vw, 692px\" /></figure><h3>Ski Ball</h3><p>Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.</p>		\n			<figure><img width=\"933\" height=\"1432\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee.jpeg 933w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-195x300.jpeg 195w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-667x1024.jpeg 667w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-768x1179.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-600x921.jpeg 600w\" sizes=\"(max-width: 933px) 100vw, 933px\" /></figure><h3>Games</h3><p>We have the most poplur bar games of all time like Buck Hunter and Golden Tee Golf. Get your location setup with these modern classics.</p>		\n			<figure><img width=\"1080\" height=\"1080\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/darts.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/darts.jpeg 1080w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-300x300.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-1024x1024.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-150x150.jpeg 150w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-768x768.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-600x600.jpeg 600w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></figure><h3>Dart Boards</h3><p>System Amusement offers the best dart boards such as the Arachnid Bullshooter. Dart boards provide a classic game that everyone loves, yet our cutting edge equipment gives a modern and interactive twist.</p>		\n			<figure><img width=\"578\" height=\"582\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-28-at-4.11.46-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-28-at-4.11.46-PM.png 578w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-28-at-4.11.46-PM-298x300.png 298w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-28-at-4.11.46-PM-150x150.png 150w\" sizes=\"(max-width: 578px) 100vw, 578px\" /></figure><h3>Pool Tables</h3><p>Pool tables are a must for successful bars. We offer quarter pool machines that will keep your customers excited and in your location for hours.</p>		\n			<figure><img width=\"352\" height=\"459\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717.jpg 352w, https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717-230x300.jpg 230w\" sizes=\"(max-width: 352px) 100vw, 352px\" /></figure><h3>Touch Tunes</h3><p>System Amusement proudly provides the Touch Tunes music system, that will bring the entertainment in your location to a whole new level!</p>		\n			<figure><img width=\"1210\" height=\"1182\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM.png 1210w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-300x293.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-1024x1000.png 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-768x750.png 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-600x586.png 600w\" sizes=\"(max-width: 1210px) 100vw, 1210px\" /></figure><h3>Juke Boxes</h3><p>These have been a classic for literally decades. System Amusement carries the highest tech juke boxes in the industry. Contact us today to order yours.</p>		\n	    <h3>\n                        Contact System Amusement Today                    \n            </h3>\n                    <h3>\n                Phone:            </h3>\n                509-326-1551 \n                    <h3>\n                Email:            </h3>\n                systemamusement@comcast.net\n                    <h3>\n                Hours:            </h3>\n                Mon - Sat: 8 am - 5 pm, <br>Sunday: CLOSED\n															<img width=\"2560\" height=\"1708\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-600x400.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our 50+ Years of Dedication to our Clients!                    \n            </h3>\n		<p>Your success is our success!</p>		\n                1\n                %\n                            Quality Equipment\n                1\n                %\n                            Attention to Detail\n                1\n                %\n                            Reliable Support\n                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n															<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />','Our Services','','inherit','closed','closed','','409-revision-v1','','','2021-04-28 23:20:53','2021-04-28 23:20:53','',409,'https://sa7717.dev34.info/?p=4489',0,'revision','',0),(4490,1,'2021-04-28 23:21:45','2021-04-28 23:21:45','<h3>\n                        Our Services                    \n            </h3>\n		<p style=\"text-align: center;\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. </p><p style=\"text-align: center;\"><strong>Call now: <a href=\"tel:509-993-4655\">509-993-4655</a></strong></p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Pinball Machines</h3><p>We offer some of the most cutting edge and popular pinball machines you can have in your location. </p>		\n			<figure><img width=\"300\" height=\"320\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221-281x300.jpeg 281w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></figure><h3>ATM Machines</h3><p>This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!</p>		\n			<figure><img width=\"692\" height=\"848\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png 692w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-245x300.png 245w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-600x735.png 600w\" sizes=\"(max-width: 692px) 100vw, 692px\" /></figure><h3>Ski Ball</h3><p>Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.</p>		\n			<figure><img width=\"933\" height=\"1432\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee.jpeg 933w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-195x300.jpeg 195w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-667x1024.jpeg 667w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-768x1179.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-600x921.jpeg 600w\" sizes=\"(max-width: 933px) 100vw, 933px\" /></figure><h3>Games</h3><p>We have the most poplur bar games of all time like Buck Hunter and Golden Tee Golf. Get your location setup with these modern classics.</p>		\n			<figure><img width=\"1080\" height=\"1080\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/darts.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/darts.jpeg 1080w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-300x300.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-1024x1024.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-150x150.jpeg 150w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-768x768.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-600x600.jpeg 600w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></figure><h3>Dart Boards</h3><p>System Amusement offers the best dart boards such as the Arachnid Bullshooter. Dart boards provide a classic game that everyone loves, yet our cutting edge equipment gives a modern and interactive twist.</p>		\n			<figure><img width=\"578\" height=\"582\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-28-at-4.11.46-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-28-at-4.11.46-PM.png 578w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-28-at-4.11.46-PM-298x300.png 298w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-28-at-4.11.46-PM-150x150.png 150w\" sizes=\"(max-width: 578px) 100vw, 578px\" /></figure><h3>Pool Tables</h3><p>Pool tables are a must for successful bars. We offer quarter pool machines that will keep your customers excited and in your location for hours.</p>		\n			<figure><img width=\"352\" height=\"459\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717.jpg 352w, https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717-230x300.jpg 230w\" sizes=\"(max-width: 352px) 100vw, 352px\" /></figure><h3>Touch Tunes</h3><p>System Amusement proudly provides the Touch Tunes music system, that will bring the entertainment in your location to a whole new level!</p>		\n			<figure><img width=\"1210\" height=\"1182\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM.png 1210w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-300x293.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-1024x1000.png 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-768x750.png 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-600x586.png 600w\" sizes=\"(max-width: 1210px) 100vw, 1210px\" /></figure><h3>Juke Boxes</h3><p>These have been a classic for literally decades. System Amusement carries the highest tech juke boxes in the industry. Contact us today to order yours.</p>		\n	    <h3>\n                        Contact System Amusement Today                    \n            </h3>\n                    <h3>\n                Phone:            </h3>\n                509-326-1551 \n                    <h3>\n                Email:            </h3>\n                systemamusement@comcast.net\n                    <h3>\n                Hours:            </h3>\n                Mon - Sat: 8 am - 5 pm, <br>Sunday: CLOSED\n															<img width=\"2560\" height=\"1708\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-600x400.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our 50+ Years of Dedication to our Clients!                    \n            </h3>\n		<p>Your success is our success!</p>		\n                1\n                %\n                            Quality Equipment\n                1\n                %\n                            Attention to Detail\n                1\n                %\n                            Reliable Support\n                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n															<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />','Our Services','','inherit','closed','closed','','409-revision-v1','','','2021-04-28 23:21:45','2021-04-28 23:21:45','',409,'https://sa7717.dev34.info/?p=4490',0,'revision','',0),(4491,1,'2021-04-28 23:21:45','2021-04-28 23:21:45','<h3>\n                        Our Services                    \n            </h3>\n		<p style=\"text-align: center;\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. </p><p style=\"text-align: center;\"><strong>Call now: <a href=\"tel:509-993-4655\">509-993-4655</a></strong></p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Pinball Machines</h3><p>We offer some of the most cutting edge and popular pinball machines you can have in your location. </p>		\n			<figure><img width=\"300\" height=\"320\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221-281x300.jpeg 281w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></figure><h3>ATM Machines</h3><p>This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!</p>		\n			<figure><img width=\"692\" height=\"848\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png 692w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-245x300.png 245w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-600x735.png 600w\" sizes=\"(max-width: 692px) 100vw, 692px\" /></figure><h3>Ski Ball</h3><p>Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.</p>		\n			<figure><img width=\"933\" height=\"1432\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee.jpeg 933w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-195x300.jpeg 195w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-667x1024.jpeg 667w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-768x1179.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-600x921.jpeg 600w\" sizes=\"(max-width: 933px) 100vw, 933px\" /></figure><h3>Games</h3><p>We have the most poplur bar games of all time like Buck Hunter and Golden Tee Golf. Get your location setup with these modern classics.</p>		\n			<figure><img width=\"1080\" height=\"1080\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/darts.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/darts.jpeg 1080w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-300x300.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-1024x1024.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-150x150.jpeg 150w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-768x768.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-600x600.jpeg 600w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></figure><h3>Dart Boards</h3><p>System Amusement offers the best dart boards such as the Arachnid Bullshooter. Dart boards provide a classic game that everyone loves, yet our cutting edge equipment gives a modern and interactive twist.</p>		\n			<figure><img width=\"578\" height=\"582\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-28-at-4.11.46-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-28-at-4.11.46-PM.png 578w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-28-at-4.11.46-PM-298x300.png 298w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-28-at-4.11.46-PM-150x150.png 150w\" sizes=\"(max-width: 578px) 100vw, 578px\" /></figure><h3>Pool Tables</h3><p>Pool tables are a must for successful bars. We offer quarter pool machines that will keep your customers excited and in your location for hours.</p>		\n			<figure><img width=\"352\" height=\"459\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717.jpg 352w, https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717-230x300.jpg 230w\" sizes=\"(max-width: 352px) 100vw, 352px\" /></figure><h3>Touch Tunes</h3><p>System Amusement proudly provides the Touch Tunes music system, that will bring the entertainment in your location to a whole new level!</p>		\n			<figure><img width=\"1210\" height=\"1182\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM.png 1210w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-300x293.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-1024x1000.png 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-768x750.png 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-600x586.png 600w\" sizes=\"(max-width: 1210px) 100vw, 1210px\" /></figure><h3>Juke Boxes</h3><p>These have been a classic for literally decades. System Amusement carries the highest tech juke boxes in the industry. Contact us today to order yours.</p>		\n	    <h3>\n                        Contact System Amusement Today                    \n            </h3>\n                    <h3>\n                Phone:            </h3>\n                509-326-1551 \n                    <h3>\n                Email:            </h3>\n                systemamusement@comcast.net\n                    <h3>\n                Hours:            </h3>\n                Mon - Sat: 8 am - 5 pm, <br>Sunday: CLOSED\n															<img width=\"2560\" height=\"1708\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-600x400.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our 50+ Years of Dedication to our Clients!                    \n            </h3>\n		<p>Your success is our success!</p>		\n                1\n                %\n                            Quality Equipment\n                1\n                %\n                            Attention to Detail\n                1\n                %\n                            Reliable Support\n                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n															<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />','Our Services','','inherit','closed','closed','','409-revision-v1','','','2021-04-28 23:21:45','2021-04-28 23:21:45','',409,'https://sa7717.dev34.info/?p=4491',0,'revision','',0),(4492,1,'2021-04-28 23:21:45','2021-04-28 23:21:45','<h3>\n                        Our Services                    \n            </h3>\n		<p style=\"text-align: center;\">System Amusement offers a full lineup of services and equipment to help you provide the most exciting entertainment and activities to your patrons. View from our selection below. If youd like to discuss how System Amusement can help you bring your location to the next level, contact us and lets start the conversation. </p><p style=\"text-align: center;\"><strong>Call now: <a href=\"tel:509-993-4655\">509-993-4655</a></strong></p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern.png 600w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-300x300.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/the-munsters-premium-pinball-cabinet-stern-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></figure><h3>Pinball Machines</h3><p>We offer some of the most cutting edge and popular pinball machines you can have in your location. </p>		\n			<figure><img width=\"300\" height=\"320\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/127abec3ea6540c295af41d2eead0221-281x300.jpeg 281w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></figure><h3>ATM Machines</h3><p>This is an absolute must have for any successful bar or entertainment location. Prevent your customers from leaving to get cash. Offer them the convenience right in your location!</p>		\n			<figure><img width=\"692\" height=\"848\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM.png 692w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-245x300.png 245w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.43.33-PM-600x735.png 600w\" sizes=\"(max-width: 692px) 100vw, 692px\" /></figure><h3>Ski Ball</h3><p>Ski ball offers a fun challenge to players of all ages and can be played individually or in groups. Contact System Amusement for specifics on these machines.</p>		\n			<figure><img width=\"933\" height=\"1432\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee.jpeg 933w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-195x300.jpeg 195w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-667x1024.jpeg 667w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-768x1179.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-tee-600x921.jpeg 600w\" sizes=\"(max-width: 933px) 100vw, 933px\" /></figure><h3>Games</h3><p>We have the most poplur bar games of all time like Buck Hunter and Golden Tee Golf. Get your location setup with these modern classics.</p>		\n			<figure><img width=\"1080\" height=\"1080\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/darts.jpeg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/darts.jpeg 1080w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-300x300.jpeg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-1024x1024.jpeg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-150x150.jpeg 150w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-768x768.jpeg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/darts-600x600.jpeg 600w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></figure><h3>Dart Boards</h3><p>System Amusement offers the best dart boards such as the Arachnid Bullshooter. Dart boards provide a classic game that everyone loves, yet our cutting edge equipment gives a modern and interactive twist.</p>		\n			<figure><img width=\"578\" height=\"582\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-28-at-4.11.46-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-28-at-4.11.46-PM.png 578w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-28-at-4.11.46-PM-298x300.png 298w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-28-at-4.11.46-PM-150x150.png 150w\" sizes=\"(max-width: 578px) 100vw, 578px\" /></figure><h3>Pool Tables</h3><p>Pool tables are a must for successful bars. We offer quarter pool machines that will keep your customers excited and in your location for hours.</p>		\n			<figure><img width=\"352\" height=\"459\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717.jpg 352w, https://sa7717.dev34.info/wp-content/uploads/2021/04/touch-tunes-717-230x300.jpg 230w\" sizes=\"(max-width: 352px) 100vw, 352px\" /></figure><h3>Touch Tunes</h3><p>System Amusement proudly provides the Touch Tunes music system, that will bring the entertainment in your location to a whole new level!</p>		\n			<figure><img width=\"1210\" height=\"1182\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM.png\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM.png 1210w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-300x293.png 300w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-1024x1000.png 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-768x750.png 768w, https://sa7717.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-14-at-3.32.35-PM-600x586.png 600w\" sizes=\"(max-width: 1210px) 100vw, 1210px\" /></figure><h3>Juke Boxes</h3><p>These have been a classic for literally decades. System Amusement carries the highest tech juke boxes in the industry. Contact us today to order yours.</p>		\n	    <h3>\n                        Contact System Amusement Today                    \n            </h3>\n                    <h3>\n                Phone:            </h3>\n                509-326-1551 \n                    <h3>\n                Email:            </h3>\n                systemamusement@comcast.net\n                    <h3>\n                Hours:            </h3>\n                Mon - Sat: 8 am - 5 pm, <br>Sunday: CLOSED\n															<img width=\"2560\" height=\"1708\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-300x200.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-1024x683.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-768x512.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-1536x1025.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-2048x1367.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/female-pool-player-taking-aim-at-the-cue-ball-PTXG426-600x400.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />															\n            What Makes System Amusement Different?                                \n	    <h3>\n                        Our 50+ Years of Dedication to our Clients!                    \n            </h3>\n		<p>Your success is our success!</p>		\n                1\n                %\n                            Quality Equipment\n                1\n                %\n                            Attention to Detail\n                1\n                %\n                            Reliable Support\n                1\n                %\n                            Client Dedication\n            Customer Reviews                                \n	    <h3>\n                            <i></i>\n                        What Our Clients Are Saying                    \n            </h3>\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;These guys will bend over backwards for your bar or place of business. Thanks guys&quot;\n                                    <h3>    \n                                        Logan                                    </h3>\n                                    Bar Owner\n                                        <img src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/golden-thumbsup-300x300.jpg\" width=\"300\" height=\"300\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                    \n                                                                &quot;System Amusement is the best company around for helping to being new life into a bar. Highly Recommended&quot;\n                                    <h3>    \n                                        Rebecca                                    </h3>\n                                    Bar Owner\n															<img width=\"2560\" height=\"1699\" src=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg\" alt=\"\" srcset=\"https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-scaled.jpg 2560w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-300x199.jpg 300w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1024x680.jpg 1024w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-768x510.jpg 768w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-1536x1019.jpg 1536w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-2048x1359.jpg 2048w, https://sa7717.dev34.info/wp-content/uploads/2021/03/portrait-of-male-bar-owner-standing-by-counter-K4LWCVT-600x398.jpg 600w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />','Our Services','','inherit','closed','closed','','409-revision-v1','','','2021-04-28 23:21:45','2021-04-28 23:21:45','',409,'https://sa7717.dev34.info/?p=4492',0,'revision','',0),(4495,1,'2021-05-20 00:21:47','2021-05-20 00:21:47','About us\n	    <h3>\n                        We’re a global stakeholder relations and consultancy.                    \n    </h3>\n		At vero eos et accusamus et iusto odio digni goiku sendeno\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. We bring more than 24 years’ senior experience forging of\ncollaborations across government.		\n	            		Praesent feugiat sem.	            	\n	            		A wonderful serenity.	            	\n	            		Premium services for you.	            	\n	            		Set a link back to photo.	            	\n		Call to ask <a href=\"#\">any question</a> 540-325-1523		\n										<img width=\"350\" height=\"1\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/about-gap.png\" alt=\"\" srcset=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/about-gap.png 350w, https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/about-gap-300x1.png 300w, https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/about-gap-150x1.png 150w, https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/about-gap-250x1.png 250w\" sizes=\"(max-width: 350px) 100vw, 350px\" />											\n        	<img width=\"95\" height=\"85\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/signature-02.png\" alt=\"\" />        \n    	<h3>Natalia Duke</h3>\n    	(Chairman and founder)\n    	<img width=\"510\" height=\"730\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/banner-01.png\" alt=\"\" />        <h3>24 Years of Experience</h3>\n			Pricing\n	    <h3>\n                        We\'re ready to share our advice and experience.                    \n    </h3>\n		The main difference between Statistic and Statistics is that the Statistic is a single measure of some attribute of a sample and Statistics is a study of the collection.		\n                                <img width=\"60\" height=\"65\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-service-icon4.png\" alt=\"\" />                            \n                        <h3>    \n                            Tax Consultancy                        </h3>\n                        This is one of many areas of\nprofessional services where our firm is well ahead of the competition.\n                                                    <a href=\"https://demo.casethemes.net/consultio-tax/service/business-strategy/\"></a>\n                                <img width=\"74\" height=\"65\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-service-icon5.png\" alt=\"\" />                            \n                        <h3>    \n                            Audit & assurance                        </h3>\n                        People are only as good as the tools they possess. So, to consistently deliver high-quality auditing services.\n                                                    <a href=\"https://demo.casethemes.net/consultio-tax/service/business-strategy/\"></a>\n                                <img width=\"51\" height=\"65\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-service-icon6.png\" alt=\"\" />                            \n                        <h3>    \n                            Value Added Tax                        </h3>\n                        We are providing and dealing with all sorts of legal and professional services and matters to operate.\n                                                    <a href=\"https://demo.casethemes.net/consultio-tax/service/business-strategy/\"></a>\n                                <img width=\"57\" height=\"65\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-service-icon7.png\" alt=\"\" />                            \n                        <h3>    \n                            Accounting Services                        </h3>\n                        Our professionals provide a range of accounting and assurance services of the highest standards.\n                                                    <a href=\"https://demo.casethemes.net/consultio-tax/service/business-strategy/\"></a>\n                                <img width=\"58\" height=\"65\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-service-icon8.png\" alt=\"\" />                            \n                        <h3>    \n                            Tax Outsourcing                        </h3>\n                        Unlike our competitors we have in house qualified lawyers and accountants who can help you.\n                                                    <a href=\"https://demo.casethemes.net/consultio-tax/service/business-strategy/\"></a>\n                                <img width=\"63\" height=\"65\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-service-icon9.png\" alt=\"\" />                            \n                        <h3>    \n                            Amazing Strategy                        </h3>\n                        Operates an atmosphere that promote creative approach for clients needs.\n                                                    <a href=\"https://demo.casethemes.net/consultio-tax/service/business-strategy/\"></a>\n	Like What We Offer\n	    <h3>\n                        DO BUSINESS<br />\nWITH US!                    \n    </h3>\n	In order to acquire our services please kindly send us your inquiry of interest. We shall revert back\nimmediately.\n    <a href=\"https://demo.casethemes.net/consultio-tax/contact/\">\n                Contact us\n    </a>\n                        <i>Our Value</i>\n                        <i>Our Mission</i>\n                        <i>Payroll Service</i>\n                            We Have Over 3000 Registered Human Resource Portals To Seek out the Best For Your Company.\nNetworks of our affiliates spreads all over the world inorder to provide a good grip in the Global Human Resource Recruitment System.\n                            Our professionals provide a range of accounting and assurance services of the highest standards.\nNetworks of our affiliates spreads all over the world inorder to provide a good grip in the Global Human Resource Recruitment System.\n                            People are only as good as the tools they possess. So, to consistently deliver high-quality auditing.\nNetworks of our affiliates spreads all over the world inorder to provide a good grip in the Global Human Resource Recruitment System.\n			Team\n	    <h3>\n                        We draw on our global network to\nassemble a team of experts.                    \n    </h3>\n                                He has extensive experience in\norganizational design, business process reengineering.\n                                <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/team-single-360x360.jpg\" width=\"360\" height=\"360\" alt=\"team-single\" title=\"team-single\" />                                <a href=\"https://demo.casethemes.net/consultio-tax/team-details/\"></a>\n                                                <h3>    \n                            Fran Bostick                        </h3>\n                                                                        <a href=\"#\"></a>\n                                                                            <a href=\"#\"></a>\n                                                                            <a href=\"#\"></a>\n                                                                            <a href=\"#\"></a>\n                            Founder &amp; CEO\n                                He has extensive experience in\norganizational design, business process reengineering.\n                                <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-team2-360x360.jpg\" width=\"360\" height=\"360\" alt=\"h6-team2\" title=\"h6-team2\" />                                <a href=\"https://demo.casethemes.net/consultio-tax/team-details/\"></a>\n                                                <h3>    \n                            Tina Holt                        </h3>\n                                                                        <a href=\"#\"></a>\n                                                                            <a href=\"#\"></a>\n                                                                            <a href=\"#\"></a>\n                                                                            <a href=\"\"></a>\n                            Federal Contractor\n                                He has extensive experience in\norganizational design, business process reengineering.\n                                <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-team3-360x360.jpg\" width=\"360\" height=\"360\" alt=\"h6-team3\" title=\"h6-team3\" />                                <a href=\"https://demo.casethemes.net/consultio-tax/team-details/\"></a>\n                                                <h3>    \n                            Charles Wilkinson                        </h3>\n                                                                        <a href=\"#\"></a>\n                                                                            <a href=\"#\"></a>\n                                                                            <a href=\"#\"></a>\n                                                                            <a href=\"#\"></a>\n                            Founder &amp; CEO\n                                He has extensive experience in\norganizational design, business process reengineering.\n                                <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-team4-360x360.jpg\" width=\"360\" height=\"360\" alt=\"h6-team4\" title=\"h6-team4\" />                                <a href=\"https://demo.casethemes.net/consultio-tax/team-details/\"></a>\n                                                <h3>    \n                            Michael Alan Tate                        </h3>\n                                                                        <a href=\"#\"></a>\n                                                                            <a href=\"#\"></a>\n                                                                            <a href=\"#\"></a>\n                                                                            <a href=\"\"></a>\n                            Vice President\n                                He has extensive experience in\norganizational design, business process reengineering.\n                                <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-team1.jpg\" width=\"350\" height=\"350\" alt=\"h6-team1\" title=\"h6-team1\" />                                <a href=\"https://demo.casethemes.net/consultio-tax/team-details/\"></a>\n                                                <h3>    \n                            Suzanne Higgins                        </h3>\n                                                                        <a href=\"#\"></a>\n                                                                            <a href=\"#\"></a>\n                                                                            <a href=\"#\"></a>\n                                                                            <a href=\"\"></a>\n                            Senior Consultant\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','About v.3','','inherit','closed','closed','','3493-revision-v1','','','2021-05-20 00:21:47','2021-05-20 00:21:47','',3493,'https://sa7717.dev34.info/?p=4495',0,'revision','',0),(4496,1,'2021-05-20 00:21:47','2021-05-20 00:21:47','About us\n	    <h3>\n                        We’re a global stakeholder relations and consultancy.                    \n    </h3>\n		At vero eos et accusamus et iusto odio digni goiku sendeno\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. We bring more than 24 years’ senior experience forging of\ncollaborations across government.		\n	            		Praesent feugiat sem.	            	\n	            		A wonderful serenity.	            	\n	            		Premium services for you.	            	\n	            		Set a link back to photo.	            	\n		Call to ask <a href=\"#\">any question</a> 540-325-1523		\n										<img width=\"350\" height=\"1\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/about-gap.png\" alt=\"\" srcset=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/about-gap.png 350w, https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/about-gap-300x1.png 300w, https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/about-gap-150x1.png 150w, https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/about-gap-250x1.png 250w\" sizes=\"(max-width: 350px) 100vw, 350px\" />											\n        	<img width=\"95\" height=\"85\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/signature-02.png\" alt=\"\" />        \n    	<h3>Natalia Duke</h3>\n    	(Chairman and founder)\n    	<img width=\"510\" height=\"730\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/banner-01.png\" alt=\"\" />        <h3>24 Years of Experience</h3>\n			Pricing\n	    <h3>\n                        We\'re ready to share our advice and experience.                    \n    </h3>\n		The main difference between Statistic and Statistics is that the Statistic is a single measure of some attribute of a sample and Statistics is a study of the collection.		\n                                <img width=\"60\" height=\"65\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-service-icon4.png\" alt=\"\" />                            \n                        <h3>    \n                            Tax Consultancy                        </h3>\n                        This is one of many areas of\nprofessional services where our firm is well ahead of the competition.\n                                                    <a href=\"https://demo.casethemes.net/consultio-tax/service/business-strategy/\"></a>\n                                <img width=\"74\" height=\"65\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-service-icon5.png\" alt=\"\" />                            \n                        <h3>    \n                            Audit & assurance                        </h3>\n                        People are only as good as the tools they possess. So, to consistently deliver high-quality auditing services.\n                                                    <a href=\"https://demo.casethemes.net/consultio-tax/service/business-strategy/\"></a>\n                                <img width=\"51\" height=\"65\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-service-icon6.png\" alt=\"\" />                            \n                        <h3>    \n                            Value Added Tax                        </h3>\n                        We are providing and dealing with all sorts of legal and professional services and matters to operate.\n                                                    <a href=\"https://demo.casethemes.net/consultio-tax/service/business-strategy/\"></a>\n                                <img width=\"57\" height=\"65\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-service-icon7.png\" alt=\"\" />                            \n                        <h3>    \n                            Accounting Services                        </h3>\n                        Our professionals provide a range of accounting and assurance services of the highest standards.\n                                                    <a href=\"https://demo.casethemes.net/consultio-tax/service/business-strategy/\"></a>\n                                <img width=\"58\" height=\"65\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-service-icon8.png\" alt=\"\" />                            \n                        <h3>    \n                            Tax Outsourcing                        </h3>\n                        Unlike our competitors we have in house qualified lawyers and accountants who can help you.\n                                                    <a href=\"https://demo.casethemes.net/consultio-tax/service/business-strategy/\"></a>\n                                <img width=\"63\" height=\"65\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-service-icon9.png\" alt=\"\" />                            \n                        <h3>    \n                            Amazing Strategy                        </h3>\n                        Operates an atmosphere that promote creative approach for clients needs.\n                                                    <a href=\"https://demo.casethemes.net/consultio-tax/service/business-strategy/\"></a>\n	Like What We Offer\n	    <h3>\n                        DO BUSINESS<br />\nWITH US!                    \n    </h3>\n	In order to acquire our services please kindly send us your inquiry of interest. We shall revert back\nimmediately.\n    <a href=\"https://demo.casethemes.net/consultio-tax/contact/\">\n                Contact us\n    </a>\n                        <i>Our Value</i>\n                        <i>Our Mission</i>\n                        <i>Payroll Service</i>\n                            We Have Over 3000 Registered Human Resource Portals To Seek out the Best For Your Company.\nNetworks of our affiliates spreads all over the world inorder to provide a good grip in the Global Human Resource Recruitment System.\n                            Our professionals provide a range of accounting and assurance services of the highest standards.\nNetworks of our affiliates spreads all over the world inorder to provide a good grip in the Global Human Resource Recruitment System.\n                            People are only as good as the tools they possess. So, to consistently deliver high-quality auditing.\nNetworks of our affiliates spreads all over the world inorder to provide a good grip in the Global Human Resource Recruitment System.\n			Team\n	    <h3>\n                        We draw on our global network to\nassemble a team of experts.                    \n    </h3>\n                                He has extensive experience in\norganizational design, business process reengineering.\n                                <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/team-single-360x360.jpg\" width=\"360\" height=\"360\" alt=\"team-single\" title=\"team-single\" />                                <a href=\"https://demo.casethemes.net/consultio-tax/team-details/\"></a>\n                                                <h3>    \n                            Fran Bostick                        </h3>\n                                                                        <a href=\"#\"></a>\n                                                                            <a href=\"#\"></a>\n                                                                            <a href=\"#\"></a>\n                                                                            <a href=\"#\"></a>\n                            Founder &amp; CEO\n                                He has extensive experience in\norganizational design, business process reengineering.\n                                <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-team2-360x360.jpg\" width=\"360\" height=\"360\" alt=\"h6-team2\" title=\"h6-team2\" />                                <a href=\"https://demo.casethemes.net/consultio-tax/team-details/\"></a>\n                                                <h3>    \n                            Tina Holt                        </h3>\n                                                                        <a href=\"#\"></a>\n                                                                            <a href=\"#\"></a>\n                                                                            <a href=\"#\"></a>\n                                                                            <a href=\"\"></a>\n                            Federal Contractor\n                                He has extensive experience in\norganizational design, business process reengineering.\n                                <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-team3-360x360.jpg\" width=\"360\" height=\"360\" alt=\"h6-team3\" title=\"h6-team3\" />                                <a href=\"https://demo.casethemes.net/consultio-tax/team-details/\"></a>\n                                                <h3>    \n                            Charles Wilkinson                        </h3>\n                                                                        <a href=\"#\"></a>\n                                                                            <a href=\"#\"></a>\n                                                                            <a href=\"#\"></a>\n                                                                            <a href=\"#\"></a>\n                            Founder &amp; CEO\n                                He has extensive experience in\norganizational design, business process reengineering.\n                                <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-team4-360x360.jpg\" width=\"360\" height=\"360\" alt=\"h6-team4\" title=\"h6-team4\" />                                <a href=\"https://demo.casethemes.net/consultio-tax/team-details/\"></a>\n                                                <h3>    \n                            Michael Alan Tate                        </h3>\n                                                                        <a href=\"#\"></a>\n                                                                            <a href=\"#\"></a>\n                                                                            <a href=\"#\"></a>\n                                                                            <a href=\"\"></a>\n                            Vice President\n                                He has extensive experience in\norganizational design, business process reengineering.\n                                <img src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2020/02/h6-team1.jpg\" width=\"350\" height=\"350\" alt=\"h6-team1\" title=\"h6-team1\" />                                <a href=\"https://demo.casethemes.net/consultio-tax/team-details/\"></a>\n                                                <h3>    \n                            Suzanne Higgins                        </h3>\n                                                                        <a href=\"#\"></a>\n                                                                            <a href=\"#\"></a>\n                                                                            <a href=\"#\"></a>\n                                                                            <a href=\"\"></a>\n                            Senior Consultant\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-tax/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','About v.3','','inherit','closed','closed','','3493-revision-v1','','','2021-05-20 00:21:47','2021-05-20 00:21:47','',3493,'https://sa7717.dev34.info/?p=4496',0,'revision','',0);
/*!40000 ALTER TABLE `wp9s_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp9s_revslider_css`
--

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

--
-- Dumping data for table `wp9s_revslider_css`
--

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

--
-- Table structure for table `wp9s_revslider_css_bkp`
--

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

--
-- Dumping data for table `wp9s_revslider_css_bkp`
--

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

--
-- Table structure for table `wp9s_revslider_layer_animations`
--

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

--
-- Dumping data for table `wp9s_revslider_layer_animations`
--

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

--
-- Table structure for table `wp9s_revslider_layer_animations_bkp`
--

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

--
-- Dumping data for table `wp9s_revslider_layer_animations_bkp`
--

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

--
-- Table structure for table `wp9s_revslider_navigations`
--

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

--
-- Dumping data for table `wp9s_revslider_navigations`
--

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

--
-- Table structure for table `wp9s_revslider_navigations_bkp`
--

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

--
-- Dumping data for table `wp9s_revslider_navigations_bkp`
--

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

--
-- Table structure for table `wp9s_revslider_sliders`
--

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

--
-- Dumping data for table `wp9s_revslider_sliders`
--

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

--
-- Table structure for table `wp9s_revslider_sliders_bkp`
--

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

--
-- Dumping data for table `wp9s_revslider_sliders_bkp`
--

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

--
-- Table structure for table `wp9s_revslider_slides`
--

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

--
-- Dumping data for table `wp9s_revslider_slides`
--

LOCK TABLES `wp9s_revslider_slides` WRITE;
/*!40000 ALTER TABLE `wp9s_revslider_slides` DISABLE KEYS */;
INSERT INTO `wp9s_revslider_slides` VALUES (1,1,4,'{\"runtime\":{\"collapsedGroups\":[]},\"bg\":{\"type\":\"image\",\"image\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"imageId\":4108,\"imageLib\":\"medialibrary\",\"lastLoadedImage\":{\"width\":1920,\"height\":960,\"src\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-slider-01.jpg\"},\"imageWidth\":2560,\"imageHeight\":1440,\"imageRatio\":1.77777777777777767909128669998608529567718505859375},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"publish\":{\"state\":\"unpublished\"},\"slideChange\":{\"in\":{\"o\":0},\"out\":{\"a\":false},\"title\":\"*opacity* Fade In\",\"main\":\"basic\",\"group\":\"fade\",\"preset\":\"fade\"},\"panzoom\":{\"set\":true,\"fitEnd\":\"100%\",\"fitStart\":\"112%\"}}','{\"0\":{\"text\":\"\",\"alias\":\"Group-0\",\"uid\":0,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"800px\",\"e\":true},\"n\":{\"v\":\"800px\"},\"t\":{\"v\":\"800px\"},\"m\":{\"v\":\"800px\"}},\"height\":{\"d\":{\"v\":\"393px\",\"e\":true},\"n\":{\"v\":\"393px\"},\"t\":{\"v\":\"318px\",\"e\":true},\"m\":{\"v\":\"340px\",\"e\":true}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667406815349750104360282421112060546875},\"n\":{\"v\":1.6666666666666667406815349750104360282421112060546875},\"t\":{\"v\":1.6666666666666667406815349750104360282421112060546875},\"m\":{\"v\":1.6666666666666667406815349750104360282421112060546875}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":11},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false},\"group\":{\"groupOrder\":11},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":1},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":8700,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false,\"hoverFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"group\"},\"1\":{\"text\":\"Prosper in this\\nvolatile market\\n<span class=\\\"text-shadow-preset1\\\">funding.<\\/span>\",\"alias\":\"Text-1\",\"uid\":1,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-15px\",\"e\":true},\"n\":{\"v\":\"-15px\"},\"t\":{\"v\":\"-15px\"},\"m\":{\"v\":\"-15px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":8},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"0\",\"groupOrder\":8},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":50},\"n\":{\"v\":50},\"t\":{\"v\":50},\"m\":{\"v\":50}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"speed\":1000,\"start\":800,\"startRelative\":800,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"600\",\"start\":9000,\"startRelative\":7200,\"endWithSlide\":true,\"frameLength\":600}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":800},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false,\"hoverFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Poppins\",\"fontSize\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"60px\"},\"t\":{\"v\":\"40px\",\"e\":true},\"m\":{\"v\":\"36px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"lineHeight\":{\"d\":{\"v\":\"72px\",\"e\":true},\"n\":{\"v\":\"72px\"},\"t\":{\"v\":\"51px\",\"e\":true},\"m\":{\"v\":\"48px\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"2\":{\"text\":\"We place you at the centre of international networks to advance your interests.\",\"alias\":\"Text-2\",\"uid\":2,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"450px\",\"e\":true},\"n\":{\"v\":\"450px\"},\"t\":{\"v\":\"350px\",\"e\":true},\"m\":{\"v\":\"290px\",\"e\":true}},\"height\":{\"d\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"224px\",\"e\":true},\"n\":{\"v\":\"224px\"},\"t\":{\"v\":\"167px\",\"e\":true},\"m\":{\"v\":\"157px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":9},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"0\",\"groupOrder\":9},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":50},\"n\":{\"v\":50},\"t\":{\"v\":50},\"m\":{\"v\":50}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"speed\":1000,\"start\":1100,\"startRelative\":1100,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"600\",\"start\":9000,\"startRelative\":6900,\"endWithSlide\":true,\"frameLength\":600}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":1100},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false,\"hoverFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Poppins\",\"fontSize\":{\"d\":{\"v\":\"19px\",\"e\":true},\"n\":{\"v\":\"19px\"},\"t\":{\"v\":\"16px\",\"e\":true},\"m\":{\"v\":\"15px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\"},\"m\":{\"v\":\"500\"}},\"lineHeight\":{\"d\":{\"v\":\"32px\",\"e\":true},\"n\":{\"v\":\"32px\"},\"t\":{\"v\":\"27px\",\"e\":true},\"m\":{\"v\":\"27px\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"3\":{\"text\":\"Our Team<i class=\\\"fac fac-angle-right space-left\\\"><\\/i>\",\"alias\":\"Button-3\",\"uid\":3,\"toggle\":{\"text\":\"\"},\"size\":{\"minWidth\":{\"d\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":\"0px\",\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":10},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"0\",\"groupOrder\":10},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":50},\"n\":{\"v\":50},\"t\":{\"v\":50},\"m\":{\"v\":50}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"speed\":1000,\"start\":1400,\"startRelative\":1400,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"600\",\"start\":9000,\"startRelative\":6600,\"endWithSlide\":true,\"frameLength\":600}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":1400},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":true,\"hoverFilterUsed\":true},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,42,0,42],\"e\":true},\"n\":{\"v\":[0,42,0,42],\"e\":false},\"t\":{\"v\":[0,42,0,42],\"e\":false},\"m\":{\"v\":[0,42,0,42],\"e\":false}},\"fontFamily\":\"Poppins\",\"fontSize\":{\"d\":{\"v\":\"16px\",\"e\":true},\"n\":{\"v\":\"16px\"},\"t\":{\"v\":\"16px\"},\"m\":{\"v\":\"16px\"}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"lineHeight\":{\"d\":{\"v\":\"56px\",\"e\":true},\"n\":{\"v\":\"56px\"},\"t\":{\"v\":\"56px\"},\"m\":{\"v\":\"56px\"}},\"backgroundColor\":\"#4b58ff\",\"borderRadius\":{\"v\":[\"42px\",\"42px\",\"42px\",\"42px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"usehover\":true,\"backgroundColor\":\"#5796ff\",\"borderRadius\":{\"v\":[\"42px\",\"42px\",\"42px\",\"42px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"filter\":{\"brightness\":\"120%\",\"blir\":0}},\"actions\":{\"action\":[]},\"runtime\":{\"internalClass\":\"rev-btn\"},\"type\":\"button\"},\"5\":{\"text\":\"\",\"alias\":\"Image-5\",\"uid\":5,\"media\":{\"imageUrl\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2020\\/01\\/h6-shape1.png\",\"imageId\":3275,\"loaded\":true},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"100px\",\"e\":true},\"n\":{\"v\":\"100px\"},\"t\":{\"v\":\"100px\"},\"m\":{\"v\":\"100px\"}},\"height\":{\"d\":{\"v\":\"114px\",\"e\":true},\"n\":{\"v\":\"114px\"},\"t\":{\"v\":\"114px\"},\"m\":{\"v\":\"114px\"}},\"originalWidth\":100,\"originalHeight\":114,\"aspectRatio\":{\"d\":{\"v\":0.87719298245614030218320067433523945510387420654296875},\"n\":{\"v\":0.87719298245614030218320067433523945510387420654296875},\"t\":{\"v\":0.87719298245614030218320067433523945510387420654296875},\"m\":{\"v\":0.87719298245614030218320067433523945510387420654296875}},\"scaleProportional\":true,\"originalSize\":true},\"position\":{\"x\":{\"d\":{\"v\":\"55px\",\"e\":true},\"n\":{\"v\":\"55px\"},\"t\":{\"v\":\"55px\"},\"m\":{\"v\":\"55px\"}},\"y\":{\"d\":{\"v\":\"70px\",\"e\":true},\"n\":{\"v\":\"70px\"},\"t\":{\"v\":\"70px\"},\"m\":{\"v\":\"70px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":13},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":13},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false,\"hoverFilterUsed\":false},\"effects\":{\"parallax\":\"3\"},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"image\"},\"6\":{\"text\":\"\",\"alias\":\"Image-6\",\"uid\":6,\"media\":{\"imageUrl\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2020\\/01\\/h6-shape2.png\",\"imageId\":3276,\"loaded\":true},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"25px\",\"e\":true},\"n\":{\"v\":\"25px\"},\"t\":{\"v\":\"25px\"},\"m\":{\"v\":\"25px\"}},\"height\":{\"d\":{\"v\":\"29px\",\"e\":true},\"n\":{\"v\":\"29px\"},\"t\":{\"v\":\"29px\"},\"m\":{\"v\":\"29px\"}},\"originalWidth\":25,\"originalHeight\":29,\"aspectRatio\":{\"d\":{\"v\":0.8620689655172413257133712249924428761005401611328125},\"n\":{\"v\":0.8620689655172413257133712249924428761005401611328125},\"t\":{\"v\":0.8620689655172413257133712249924428761005401611328125},\"m\":{\"v\":0.8620689655172413257133712249924428761005401611328125}},\"scaleProportional\":true,\"originalSize\":true},\"position\":{\"x\":{\"d\":{\"v\":\"-140px\",\"e\":true},\"n\":{\"v\":\"-140px\"},\"t\":{\"v\":\"-140px\"},\"m\":{\"v\":\"-140px\"}},\"y\":{\"d\":{\"v\":\"-80px\",\"e\":true},\"n\":{\"v\":\"-80px\"},\"t\":{\"v\":\"-80px\"},\"m\":{\"v\":\"-80px\"}},\"horizontal\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"right\"},\"t\":{\"v\":\"right\"},\"m\":{\"v\":\"right\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":14},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false},\"group\":{\"groupOrder\":14},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"loop\":{\"use\":true,\"ease\":\"power0.in\",\"speed\":\"30000\",\"curviness\":8,\"curved\":true,\"start\":\"10\",\"frame_0\":{\"yr\":\"100px\",\"xr\":\"70px\"},\"frame_999\":{\"xr\":\"60px\",\"yr\":\"80px\"}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false,\"hoverFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"image\"},\"7\":{\"text\":\"\",\"alias\":\"Image-7\",\"uid\":7,\"media\":{\"imageUrl\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2020\\/01\\/h6-shape4.png\",\"imageId\":3278,\"loaded\":true},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"11px\",\"e\":true},\"n\":{\"v\":\"11px\"},\"t\":{\"v\":\"11px\"},\"m\":{\"v\":\"11px\"}},\"height\":{\"d\":{\"v\":\"13px\",\"e\":true},\"n\":{\"v\":\"13px\"},\"t\":{\"v\":\"13px\"},\"m\":{\"v\":\"13px\"}},\"originalWidth\":11,\"originalHeight\":13,\"aspectRatio\":{\"d\":{\"v\":0.84615384615384614530597673365264199674129486083984375},\"n\":{\"v\":0.84615384615384614530597673365264199674129486083984375},\"t\":{\"v\":0.84615384615384614530597673365264199674129486083984375},\"m\":{\"v\":0.84615384615384614530597673365264199674129486083984375}},\"scaleProportional\":true,\"originalSize\":true},\"position\":{\"x\":{\"d\":{\"v\":\"-60px\",\"e\":true},\"n\":{\"v\":\"-60px\"},\"t\":{\"v\":\"-60px\"},\"m\":{\"v\":\"-60px\"}},\"y\":{\"d\":{\"v\":\"130px\",\"e\":true},\"n\":{\"v\":\"130px\"},\"t\":{\"v\":\"130px\"},\"m\":{\"v\":\"130px\"}},\"horizontal\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"right\"},\"t\":{\"v\":\"right\"},\"m\":{\"v\":\"right\"}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":15},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false},\"group\":{\"groupOrder\":15},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"loop\":{\"use\":true,\"ease\":\"sine.inOut\",\"speed\":3000,\"yoyo_rotate\":true,\"frame_0\":{\"rotationY\":-40},\"frame_999\":{\"rotationY\":40},\"originZ\":60},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false,\"hoverFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"image\"},\"8\":{\"text\":\"\",\"alias\":\"Image-8\",\"uid\":8,\"media\":{\"imageUrl\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2020\\/01\\/h6-shape3.png\",\"imageId\":3277,\"loaded\":true},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"18px\",\"e\":true},\"n\":{\"v\":\"14px\"},\"t\":{\"v\":\"10px\"},\"m\":{\"v\":\"6px\"}},\"height\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"16px\"},\"t\":{\"v\":\"12px\"},\"m\":{\"v\":\"7px\"}},\"originalWidth\":18,\"originalHeight\":20,\"aspectRatio\":{\"d\":{\"v\":0.90000000000000002220446049250313080847263336181640625},\"n\":{\"v\":0.90000000000000002220446049250313080847263336181640625},\"t\":{\"v\":0.90000000000000002220446049250313080847263336181640625},\"m\":{\"v\":0.90000000000000002220446049250313080847263336181640625}},\"scaleProportional\":true,\"originalSize\":true},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":16},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false},\"group\":{\"groupOrder\":16},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"loop\":{\"use\":true,\"ease\":\"power0.in\",\"speed\":\"20000\",\"curved\":true,\"frame_0\":{\"yr\":\"-100px\",\"xr\":\"50px\"},\"frame_999\":{\"xr\":\"80px\",\"yr\":\"-160px\"}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false,\"hoverFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"image\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7},\"text\":\"\",\"version\":\"6.4.0\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6},\"text\":\"\",\"version\":\"6.4.0\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5},\"text\":\"\",\"version\":\"6.4.0\"}}','{\"version\":\"6.4.6\"}'),(2,1,3,'{\"runtime\":{\"collapsedGroups\":[]},\"bg\":{\"type\":\"image\",\"image\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/i-am-blue-C3X74HU-scaled.jpg\",\"imageId\":4108,\"imageLib\":\"medialibrary\",\"lastLoadedImage\":{\"width\":1920,\"height\":960,\"src\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-slider-01.jpg\"},\"imageWidth\":2560,\"imageHeight\":1440,\"imageRatio\":1.77777777777777767909128669998608529567718505859375},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"publish\":{\"state\":\"unpublished\"},\"slideChange\":{\"in\":{\"o\":0},\"out\":{\"a\":false},\"title\":\"*opacity* Fade In\",\"main\":\"basic\",\"group\":\"fade\",\"preset\":\"fade\"},\"panzoom\":{\"set\":true,\"fitEnd\":\"100%\",\"fitStart\":\"112%\"}}','{\"0\":{\"text\":\"\",\"alias\":\"Group-0\",\"uid\":0,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"800px\",\"e\":true},\"n\":{\"v\":\"800px\"},\"t\":{\"v\":\"800px\"},\"m\":{\"v\":\"800px\"}},\"height\":{\"d\":{\"v\":\"393px\",\"e\":true},\"n\":{\"v\":\"393px\"},\"t\":{\"v\":\"318px\",\"e\":true},\"m\":{\"v\":\"340px\",\"e\":true}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667406815349750104360282421112060546875},\"n\":{\"v\":1.6666666666666667406815349750104360282421112060546875},\"t\":{\"v\":1.6666666666666667406815349750104360282421112060546875},\"m\":{\"v\":1.6666666666666667406815349750104360282421112060546875}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":11},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false},\"group\":{\"groupOrder\":11},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":1},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":8700,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false,\"hoverFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"group\"},\"1\":{\"text\":\"Prosper in this\\nvolatile market\\n<span class=\\\"text-shadow-preset1\\\">funding.<\\/span>\",\"alias\":\"Text-1\",\"uid\":1,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-15px\",\"e\":true},\"n\":{\"v\":\"-15px\"},\"t\":{\"v\":\"-15px\"},\"m\":{\"v\":\"-15px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":8},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"0\",\"groupOrder\":8},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":50},\"n\":{\"v\":50},\"t\":{\"v\":50},\"m\":{\"v\":50}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"speed\":1000,\"start\":800,\"startRelative\":800,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"600\",\"start\":9000,\"startRelative\":7200,\"endWithSlide\":true,\"frameLength\":600}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":800},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false,\"hoverFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Poppins\",\"fontSize\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"60px\"},\"t\":{\"v\":\"40px\",\"e\":true},\"m\":{\"v\":\"36px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"lineHeight\":{\"d\":{\"v\":\"72px\",\"e\":true},\"n\":{\"v\":\"72px\"},\"t\":{\"v\":\"51px\",\"e\":true},\"m\":{\"v\":\"48px\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"2\":{\"text\":\"We place you at the centre of international networks to advance your interests.\",\"alias\":\"Text-2\",\"uid\":2,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"450px\",\"e\":true},\"n\":{\"v\":\"450px\"},\"t\":{\"v\":\"350px\",\"e\":true},\"m\":{\"v\":\"290px\",\"e\":true}},\"height\":{\"d\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"224px\",\"e\":true},\"n\":{\"v\":\"224px\"},\"t\":{\"v\":\"167px\",\"e\":true},\"m\":{\"v\":\"157px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":9},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"0\",\"groupOrder\":9},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":50},\"n\":{\"v\":50},\"t\":{\"v\":50},\"m\":{\"v\":50}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"speed\":1000,\"start\":1100,\"startRelative\":1100,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"600\",\"start\":9000,\"startRelative\":6900,\"endWithSlide\":true,\"frameLength\":600}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":1100},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false,\"hoverFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Poppins\",\"fontSize\":{\"d\":{\"v\":\"19px\",\"e\":true},\"n\":{\"v\":\"19px\"},\"t\":{\"v\":\"16px\",\"e\":true},\"m\":{\"v\":\"15px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\"},\"m\":{\"v\":\"500\"}},\"lineHeight\":{\"d\":{\"v\":\"32px\",\"e\":true},\"n\":{\"v\":\"32px\"},\"t\":{\"v\":\"27px\",\"e\":true},\"m\":{\"v\":\"27px\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"3\":{\"text\":\"Our Team<i class=\\\"fac fac-angle-right space-left\\\"><\\/i>\",\"alias\":\"Button-3\",\"uid\":3,\"toggle\":{\"text\":\"\"},\"size\":{\"minWidth\":{\"d\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":\"0px\",\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":10},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"0\",\"groupOrder\":10},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":50},\"n\":{\"v\":50},\"t\":{\"v\":50},\"m\":{\"v\":50}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"speed\":1000,\"start\":1400,\"startRelative\":1400,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"600\",\"start\":9000,\"startRelative\":6600,\"endWithSlide\":true,\"frameLength\":600}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":1400},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":true,\"hoverFilterUsed\":true},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,42,0,42],\"e\":true},\"n\":{\"v\":[0,42,0,42],\"e\":false},\"t\":{\"v\":[0,42,0,42],\"e\":false},\"m\":{\"v\":[0,42,0,42],\"e\":false}},\"fontFamily\":\"Poppins\",\"fontSize\":{\"d\":{\"v\":\"16px\",\"e\":true},\"n\":{\"v\":\"16px\"},\"t\":{\"v\":\"16px\"},\"m\":{\"v\":\"16px\"}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"lineHeight\":{\"d\":{\"v\":\"56px\",\"e\":true},\"n\":{\"v\":\"56px\"},\"t\":{\"v\":\"56px\"},\"m\":{\"v\":\"56px\"}},\"backgroundColor\":\"#4b58ff\",\"borderRadius\":{\"v\":[\"42px\",\"42px\",\"42px\",\"42px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"usehover\":true,\"backgroundColor\":\"#5796ff\",\"borderRadius\":{\"v\":[\"42px\",\"42px\",\"42px\",\"42px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"filter\":{\"brightness\":\"120%\",\"blir\":0}},\"actions\":{\"action\":[]},\"runtime\":{\"internalClass\":\"rev-btn\"},\"type\":\"button\"},\"5\":{\"text\":\"\",\"alias\":\"Image-5\",\"uid\":5,\"media\":{\"imageUrl\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2020\\/01\\/h6-shape1.png\",\"imageId\":3275,\"loaded\":true},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"100px\",\"e\":true},\"n\":{\"v\":\"100px\"},\"t\":{\"v\":\"100px\"},\"m\":{\"v\":\"100px\"}},\"height\":{\"d\":{\"v\":\"114px\",\"e\":true},\"n\":{\"v\":\"114px\"},\"t\":{\"v\":\"114px\"},\"m\":{\"v\":\"114px\"}},\"originalWidth\":100,\"originalHeight\":114,\"aspectRatio\":{\"d\":{\"v\":0.87719298245614030218320067433523945510387420654296875},\"n\":{\"v\":0.87719298245614030218320067433523945510387420654296875},\"t\":{\"v\":0.87719298245614030218320067433523945510387420654296875},\"m\":{\"v\":0.87719298245614030218320067433523945510387420654296875}},\"scaleProportional\":true,\"originalSize\":true},\"position\":{\"x\":{\"d\":{\"v\":\"55px\",\"e\":true},\"n\":{\"v\":\"55px\"},\"t\":{\"v\":\"55px\"},\"m\":{\"v\":\"55px\"}},\"y\":{\"d\":{\"v\":\"70px\",\"e\":true},\"n\":{\"v\":\"70px\"},\"t\":{\"v\":\"70px\"},\"m\":{\"v\":\"70px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":13},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":13},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false,\"hoverFilterUsed\":false},\"effects\":{\"parallax\":\"3\"},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"image\"},\"6\":{\"text\":\"\",\"alias\":\"Image-6\",\"uid\":6,\"media\":{\"imageUrl\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2020\\/01\\/h6-shape2.png\",\"imageId\":3276,\"loaded\":true},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"25px\",\"e\":true},\"n\":{\"v\":\"25px\"},\"t\":{\"v\":\"25px\"},\"m\":{\"v\":\"25px\"}},\"height\":{\"d\":{\"v\":\"29px\",\"e\":true},\"n\":{\"v\":\"29px\"},\"t\":{\"v\":\"29px\"},\"m\":{\"v\":\"29px\"}},\"originalWidth\":25,\"originalHeight\":29,\"aspectRatio\":{\"d\":{\"v\":0.8620689655172413257133712249924428761005401611328125},\"n\":{\"v\":0.8620689655172413257133712249924428761005401611328125},\"t\":{\"v\":0.8620689655172413257133712249924428761005401611328125},\"m\":{\"v\":0.8620689655172413257133712249924428761005401611328125}},\"scaleProportional\":true,\"originalSize\":true},\"position\":{\"x\":{\"d\":{\"v\":\"-140px\",\"e\":true},\"n\":{\"v\":\"-140px\"},\"t\":{\"v\":\"-140px\"},\"m\":{\"v\":\"-140px\"}},\"y\":{\"d\":{\"v\":\"-80px\",\"e\":true},\"n\":{\"v\":\"-80px\"},\"t\":{\"v\":\"-80px\"},\"m\":{\"v\":\"-80px\"}},\"horizontal\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"right\"},\"t\":{\"v\":\"right\"},\"m\":{\"v\":\"right\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":14},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false},\"group\":{\"groupOrder\":14},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"loop\":{\"use\":true,\"ease\":\"power0.in\",\"speed\":\"30000\",\"curviness\":8,\"curved\":true,\"start\":\"10\",\"frame_0\":{\"yr\":\"100px\",\"xr\":\"70px\"},\"frame_999\":{\"xr\":\"60px\",\"yr\":\"80px\"}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false,\"hoverFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"image\"},\"7\":{\"text\":\"\",\"alias\":\"Image-7\",\"uid\":7,\"media\":{\"imageUrl\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2020\\/01\\/h6-shape4.png\",\"imageId\":3278,\"loaded\":true},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"11px\",\"e\":true},\"n\":{\"v\":\"11px\"},\"t\":{\"v\":\"11px\"},\"m\":{\"v\":\"11px\"}},\"height\":{\"d\":{\"v\":\"13px\",\"e\":true},\"n\":{\"v\":\"13px\"},\"t\":{\"v\":\"13px\"},\"m\":{\"v\":\"13px\"}},\"originalWidth\":11,\"originalHeight\":13,\"aspectRatio\":{\"d\":{\"v\":0.84615384615384614530597673365264199674129486083984375},\"n\":{\"v\":0.84615384615384614530597673365264199674129486083984375},\"t\":{\"v\":0.84615384615384614530597673365264199674129486083984375},\"m\":{\"v\":0.84615384615384614530597673365264199674129486083984375}},\"scaleProportional\":true,\"originalSize\":true},\"position\":{\"x\":{\"d\":{\"v\":\"-60px\",\"e\":true},\"n\":{\"v\":\"-60px\"},\"t\":{\"v\":\"-60px\"},\"m\":{\"v\":\"-60px\"}},\"y\":{\"d\":{\"v\":\"130px\",\"e\":true},\"n\":{\"v\":\"130px\"},\"t\":{\"v\":\"130px\"},\"m\":{\"v\":\"130px\"}},\"horizontal\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"right\"},\"t\":{\"v\":\"right\"},\"m\":{\"v\":\"right\"}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":15},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false},\"group\":{\"groupOrder\":15},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"loop\":{\"use\":true,\"ease\":\"sine.inOut\",\"speed\":3000,\"yoyo_rotate\":true,\"frame_0\":{\"rotationY\":-40},\"frame_999\":{\"rotationY\":40},\"originZ\":60},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false,\"hoverFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"image\"},\"8\":{\"text\":\"\",\"alias\":\"Image-8\",\"uid\":8,\"media\":{\"imageUrl\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2020\\/01\\/h6-shape3.png\",\"imageId\":3277,\"loaded\":true},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"18px\",\"e\":true},\"n\":{\"v\":\"14px\"},\"t\":{\"v\":\"10px\"},\"m\":{\"v\":\"6px\"}},\"height\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"16px\"},\"t\":{\"v\":\"12px\"},\"m\":{\"v\":\"7px\"}},\"originalWidth\":18,\"originalHeight\":20,\"aspectRatio\":{\"d\":{\"v\":0.90000000000000002220446049250313080847263336181640625},\"n\":{\"v\":0.90000000000000002220446049250313080847263336181640625},\"t\":{\"v\":0.90000000000000002220446049250313080847263336181640625},\"m\":{\"v\":0.90000000000000002220446049250313080847263336181640625}},\"scaleProportional\":true,\"originalSize\":true},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":16},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false},\"group\":{\"groupOrder\":16},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"loop\":{\"use\":true,\"ease\":\"power0.in\",\"speed\":\"20000\",\"curved\":true,\"frame_0\":{\"yr\":\"-100px\",\"xr\":\"50px\"},\"frame_999\":{\"xr\":\"80px\",\"yr\":\"-160px\"}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false,\"hoverFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"image\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7},\"text\":\"\",\"version\":\"6.4.0\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6},\"text\":\"\",\"version\":\"6.4.0\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5},\"text\":\"\",\"version\":\"6.4.0\"}}','{\"version\":\"6.4.6\"}'),(3,1,1,'{\"runtime\":{\"collapsedGroups\":[]},\"bg\":{\"type\":\"image\",\"color\":\"#0c0c0c\",\"image\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/Munsters-LE-Details-19.jpeg\",\"imageId\":4245,\"imageLib\":\"medialibrary\",\"lastLoadedImage\":{\"width\":1920,\"height\":960,\"src\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-slider-01.jpg\"},\"imageWidth\":2208,\"imageHeight\":1474,\"imageRatio\":1.4979647218453189250197965520783327519893646240234375},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"slideChange\":{\"in\":{\"o\":0},\"out\":{\"a\":false},\"title\":\"*opacity* Fade In\",\"main\":\"basic\",\"group\":\"fade\",\"preset\":\"fade\"},\"panzoom\":{\"fitEnd\":\"100%\",\"fitStart\":\"112%\"}}','{\"0\":{\"text\":\"\",\"alias\":\"Group-0\",\"uid\":0,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"874\",\"e\":true},\"n\":{\"v\":\"874\"},\"t\":{\"v\":\"874\"},\"m\":{\"v\":\"874\"}},\"height\":{\"d\":{\"v\":\"386\",\"e\":true},\"n\":{\"v\":\"386\"},\"t\":{\"v\":\"318px\",\"e\":true},\"m\":{\"v\":\"340px\",\"e\":true}},\"maxWidth\":{\"d\":{\"e\":true}},\"maxHeight\":{\"d\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true}},\"minHeight\":{\"d\":{\"e\":true}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667406815349750104360282421112060546875},\"n\":{\"v\":1.6666666666666667406815349750104360282421112060546875},\"t\":{\"v\":1.6666666666666667406815349750104360282421112060546875},\"m\":{\"v\":1.6666666666666667406815349750104360282421112060546875}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":11},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false},\"group\":{\"groupOrder\":11},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"opacity\":1},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false},\"chars\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_1\":{\"transform\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_999\":{\"transform\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"startRelative\":8700,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}}},\"words\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}}},\"lines\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}}}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false,\"hoverFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"backgroundColor\":\"rgba(12, 12, 12, 0.7)\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"group\"},\"1\":{\"text\":\"Bring New Life\\nTo Your <span class=\\\"text-shadow-preset1\\\">Business.<\\/span>\",\"alias\":\"Text-1\",\"uid\":1,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"860\",\"e\":true},\"n\":{\"v\":\"860\"},\"t\":{\"v\":\"860\"},\"m\":{\"v\":\"860\"}},\"height\":{\"d\":{\"e\":true}},\"maxWidth\":{\"d\":{\"e\":true}},\"maxHeight\":{\"d\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true}},\"minHeight\":{\"d\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"14px\",\"e\":true},\"n\":{\"v\":\"14px\"},\"t\":{\"v\":\"14px\"},\"m\":{\"v\":\"14px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":8},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"0\",\"groupOrder\":8},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"55px\",\"e\":true},\"n\":{\"v\":\"55px\"},\"t\":{\"v\":\"55px\"},\"m\":{\"v\":\"55px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"},\"chars\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_1\":{\"transform\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"speed\":1000,\"start\":800,\"startRelative\":800,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1000},\"chars\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_999\":{\"transform\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}}},\"timeline\":{\"speed\":\"600\",\"start\":9000,\"startRelative\":7200,\"endWithSlide\":true,\"frameLength\":600},\"chars\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}}},\"words\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}}},\"lines\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}}}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":800},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false,\"hoverFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Poppins\",\"fontSize\":{\"d\":{\"v\":\"66\",\"e\":true},\"n\":{\"v\":\"66\"},\"t\":{\"v\":\"40px\",\"e\":true},\"m\":{\"v\":\"36px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"78\",\"e\":true},\"n\":{\"v\":\"78\"},\"t\":{\"v\":\"51px\",\"e\":true},\"m\":{\"v\":\"48px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"2\":{\"text\":\"System Amusements is your partner in upgrading your bar, restaurant or roller rink.\",\"alias\":\"Text-2\",\"uid\":2,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"708\",\"e\":true},\"n\":{\"v\":\"708\"},\"t\":{\"v\":\"350px\",\"e\":true},\"m\":{\"v\":\"290px\",\"e\":true}},\"height\":{\"d\":{\"e\":true}},\"maxWidth\":{\"d\":{\"e\":true}},\"maxHeight\":{\"d\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true}},\"minHeight\":{\"d\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"187px\",\"e\":true},\"n\":{\"v\":\"187px\"},\"t\":{\"v\":\"167px\",\"e\":true},\"m\":{\"v\":\"157px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":9},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"0\",\"groupOrder\":9},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"55px\",\"e\":true},\"n\":{\"v\":\"55px\"},\"t\":{\"v\":\"55px\"},\"m\":{\"v\":\"55px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"},\"chars\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_1\":{\"transform\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"speed\":1000,\"start\":1100,\"startRelative\":1100,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1000},\"chars\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_999\":{\"transform\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}}},\"timeline\":{\"speed\":\"600\",\"start\":9000,\"startRelative\":6900,\"endWithSlide\":true,\"frameLength\":600},\"chars\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}}},\"words\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}}},\"lines\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}}}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":1100},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false,\"hoverFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Poppins\",\"fontSize\":{\"d\":{\"v\":\"21\",\"e\":true},\"n\":{\"v\":\"21\"},\"t\":{\"v\":\"16px\",\"e\":true},\"m\":{\"v\":\"15px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\"},\"m\":{\"v\":\"500\"}},\"letterSpacing\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"35\",\"e\":true},\"n\":{\"v\":\"35\"},\"t\":{\"v\":\"27px\",\"e\":true},\"m\":{\"v\":\"27px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"3\":{\"text\":\"Contact Us Today<i class=\\\"fac fac-angle-right space-left\\\"><\\/i>\",\"alias\":\"Button-3\",\"uid\":3,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"e\":true}},\"height\":{\"d\":{\"e\":true}},\"maxWidth\":{\"d\":{\"e\":true}},\"maxHeight\":{\"d\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":0,\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"48px\",\"e\":true},\"n\":{\"v\":\"48px\"},\"t\":{\"v\":\"48px\"},\"m\":{\"v\":\"48px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":10},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"0\",\"groupOrder\":10},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"55px\",\"e\":true},\"n\":{\"v\":\"55px\"},\"t\":{\"v\":\"55px\"},\"m\":{\"v\":\"55px\"}}},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"},\"chars\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_1\":{\"transform\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"speed\":1000,\"start\":1400,\"startRelative\":1400,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1000},\"chars\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_999\":{\"transform\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}}},\"timeline\":{\"speed\":\"600\",\"start\":9000,\"startRelative\":6600,\"endWithSlide\":true,\"frameLength\":600},\"chars\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}}},\"words\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}}},\"lines\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}}}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":1400},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":true,\"hoverFilterUsed\":true},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,46,0,46],\"e\":true},\"n\":{\"v\":[0,46,0,46],\"e\":false},\"t\":{\"v\":[0,46,0,46],\"e\":false},\"m\":{\"v\":[0,46,0,46],\"e\":false}},\"fontFamily\":\"Poppins\",\"fontSize\":{\"d\":{\"v\":\"17\",\"e\":true},\"n\":{\"v\":\"17\"},\"t\":{\"v\":\"17\"},\"m\":{\"v\":\"17\"}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"61\",\"e\":true},\"n\":{\"v\":\"61\"},\"t\":{\"v\":\"61\"},\"m\":{\"v\":\"61\"}},\"backgroundColor\":\"#ff1000\",\"borderRadius\":{\"v\":[\"42px\",\"42px\",\"42px\",\"42px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"usehover\":true,\"backgroundColor\":\"#5796ff\",\"borderRadius\":{\"v\":[\"42px\",\"42px\",\"42px\",\"42px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"filter\":{\"brightness\":\"120%\",\"blir\":0}},\"actions\":{\"action\":[]},\"runtime\":{\"internalClass\":\"rev-btn\"},\"type\":\"button\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7},\"text\":\"\",\"version\":\"6.4.0\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6},\"text\":\"\",\"version\":\"6.4.0\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5},\"text\":\"\",\"version\":\"6.4.0\"}}','{\"version\":\"6.4.6\"}'),(4,1,2,'{\"runtime\":{\"collapsedGroups\":[]},\"bg\":{\"type\":\"image\",\"color\":\"#0c0c0c\",\"image\":\"https:\\/\\/sa7717.dev34.info\\/wp-content\\/uploads\\/2021\\/03\\/young-couple-playing-together-pool-in-bar-96FRQW7-1-scaled.jpg\",\"imageId\":4182,\"imageLib\":\"medialibrary\",\"lastLoadedImage\":{\"width\":1920,\"height\":960,\"src\":\"https:\\/\\/demo.casethemes.net\\/consultio-tax\\/wp-content\\/uploads\\/2020\\/01\\/h6-bg-slider-01.jpg\"},\"imageWidth\":2560,\"imageHeight\":1707,\"imageRatio\":1.4997070884592853534655887415283359587192535400390625},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"slideChange\":{\"in\":{\"o\":0},\"out\":{\"a\":false},\"title\":\"*opacity* Fade In\",\"main\":\"basic\",\"group\":\"fade\",\"preset\":\"fade\"},\"panzoom\":{\"fitEnd\":\"100%\",\"fitStart\":\"112%\"},\"uid\":4}','{\"0\":{\"text\":\"\",\"alias\":\"Group-0\",\"uid\":0,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"874\",\"e\":true},\"n\":{\"v\":\"874\"},\"t\":{\"v\":\"874\"},\"m\":{\"v\":\"874\"}},\"height\":{\"d\":{\"v\":\"386\",\"e\":true},\"n\":{\"v\":\"386\"},\"t\":{\"v\":\"318px\",\"e\":true},\"m\":{\"v\":\"340px\",\"e\":true}},\"maxWidth\":{\"d\":{\"e\":true}},\"maxHeight\":{\"d\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true}},\"minHeight\":{\"d\":{\"e\":true}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667406815349750104360282421112060546875},\"n\":{\"v\":1.6666666666666667406815349750104360282421112060546875},\"t\":{\"v\":1.6666666666666667406815349750104360282421112060546875},\"m\":{\"v\":1.6666666666666667406815349750104360282421112060546875}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"-148px\",\"e\":true},\"n\":{\"v\":\"-148px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":11},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false},\"group\":{\"groupOrder\":11},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"opacity\":1},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false},\"chars\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_1\":{\"transform\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_999\":{\"transform\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"startRelative\":8700,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}}},\"words\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}}},\"lines\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}}}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false,\"hoverFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"backgroundColor\":\"rgba(12, 12, 12, 0.7)\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"group\"},\"1\":{\"text\":\"Bring <span class=\\\"text-shadow-preset1\\\">New Life<\\/span>\\nTo Your Business!\",\"alias\":\"Text-1\",\"uid\":1,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"860\",\"e\":true},\"n\":{\"v\":\"860\"},\"t\":{\"v\":\"860\"},\"m\":{\"v\":\"860\"}},\"height\":{\"d\":{\"e\":true}},\"maxWidth\":{\"d\":{\"e\":true}},\"maxHeight\":{\"d\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true}},\"minHeight\":{\"d\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"14px\",\"e\":true},\"n\":{\"v\":\"14px\"},\"t\":{\"v\":\"14px\"},\"m\":{\"v\":\"14px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":8},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"0\",\"groupOrder\":8},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"55px\",\"e\":true},\"n\":{\"v\":\"55px\"},\"t\":{\"v\":\"55px\"},\"m\":{\"v\":\"55px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"},\"chars\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_1\":{\"transform\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"speed\":1000,\"start\":800,\"startRelative\":800,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1000},\"chars\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_999\":{\"transform\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}}},\"timeline\":{\"speed\":\"600\",\"start\":9000,\"startRelative\":7200,\"endWithSlide\":true,\"frameLength\":600},\"chars\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}}},\"words\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}}},\"lines\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}}}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":800},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false,\"hoverFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Poppins\",\"fontSize\":{\"d\":{\"v\":\"66\",\"e\":true},\"n\":{\"v\":\"66\"},\"t\":{\"v\":\"40px\",\"e\":true},\"m\":{\"v\":\"36px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"78\",\"e\":true},\"n\":{\"v\":\"78\"},\"t\":{\"v\":\"51px\",\"e\":true},\"m\":{\"v\":\"48px\",\"e\":true}},\"textAlign\":{\"d\":{\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"2\":{\"text\":\"System Amusements is your partner in upgrading your bar, restaurant or roller rink.\",\"alias\":\"Text-2\",\"uid\":2,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"708\",\"e\":true},\"n\":{\"v\":\"708\"},\"t\":{\"v\":\"350px\",\"e\":true},\"m\":{\"v\":\"290px\",\"e\":true}},\"height\":{\"d\":{\"e\":true}},\"maxWidth\":{\"d\":{\"e\":true}},\"maxHeight\":{\"d\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true}},\"minHeight\":{\"d\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"-69px\",\"e\":true},\"n\":{\"v\":\"-69px\"},\"t\":{\"v\":\"-69px\"},\"m\":{\"v\":\"-69px\"}},\"y\":{\"d\":{\"v\":\"183px\",\"e\":true},\"n\":{\"v\":\"183px\"},\"t\":{\"v\":\"167px\",\"e\":true},\"m\":{\"v\":\"157px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":9},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"0\",\"groupOrder\":9},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"55px\",\"e\":true},\"n\":{\"v\":\"55px\"},\"t\":{\"v\":\"55px\"},\"m\":{\"v\":\"55px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"},\"chars\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_1\":{\"transform\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"speed\":1000,\"start\":1100,\"startRelative\":1100,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1000},\"chars\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_999\":{\"transform\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}}},\"timeline\":{\"speed\":\"600\",\"start\":9000,\"startRelative\":6900,\"endWithSlide\":true,\"frameLength\":600},\"chars\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}}},\"words\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}}},\"lines\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}}}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":1100},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false,\"hoverFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Poppins\",\"fontSize\":{\"d\":{\"v\":\"21\",\"e\":true},\"n\":{\"v\":\"21\"},\"t\":{\"v\":\"16px\",\"e\":true},\"m\":{\"v\":\"15px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\"},\"m\":{\"v\":\"500\"}},\"letterSpacing\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"35\",\"e\":true},\"n\":{\"v\":\"35\"},\"t\":{\"v\":\"27px\",\"e\":true},\"m\":{\"v\":\"27px\",\"e\":true}},\"textAlign\":{\"d\":{\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"3\":{\"text\":\"Contact Us Today<i class=\\\"fac fac-angle-right space-left\\\"><\\/i>\",\"alias\":\"Button-3\",\"uid\":3,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"e\":true}},\"height\":{\"d\":{\"e\":true}},\"maxWidth\":{\"d\":{\"e\":true}},\"maxHeight\":{\"d\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":0,\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"-303px\",\"e\":true},\"n\":{\"v\":\"-303px\"},\"t\":{\"v\":\"-303px\"},\"m\":{\"v\":\"-303px\"}},\"y\":{\"d\":{\"v\":\"44px\",\"e\":true},\"n\":{\"v\":\"44px\"},\"t\":{\"v\":\"44px\"},\"m\":{\"v\":\"44px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":10},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"0\",\"groupOrder\":10},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"55px\",\"e\":true},\"n\":{\"v\":\"55px\"},\"t\":{\"v\":\"55px\"},\"m\":{\"v\":\"55px\"}}},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"},\"chars\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_1\":{\"transform\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"speed\":1000,\"start\":1400,\"startRelative\":1400,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1000},\"chars\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_999\":{\"transform\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}}},\"timeline\":{\"speed\":\"600\",\"start\":9000,\"startRelative\":6600,\"endWithSlide\":true,\"frameLength\":600},\"chars\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}}},\"words\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}}},\"lines\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}}}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":1400},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":true,\"hoverFilterUsed\":true},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,46,0,46],\"e\":true},\"n\":{\"v\":[0,46,0,46],\"e\":false},\"t\":{\"v\":[0,46,0,46],\"e\":false},\"m\":{\"v\":[0,46,0,46],\"e\":false}},\"fontFamily\":\"Poppins\",\"fontSize\":{\"d\":{\"v\":\"17\",\"e\":true},\"n\":{\"v\":\"17\"},\"t\":{\"v\":\"17\"},\"m\":{\"v\":\"17\"}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"61\",\"e\":true},\"n\":{\"v\":\"61\"},\"t\":{\"v\":\"61\"},\"m\":{\"v\":\"61\"}},\"backgroundColor\":\"#ff1000\",\"borderRadius\":{\"v\":[\"42px\",\"42px\",\"42px\",\"42px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"usehover\":true,\"backgroundColor\":\"#5796ff\",\"borderRadius\":{\"v\":[\"42px\",\"42px\",\"42px\",\"42px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"filter\":{\"brightness\":\"120%\",\"blir\":0}},\"actions\":{\"action\":[]},\"runtime\":{\"internalClass\":\"rev-btn\"},\"type\":\"button\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7},\"text\":\"\",\"version\":\"6.4.0\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6},\"text\":\"\",\"version\":\"6.4.0\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5},\"text\":\"\",\"version\":\"6.4.0\"}}','{\"version\":\"6.4.6\"}');
/*!40000 ALTER TABLE `wp9s_revslider_slides` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp9s_revslider_slides_bkp`
--

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

--
-- Dumping data for table `wp9s_revslider_slides_bkp`
--

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

--
-- Table structure for table `wp9s_revslider_static_slides`
--

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

--
-- Dumping data for table `wp9s_revslider_static_slides`
--

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

--
-- Table structure for table `wp9s_revslider_static_slides_bkp`
--

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

--
-- Dumping data for table `wp9s_revslider_static_slides_bkp`
--

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

--
-- Table structure for table `wp9s_sbi_instagram_feed_locator`
--

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

--
-- Dumping data for table `wp9s_sbi_instagram_feed_locator`
--

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

--
-- Table structure for table `wp9s_sbi_instagram_feeds_posts`
--

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

--
-- Dumping data for table `wp9s_sbi_instagram_feeds_posts`
--

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

--
-- Table structure for table `wp9s_sbi_instagram_posts`
--

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

--
-- Dumping data for table `wp9s_sbi_instagram_posts`
--

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

--
-- Table structure for table `wp9s_term_relationships`
--

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

--
-- Dumping data for table `wp9s_term_relationships`
--

LOCK TABLES `wp9s_term_relationships` WRITE;
/*!40000 ALTER TABLE `wp9s_term_relationships` DISABLE KEYS */;
INSERT INTO `wp9s_term_relationships` VALUES (1214,31,0),(1217,31,0),(2331,25,0),(2439,37,0),(2440,13,0),(2441,39,0),(2442,21,0),(3872,31,0),(3876,31,0),(4292,31,0),(4289,31,0),(4280,31,0),(3968,41,0),(3969,44,0),(3970,41,0),(3971,42,0),(3972,42,0),(3973,41,0),(3974,42,0),(3975,43,0),(3976,41,0),(3977,45,0),(3978,45,0),(3979,45,0),(3980,45,0),(3981,46,0),(3982,46,0),(3983,46,0),(569,14,0),(571,36,0),(573,14,0),(1738,36,0),(1740,35,0),(1766,36,0),(159,1,0),(156,4,0),(156,6,0),(156,7,0),(156,3,0),(159,6,0),(159,7,0),(159,8,0),(169,1,0),(161,4,0),(161,6,0),(161,8,0),(161,2,0),(164,4,0),(164,5,0),(164,6,0),(164,3,0),(166,4,0),(166,5,0),(166,6,0),(166,7,0),(166,8,0),(166,2,0),(169,4,0),(169,5,0),(169,6,0),(575,35,0),(577,19,0),(579,36,0),(581,14,0),(583,19,0),(758,10,0),(758,34,0),(758,32,0),(771,10,0),(771,34,0),(771,32,0),(772,11,0),(772,32,0),(773,9,0),(773,38,0),(773,32,0),(774,10,0),(774,34,0),(774,32,0),(775,9,0),(775,34,0),(775,32,0),(776,10,0),(776,34,0),(776,32,0),(777,11,0),(777,32,0),(1742,14,0),(446,15,0),(448,15,0),(645,15,0),(647,15,0),(649,15,0),(651,15,0),(778,10,0),(778,34,0),(778,30,0),(778,32,0),(780,32,0),(780,34,0),(780,38,0),(781,11,0),(781,32,0),(782,32,0),(782,34,0),(1831,12,0),(1833,12,0),(1835,12,0),(1837,12,0),(1947,23,0),(1949,23,0),(1951,23,0),(2625,23,0),(2627,23,0),(2629,23,0),(1953,23,0),(2758,33,0),(2763,33,0),(2765,33,0),(2780,33,0),(2785,33,0),(2787,33,0),(3985,41,0),(3986,41,0),(3987,41,0),(3988,41,0),(3989,41,0),(3990,44,0),(3991,44,0),(3992,44,0),(3993,44,0),(3994,41,0),(3995,41,0),(3996,41,0),(3997,41,0),(3998,41,0),(3999,41,0),(4000,41,0),(4001,41,0),(4002,41,0),(4003,41,0),(4004,41,0),(4005,41,0),(4006,41,0),(4007,41,0),(4008,41,0),(4009,41,0),(4010,41,0),(4011,41,0),(4012,41,0),(4013,41,0),(4014,41,0),(4015,41,0),(4016,41,0),(4017,44,0),(4018,44,0),(4019,44,0),(4020,44,0),(4021,41,0),(4022,41,0),(4023,41,0),(4024,41,0),(4025,41,0),(4026,41,0),(4027,47,0),(4028,47,0),(4029,47,0),(4030,47,0),(4031,47,0),(4032,41,0),(4033,42,0),(4034,42,0),(4035,42,0),(4036,42,0),(4037,42,0),(4038,42,0),(4039,42,0),(4040,42,0),(4041,42,0),(4042,42,0),(4043,42,0),(4044,43,0),(4045,43,0),(4046,43,0),(4047,43,0),(4048,43,0),(4049,43,0),(4050,43,0),(4051,43,0),(4052,43,0),(4053,43,0),(4054,43,0),(4055,43,0),(4056,43,0),(4057,43,0),(4058,43,0),(4059,42,0),(4060,42,0),(4061,42,0),(4062,42,0),(4063,42,0),(4064,42,0),(4065,42,0),(4066,42,0),(4067,42,0),(4068,42,0),(4069,42,0),(4070,42,0),(4071,42,0),(4072,42,0),(4073,42,0),(4074,42,0),(4075,42,0),(4076,42,0),(4077,43,0),(4078,43,0),(4079,43,0),(4080,43,0),(4081,41,0),(4082,41,0),(4083,41,0),(4084,41,0),(4085,41,0),(4086,41,0),(4087,41,0),(4088,41,0),(4089,41,0),(4090,41,0),(4091,41,0),(4092,41,0),(4093,41,0),(4094,41,0),(4095,41,0),(4096,41,0),(4097,41,0),(4098,41,0),(4099,42,0),(4302,31,0),(4388,31,0),(4343,48,0),(4344,48,0),(4345,48,0),(4350,48,0),(4349,48,0),(4351,49,0),(4352,49,0),(4353,49,0),(4354,49,0),(4355,50,0),(4356,50,0),(4357,50,0),(4358,50,0),(4361,48,0),(4391,31,0),(4409,48,0),(4475,31,0);
/*!40000 ALTER TABLE `wp9s_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp9s_term_taxonomy`
--

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

--
-- Dumping data for table `wp9s_term_taxonomy`
--

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

--
-- Table structure for table `wp9s_termmeta`
--

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

--
-- Dumping data for table `wp9s_termmeta`
--

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

--
-- Table structure for table `wp9s_terms`
--

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

--
-- Dumping data for table `wp9s_terms`
--

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

--
-- Table structure for table `wp9s_usermeta`
--

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

--
-- Dumping data for table `wp9s_usermeta`
--

LOCK TABLES `wp9s_usermeta` WRITE;
/*!40000 ALTER TABLE `wp9s_usermeta` DISABLE KEYS */;
INSERT INTO `wp9s_usermeta` VALUES (1,1,'nickname','Admin'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'syntax_highlighting','true'),(7,1,'comment_shortcuts','false'),(8,1,'admin_color','fresh'),(9,1,'use_ssl','0'),(10,1,'show_admin_bar_front','true'),(11,1,'locale',''),(12,1,'wp9s_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wp9s_user_level','10'),(14,1,'dismissed_wp_pointers',''),(15,1,'show_welcome_panel','1'),(16,1,'session_tokens','a:2:{s:64:\"d10a994bc18e372d49c414ec8f131e0493c9bbd473f9cd87a29e5df5e6291171\";a:4:{s:10:\"expiration\";i:1621636462;s:2:\"ip\";s:15:\"173.247.252.137\";s:2:\"ua\";s:121:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36\";s:5:\"login\";i:1621463662;}s:64:\"8fbaa96579389e4e3b19e15c5fa343d8b56c54b89a8a3aa825551a3c5d916bc2\";a:4:{s:10:\"expiration\";i:1621641339;s:2:\"ip\";s:15:\"173.247.252.137\";s:2:\"ua\";s:82:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:78.0) Gecko/20100101 Firefox/78.0\";s:5:\"login\";i:1621468539;}}'),(17,1,'wp9s_dashboard_quick_press_last_post_id','4493'),(18,1,'community-events-location','a:1:{s:2:\"ip\";s:12:\"64.187.165.0\";}'),(19,1,'_woocommerce_tracks_anon_id','woo:Ts2CfV1ayPFuDgZjL5Lb/F+X'),(20,1,'booked_phone',''),(21,1,'last_update','1616787534'),(22,1,'woocommerce_admin_activity_panel_inbox_last_read','1616787539980'),(23,1,'wc_last_active','1621555200'),(24,1,'_order_count','0'),(25,1,'elementor_introduction','a:1:{s:10:\"rightClick\";b:1;}'),(26,1,'wp9s_user-settings','libraryContent=browse&editor=tinymce'),(27,1,'wp9s_user-settings-time','1616825600'),(28,1,'nav_menu_recently_edited','48'),(29,1,'managenav-menuscolumnshidden','a:4:{i:0;s:15:\"title-attribute\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";}'),(30,1,'metaboxhidden_nav-menus','a:15:{i:0;s:23:\"add-post-type-portfolio\";i:1;s:21:\"add-post-type-service\";i:2;s:24:\"add-post-type-case-study\";i:3;s:21:\"add-post-type-courses\";i:4;s:20:\"add-post-type-footer\";i:5;s:28:\"add-post-type-e-landing-page\";i:6;s:21:\"add-post-type-product\";i:7;s:12:\"add-post_tag\";i:8;s:15:\"add-post_format\";i:9;s:22:\"add-portfolio-category\";i:10;s:20:\"add-service-category\";i:11;s:23:\"add-case-study-category\";i:12;s:15:\"add-product_cat\";i:13;s:15:\"add-product_tag\";i:14;s:27:\"add-booked_custom_calendars\";}');
/*!40000 ALTER TABLE `wp9s_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp9s_users`
--

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

--
-- Dumping data for table `wp9s_users`
--

LOCK TABLES `wp9s_users` WRITE;
/*!40000 ALTER TABLE `wp9s_users` DISABLE KEYS */;
INSERT INTO `wp9s_users` VALUES (1,'Admin','$P$BTF.obiBAQcA0swWDwAk4qK0SRTpxx/','admin','alex@inspirable.com','https://sa7717.dev34.info','2021-03-26 04:51:34','',0,'Admin');
/*!40000 ALTER TABLE `wp9s_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp9s_wc_admin_note_actions`
--

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

--
-- Dumping data for table `wp9s_wc_admin_note_actions`
--

LOCK TABLES `wp9s_wc_admin_note_actions` WRITE;
/*!40000 ALTER TABLE `wp9s_wc_admin_note_actions` DISABLE KEYS */;
INSERT INTO `wp9s_wc_admin_note_actions` VALUES (1,1,'yes-please','Yes please!','https://woocommerce.us8.list-manage.com/subscribe/post?u=2c1434dc56f9506bf3c3ecd21&amp;id=13860df971&amp;SIGNUPPAGE=plugin','actioned',0,''),(2,2,'open-marketing-hub','Open marketing hub','https://sa7717.dev34.info/wp-admin/admin.php?page=wc-admin&path=/marketing','actioned',0,''),(1353,3,'upgrade_now_facebook_pixel_api','Upgrade now','plugin-install.php?tab=plugin-information&plugin=&section=changelog','actioned',1,''),(1354,4,'learn_more_facebook_ec','Learn more','https://woocommerce.com/products/facebook/','unactioned',1,''),(1355,5,'set-up-concierge','Schedule free session','https://wordpress.com/me/concierge','actioned',1,''),(1356,6,'learn-more','Learn more','https://docs.woocommerce.com/document/woocommerce-shipping-and-tax/?utm_source=inbox','unactioned',1,''),(1357,7,'learn-more-ecomm-unique-shopping-experience','Learn more','https://docs.woocommerce.com/document/product-add-ons/?utm_source=inbox','actioned',1,''),(1358,8,'watch-the-webinar','Watch the webinar','https://youtu.be/V_2XtCOyZ7o','actioned',1,''),(1359,9,'learn-more','Learn more','https://woocommerce.com/posts/ecommerce-shipping-solutions-guide/?utm_source=inbox','actioned',1,''),(1360,10,'boost-sales-marketing-guide','See marketing guide','https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=square-boost-sales','actioned',1,''),(1361,11,'grow-your-business-marketing-guide','See marketing guide','https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=square-grow-your-business','actioned',1,''),(1364,12,'boost-sales-marketing-guide','See marketing guide','https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=wcpay-boost-sales','actioned',1,''),(1365,13,'grow-your-business-marketing-guide','See marketing guide','https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=wcpay-grow-your-business','actioned',1,''),(1366,14,'optimizing-the-checkout-flow','Learn more','https://woocommerce.com/posts/optimizing-woocommerce-checkout?utm_source=inbox','actioned',1,''),(1367,15,'learn-more','Learn more','https://woocommerce.com/posts/first-things-customize-woocommerce/?utm_source=inbox','unactioned',1,''),(16,16,'connect','Connect','?page=wc-addons&section=helper','unactioned',0,''),(43,17,'learn-more','Learn more','https://docs.woocommerce.com/document/variable-product/?utm_source=inbox','actioned',0,''),(57,18,'visit-the-theme-marketplace','Visit the theme marketplace','https://woocommerce.com/product-category/themes/?utm_source=inbox','actioned',0,''),(58,19,'affirm-insight-first-product-and-payment','Yes','','actioned',0,'Thanks for your feedback'),(59,20,'day-after-first-product','Learn more','https://docs.woocommerce.com/document/woocommerce-customizer/?utm_source=inbox','actioned',0,''),(73,21,'learn-more','Learn more','https://woocommerce.com/mobile/','actioned',0,''),(127,23,'view-payment-gateways','Learn more','https://woocommerce.com/product-category/woocommerce-extensions/payment-gateways/','actioned',1,''),(1352,24,'open_wc_paypal_payments_product_page','Learn more','https://woocommerce.com/products/woocommerce-paypal-payments/','actioned',1,''),(1362,22,'add-apple-pay','Add Apple Pay','/admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments','actioned',1,''),(1363,22,'learn-more','Learn more','https://docs.woocommerce.com/document/payments/apple-pay/?utm_source=inbox&utm_medium=product&utm_campaign=wcpay_applepay','actioned',1,''),(144,25,'share-feedback','Share feedback','https://automattic.survey.fm/store-setup-survey','actioned',0,''),(145,26,'affirm-insight-first-sale','Yes','','actioned',0,'Thanks for your feedback'),(146,26,'deny-insight-first-sale','No','','actioned',0,'Thanks for your feedback'),(1368,27,'qualitative-feedback-from-new-users','Share feedback','https://automattic.survey.fm/wc-pay-new','actioned',1,''),(1369,28,'share-feedback','Share feedback','http://automattic.survey.fm/paypal-feedback','unactioned',1,''),(1370,29,'learn-more','Learn about Instant Deposits eligibility','https://docs.woocommerce.com/document/payments/instant-deposits/?utm_source=inbox&utm_medium=product&utm_campaign=wcpay_instant_deposits','actioned',1,''),(1372,30,'update-wc-subscriptions-3-0-15','View latest version','https://sa7717.dev34.info/wp-admin/admin.php?page=wc-admin&page=wc-addons&section=helper','actioned',1,''),(1371,31,'get-started','Get started','https://woocommerce.com/products/google-listings-and-ads','actioned',1,''),(1373,32,'update-wc-core-5-4-0','How to update WooCommerce','https://docs.woocommerce.com/document/how-to-update-woocommerce/','actioned',1,''),(1374,35,'get-woo-commerce-payments','Get WooCommerce Payments','admin.php?page=wc-admin&action=setup-woocommerce-payments','actioned',1,''),(1375,36,'get-woocommerce-payments','Get WooCommerce Payments','admin.php?page=wc-admin&action=setup-woocommerce-payments','actioned',1,''),(1376,37,'ppxo-pps-install-paypal-payments-1','View upgrade guide','https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/','actioned',1,''),(1377,38,'ppxo-pps-install-paypal-payments-2','View upgrade guide','https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/','actioned',1,''),(1351,39,'eu_vat_changes_2021','Learn more about the EU tax regulations','https://woocommerce.com/posts/new-eu-vat-regulations','actioned',1,''),(1215,40,'learn-more','Learn more','https://woocommerce.com/mobile/?utm_source=inbox','actioned',0,'');
/*!40000 ALTER TABLE `wp9s_wc_admin_note_actions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp9s_wc_admin_notes`
--

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

--
-- Dumping data for table `wp9s_wc_admin_notes`
--

LOCK TABLES `wp9s_wc_admin_notes` WRITE;
/*!40000 ALTER TABLE `wp9s_wc_admin_notes` DISABLE KEYS */;
INSERT INTO `wp9s_wc_admin_notes` VALUES (1,'wc-admin-onboarding-email-marketing','info','en_US','Sign up for tips, product updates, and inspiration','We\'re here for you - get tips, product updates and inspiration straight to your email box','{}','unactioned','woocommerce-admin','2021-03-26 19:38:37',NULL,0,'plain','',0,'info'),(2,'wc-admin-marketing-intro','info','en_US','Connect with your audience','Grow your customer base and increase your sales with marketing tools built for WooCommerce.','{}','unactioned','woocommerce-admin','2021-03-26 19:38:37',NULL,0,'plain','',0,'info'),(3,'facebook_pixel_api_2021','marketing','en_US','Improve the performance of your Facebook ads','Enable Facebook Pixel and Conversions API through the latest version of Facebook for WooCommerce for improved measurement and ad targeting capabilities.','{}','pending','woocommerce.com','2021-03-26 19:38:37',NULL,0,'plain','',0,'info'),(4,'facebook_ec_2021','marketing','en_US','Sync your product catalog with Facebook to help boost sales','A single click adds all products to your Facebook Business Page shop. Product changes are automatically synced, with the flexibility to control which products are listed.','{}','pending','woocommerce.com','2021-03-26 19:38:37',NULL,0,'plain','',0,'info'),(5,'ecomm-need-help-setting-up-your-store','info','en_US','Need help setting up your Store?','Schedule a free 30-min <a href=\"https://wordpress.com/support/concierge-support/\">quick start session</a> and get help from our specialists. We’re happy to walk through setup steps, show you around the WordPress.com dashboard, troubleshoot any issues you may have, and help you the find the features you need to accomplish your goals for your site.','{}','pending','woocommerce.com','2021-03-26 19:38:37',NULL,0,'plain','',0,'info'),(6,'woocommerce-services','info','en_US','WooCommerce Shipping & Tax','WooCommerce Shipping &amp; Tax helps get your store “ready to sell” as quickly as possible. You create your products. We take care of tax calculation, payment processing, and shipping label printing! Learn more about the extension that you just installed.','{}','pending','woocommerce.com','2021-03-26 19:38:37',NULL,0,'plain','',0,'info'),(7,'ecomm-unique-shopping-experience','info','en_US','For a shopping experience as unique as your customers','Product Add-Ons allow your customers to personalize products while they’re shopping on your online store. No more follow-up email requests—customers get what they want, before they’re done checking out. Learn more about this extension that comes included in your plan.','{}','pending','woocommerce.com','2021-03-26 19:38:37',NULL,0,'plain','',0,'info'),(8,'wc-admin-getting-started-in-ecommerce','info','en_US','Getting Started in eCommerce - webinar','We want to make eCommerce and this process of getting started as easy as possible for you. Watch this webinar to get tips on how to have our store up and running in a breeze.','{}','pending','woocommerce.com','2021-03-26 19:38:37',NULL,0,'plain','',0,'info'),(9,'your-first-product','info','en_US','Your first product','That\'s huge! You\'re well on your way to building a successful online store — now it’s time to think about how you\'ll fulfill your orders.<br /><br />Read our shipping guide to learn best practices and options for putting together your shipping strategy. And for WooCommerce stores in the United States, you can print discounted shipping labels via USPS with <a href=\"https://href.li/?https://woocommerce.com/shipping\" target=\"_blank\">WooCommerce Shipping</a>.','{}','pending','woocommerce.com','2021-03-26 19:38:37',NULL,0,'plain','',0,'info'),(10,'wc-square-apple-pay-boost-sales','marketing','en_US','Boost sales with Apple Pay','Now that you accept Apple Pay® with Square you can increase conversion rates by letting your customers know that Apple Pay® is available. Here’s a marketing guide to help you get started.','{}','pending','woocommerce.com','2021-03-26 19:38:37',NULL,0,'plain','',0,'info'),(11,'wc-square-apple-pay-grow-your-business','marketing','en_US','Grow your business with Square and Apple Pay ','Now more than ever, shoppers want a fast, simple, and secure online checkout experience. Increase conversion rates by letting your customers know that you now accept Apple Pay®.','{}','pending','woocommerce.com','2021-03-26 19:38:37',NULL,0,'plain','',0,'info'),(12,'wcpay-apple-pay-boost-sales','marketing','en_US','Boost sales with Apple Pay','Now that you accept Apple Pay® with WooCommerce Payments you can increase conversion rates by letting your customers know that Apple Pay® is available. Here’s a marketing guide to help you get started.','{}','pending','woocommerce.com','2021-03-26 19:38:37',NULL,0,'plain','',0,'info'),(13,'wcpay-apple-pay-grow-your-business','marketing','en_US','Grow your business with WooCommerce Payments and Apple Pay','Now more than ever, shoppers want a fast, simple, and secure online checkout experience. Increase conversion rates by letting your customers know that you now accept Apple Pay®.','{}','pending','woocommerce.com','2021-03-26 19:38:37',NULL,0,'plain','',0,'info'),(14,'wc-admin-optimizing-the-checkout-flow','info','en_US','Optimizing the checkout flow','It\'s crucial to get your store\'s checkout as smooth as possible to avoid losing sales. Let\'s take a look at how you can optimize the checkout experience for your shoppers.','{}','pending','woocommerce.com','2021-03-26 19:38:37',NULL,0,'plain','',0,'info'),(15,'wc-admin-first-five-things-to-customize','info','en_US','The first 5 things to customize in your store','Deciding what to start with first is tricky. To help you properly prioritize, we\'ve put together this short list of the first few things you should customize in WooCommerce.','{}','pending','woocommerce.com','2021-03-26 19:38:37',NULL,0,'plain','',0,'info'),(16,'wc-admin-wc-helper-connection','info','en_US','Connect to WooCommerce.com','Connect to get important product notifications and updates.','{}','unactioned','woocommerce-admin','2021-03-26 19:38:37',NULL,0,'plain','',0,'info'),(17,'wc-admin-learn-more-about-variable-products','info','en_US','Learn more about variable products','Variable products are a powerful product type that lets you offer a set of variations on a product, with control over prices, stock, image and more for each variation. They can be used for a product like a shirt, where you can offer a large, medium and small and in different colors.','{}','unactioned','woocommerce-admin','2021-03-26 19:41:38',NULL,0,'plain','',0,'info'),(18,'wc-admin-choosing-a-theme','marketing','en_US','Choosing a theme?','Check out the themes that are compatible with WooCommerce and choose one aligned with your brand and business needs.','{}','unactioned','woocommerce-admin','2021-03-27 19:39:48',NULL,0,'plain','',0,'info'),(19,'wc-admin-insight-first-product-and-payment','survey','en_US','Insight','More than 80% of new merchants add the first product and have at least one payment method set up during the first week. We\'re here to help your business succeed! Do you find this type of insight useful?','{}','unactioned','woocommerce-admin','2021-03-27 19:39:48',NULL,0,'plain','',0,'info'),(20,'wc-admin-customizing-product-catalog','info','en_US','How to customize your product catalog','You want your product catalog and images to look great and align with your brand. This guide will give you all the tips you need to get your products looking great in your store.','{}','unactioned','woocommerce-admin','2021-03-27 19:39:48',NULL,0,'plain','',0,'info'),(21,'wc-admin-mobile-app','info','en_US','Install Woo mobile app','Install the WooCommerce mobile app to manage orders, receive sales notifications, and view key metrics — wherever you are.','{}','unactioned','woocommerce-admin','2021-03-28 23:14:12',NULL,0,'plain','',0,'info'),(22,'wcpay-apple-pay-is-now-available','marketing','en_US','Apple Pay is now available with WooCommerce Payments!','Increase your conversion rate by offering a fast and secure checkout with <a href=\"https://woocommerce.com/apple-pay/?utm_source=inbox&amp;utm_medium=product&amp;utm_campaign=wcpay_applepay\" target=\"_blank\">Apple Pay</a>®. It’s free to get started with <a href=\"https://woocommerce.com/payments/?utm_source=inbox&amp;utm_medium=product&amp;utm_campaign=wcpay_applepay\" target=\"_blank\">WooCommerce Payments</a>.','{}','pending','woocommerce.com','2021-03-30 20:28:07',NULL,0,'plain','',0,'info'),(23,'wc-admin-onboarding-payments-reminder','info','en_US','Start accepting payments on your store!','Take payments with the provider that’s right for you - choose from 100+ payment gateways for WooCommerce.','{}','unactioned','woocommerce-admin','2021-04-02 03:38:01',NULL,0,'plain','',0,'info'),(24,'paypal_ppcp_gtm_2021','marketing','en_US','Offer more options with the new PayPal','Get the latest PayPal extension for a full suite of payment methods with extensive currency and country coverage.','{}','pending','woocommerce.com','2021-04-02 03:38:03',NULL,0,'plain','',0,'info'),(25,'wc-admin-store-notice-giving-feedback-2','info','en_US','You\'re invited to share your experience','Now that you’ve chosen us as a partner, our goal is to make sure we\'re providing the right tools to meet your needs. We\'re looking forward to having your feedback on the store setup experience so we can improve it in the future.','{}','unactioned','woocommerce-admin','2021-04-06 08:47:57',NULL,0,'plain','',0,'info'),(26,'wc-admin-insight-first-sale','survey','en_US','Did you know?','A WooCommerce powered store needs on average 31 days to get the first sale. You\'re on the right track! Do you find this type of insight useful?','{}','unactioned','woocommerce-admin','2021-04-06 08:47:57',NULL,0,'plain','',0,'info'),(27,'wc-payments-qualitative-feedback','info','en_US','WooCommerce Payments setup - let us know what you think','Congrats on enabling WooCommerce Payments for your store. Please share your feedback in this 2 minute survey to help us improve the setup process.','{}','pending','woocommerce.com','2021-04-18 04:15:54',NULL,0,'plain','',0,'info'),(28,'share-your-feedback-on-paypal','info','en_US','Share your feedback on PayPal','Share your feedback in this 2 minute survey about how we can make the process of accepting payments more useful for your store.','{}','pending','woocommerce.com','2021-05-13 23:23:35',NULL,0,'plain','',0,'info'),(29,'wcpay_instant_deposits_gtm_2021','marketing','en_US','Get paid within minutes – Instant Deposits for WooCommerce Payments','Stay flexible with immediate access to your funds when you need them – including nights, weekends, and holidays. With <a href=\"https://woocommerce.com/products/woocommerce-payments/?utm_source=inbox&amp;utm_medium=product&amp;utm_campaign=wcpay_instant_deposits\">WooCommerce Payments\'</a> new Instant Deposits feature, you’re able to transfer your earnings to a debit card within minutes.','{}','pending','woocommerce.com','2021-05-17 05:32:56',NULL,0,'plain','',0,'info'),(30,'wc-subscriptions-security-update-3-0-15','info','en_US','WooCommerce Subscriptions security update!','We recently released an important security update to WooCommerce Subscriptions. To ensure your site\'s data is protected, please upgrade <strong>WooCommerce Subscriptions to version 3.0.15</strong> or later.<br /><br />Click the button below to view and update to the latest Subscriptions version, or log in to <a href=\"https://woocommerce.com/my-dashboard\">WooCommerce.com Dashboard</a> and navigate to your <strong>Downloads</strong> page.<br /><br />We recommend always using the latest version of WooCommerce Subscriptions, and other software running on your site, to ensure maximum security.<br /><br />If you have any questions we are here to help — just <a href=\"https://woocommerce.com/my-account/create-a-ticket/\">open a ticket</a>.','{}','pending','woocommerce.com','2021-05-31 22:17:40',NULL,0,'plain','',0,'info'),(31,'google_listings_and_ads_install','marketing','en_US','Drive traffic and sales with Google','Reach online shoppers to drive traffic and sales for your store by showcasing products across Google, for free or with ads.','{}','pending','woocommerce.com','2021-06-08 01:59:37',NULL,0,'plain','',0,'info'),(32,'woocommerce-core-update-5-4-0','info','en_US','Update to WooCommerce 5.4.1 now','WooCommerce 5.4.1 addresses a checkout issue discovered in WooCommerce 5.4. We recommend upgrading to WooCommerce 5.4.1 as soon as possible.','{}','pending','woocommerce.com','2021-06-11 10:43:20',NULL,0,'plain','',0,'info'),(33,'wcpay-promo-2020-11','marketing','en_US','wcpay-promo-2020-11','wcpay-promo-2020-11','{}','pending','woocommerce.com','2021-06-12 01:23:18',NULL,0,'plain','',0,'info'),(34,'wcpay-promo-2020-12','marketing','en_US','wcpay-promo-2020-12','wcpay-promo-2020-12','{}','pending','woocommerce.com','2021-06-12 01:23:18',NULL,0,'plain','',0,'info'),(35,'wcpay-promo-2021-6-incentive-1','marketing','en_US','Special offer: Save 50% on transaction fees for up to $125,000 in payments','Save big when you add <a href=\"https://woocommerce.com/payments/?utm_medium=notification&amp;utm_source=product&amp;utm_campaign=wcpay_exp222\">WooCommerce Payments</a> to your store today.\n                Get a discounted rate of 1.5% + $0.15 on all transactions – that’s 50% off the standard fee on up to $125,000 in processed payments (or six months, whichever comes first). Act now – this offer is available for a limited time only.\n                <br /><br />By clicking \"Get WooCommerce Payments,\" you agree to the promotional <a href=\"https://woocommerce.com/terms-conditions/woocommerce-payments-half-off-six-promotion/?utm_medium=notification&amp;utm_source=product&amp;utm_campaign=wcpay_exp222\">Terms of Service</a>.','{}','pending','woocommerce.com','2021-06-12 01:23:18',NULL,0,'plain','',0,'info'),(36,'wcpay-promo-2021-6-incentive-2','marketing','en_US','Special offer: No transaction fees* for up to three months','Save big when you add <a href=\"https://woocommerce.com/payments/?utm_medium=notification&amp;utm_source=product&amp;utm_campaign=wcpay_exp233\">WooCommerce Payments</a> to your store today. Pay zero transaction fees* on up to $25,000 in processed payments (or three months, whichever comes first). Act now – this offer is available for a limited time only. *Currency conversion fees excluded.\n                <br /><br />By clicking \"Get WooCommerce Payments,\" you agree to the promotional <a href=\"https://woocommerce.com/terms-conditions/woocommerce-payments-no-transaction-fees-for-three-promotion/?utm_medium=notification&amp;utm_source=product&amp;utm_campaign=wcpay_exp233\">Terms of Service</a>.','{}','pending','woocommerce.com','2021-06-12 01:23:18',NULL,0,'plain','',0,'info'),(37,'ppxo-pps-upgrade-paypal-payments-1','info','en_US','Get the latest PayPal extension for WooCommerce','Heads up! There\'s a new PayPal on the block!<br /><br />Now is a great time to upgrade to our latest <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal extension</a> to continue to receive support and updates with PayPal.<br /><br />Get access to a full suite of PayPal payment methods, extensive currency and country coverage, and pay later options with the all-new PayPal extension for WooCommerce.','{}','pending','woocommerce.com','2021-06-23 08:16:32',NULL,0,'plain','',0,'info'),(38,'ppxo-pps-upgrade-paypal-payments-2','info','en_US','Upgrade your PayPal experience!','We\'ve developed a whole new <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal extension for WooCommerce</a> that combines the best features of our many PayPal extensions into just one extension.<br /><br />Get access to a full suite of PayPal payment methods, extensive currency and country coverage, offer subscription and recurring payments, and the new PayPal pay later options.<br /><br />Start using our latest PayPal today to continue to receive support and updates.','{}','pending','woocommerce.com','2021-06-23 08:16:32',NULL,0,'plain','',0,'info'),(39,'eu_vat_changes_2021','marketing','en_US','Get your business ready for the new EU tax regulations','On July 1, 2021, new taxation rules will come into play when the <a href=\"https://ec.europa.eu/taxation_customs/business/vat/modernising-vat-cross-border-ecommerce_en\">European Union (EU) Value-Added Tax (VAT) eCommerce package</a> takes effect.<br /><br />The new regulations will impact virtually every B2C business involved in cross-border eCommerce trade with the EU.<br /><br />We therefore recommend <a href=\"https://woocommerce.com/posts/new-eu-vat-regulations\">familiarizing yourself with the new updates</a>, and consult with a tax professional to ensure your business is following regulations and best practice.','{}','unactioned','woocommerce.com','2021-06-25 05:43:59',NULL,0,'plain','',0,'info'),(40,'wc-admin-real-time-order-alerts','info','en_US','Get real-time order alerts anywhere','Get notifications about store activity, including new orders and product reviews directly on your mobile devices with the Woo app.','{}','unactioned','woocommerce-admin','2021-06-25 05:43:59',NULL,0,'plain','',0,'info');
/*!40000 ALTER TABLE `wp9s_wc_admin_notes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp9s_wc_category_lookup`
--

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

--
-- Dumping data for table `wp9s_wc_category_lookup`
--

LOCK TABLES `wp9s_wc_category_lookup` WRITE;
/*!40000 ALTER TABLE `wp9s_wc_category_lookup` DISABLE KEYS */;
INSERT INTO `wp9s_wc_category_lookup` VALUES (9,9),(10,10),(11,11),(34,34),(38,38),(51,51);
/*!40000 ALTER TABLE `wp9s_wc_category_lookup` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp9s_wc_customer_lookup`
--

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

--
-- Dumping data for table `wp9s_wc_customer_lookup`
--

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

--
-- Table structure for table `wp9s_wc_download_log`
--

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

--
-- Dumping data for table `wp9s_wc_download_log`
--

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

--
-- Table structure for table `wp9s_wc_order_coupon_lookup`
--

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

--
-- Dumping data for table `wp9s_wc_order_coupon_lookup`
--

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

--
-- Table structure for table `wp9s_wc_order_product_lookup`
--

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

--
-- Dumping data for table `wp9s_wc_order_product_lookup`
--

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

--
-- Table structure for table `wp9s_wc_order_stats`
--

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

--
-- Dumping data for table `wp9s_wc_order_stats`
--

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

--
-- Table structure for table `wp9s_wc_order_tax_lookup`
--

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

--
-- Dumping data for table `wp9s_wc_order_tax_lookup`
--

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

--
-- Table structure for table `wp9s_wc_product_meta_lookup`
--

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

--
-- Dumping data for table `wp9s_wc_product_meta_lookup`
--

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

--
-- Table structure for table `wp9s_wc_reserved_stock`
--

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

--
-- Dumping data for table `wp9s_wc_reserved_stock`
--

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

--
-- Table structure for table `wp9s_wc_tax_rate_classes`
--

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

--
-- Dumping data for table `wp9s_wc_tax_rate_classes`
--

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

--
-- Table structure for table `wp9s_wc_webhooks`
--

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

--
-- Dumping data for table `wp9s_wc_webhooks`
--

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

--
-- Table structure for table `wp9s_woocommerce_api_keys`
--

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

--
-- Dumping data for table `wp9s_woocommerce_api_keys`
--

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

--
-- Table structure for table `wp9s_woocommerce_attribute_taxonomies`
--

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

--
-- Dumping data for table `wp9s_woocommerce_attribute_taxonomies`
--

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

--
-- Table structure for table `wp9s_woocommerce_downloadable_product_permissions`
--

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

--
-- Dumping data for table `wp9s_woocommerce_downloadable_product_permissions`
--

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

--
-- Table structure for table `wp9s_woocommerce_log`
--

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

--
-- Dumping data for table `wp9s_woocommerce_log`
--

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

--
-- Table structure for table `wp9s_woocommerce_order_itemmeta`
--

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

--
-- Dumping data for table `wp9s_woocommerce_order_itemmeta`
--

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

--
-- Table structure for table `wp9s_woocommerce_order_items`
--

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

--
-- Dumping data for table `wp9s_woocommerce_order_items`
--

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

--
-- Table structure for table `wp9s_woocommerce_payment_tokenmeta`
--

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

--
-- Dumping data for table `wp9s_woocommerce_payment_tokenmeta`
--

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

--
-- Table structure for table `wp9s_woocommerce_payment_tokens`
--

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

--
-- Dumping data for table `wp9s_woocommerce_payment_tokens`
--

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

--
-- Table structure for table `wp9s_woocommerce_sessions`
--

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

--
-- Dumping data for table `wp9s_woocommerce_sessions`
--

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

--
-- Table structure for table `wp9s_woocommerce_shipping_zone_locations`
--

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

--
-- Dumping data for table `wp9s_woocommerce_shipping_zone_locations`
--

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

--
-- Table structure for table `wp9s_woocommerce_shipping_zone_methods`
--

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

--
-- Dumping data for table `wp9s_woocommerce_shipping_zone_methods`
--

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

--
-- Table structure for table `wp9s_woocommerce_shipping_zones`
--

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

--
-- Dumping data for table `wp9s_woocommerce_shipping_zones`
--

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

--
-- Table structure for table `wp9s_woocommerce_tax_rate_locations`
--

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

--
-- Dumping data for table `wp9s_woocommerce_tax_rate_locations`
--

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

--
-- Table structure for table `wp9s_woocommerce_tax_rates`
--

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

--
-- Dumping data for table `wp9s_woocommerce_tax_rates`
--

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

--
-- Table structure for table `wp9s_yith_wcwl`
--

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

--
-- Dumping data for table `wp9s_yith_wcwl`
--

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

--
-- Table structure for table `wp9s_yith_wcwl_lists`
--

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

--
-- Dumping data for table `wp9s_yith_wcwl_lists`
--

LOCK TABLES `wp9s_yith_wcwl_lists` WRITE;
/*!40000 ALTER TABLE `wp9s_yith_wcwl_lists` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp9s_yith_wcwl_lists` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

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

-- Dump completed on 2021-07-08 13:44:00
